301 lines
6.6 KiB
SCSS
301 lines
6.6 KiB
SCSS
@import url('https://fonts.googleapis.com/css?family=Arimo&display=swap');
|
|
|
|
// Web-based formspec editor stylesheets.
|
|
//
|
|
// © 2020 by luk3yx.
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
// License, or (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
.formspec_ast-base {
|
|
& > div {
|
|
position: absolute;
|
|
background-color: #343434;
|
|
border: 1px solid #0D0D0D;
|
|
border-radius: 3px;
|
|
overflow: hidden;
|
|
image-rendering: optimizeSpeed;
|
|
image-rendering: -moz-crisp-edges;
|
|
image-rendering: crisp-edges;
|
|
image-rendering: pixelated;
|
|
|
|
&.grid {
|
|
background: url("grid.png");
|
|
}
|
|
|
|
&, input, textarea, select {
|
|
font-family: Arimo, sans-serif;
|
|
color: #FFFFFF;
|
|
font-size: inherit;
|
|
}
|
|
|
|
& > * {
|
|
position: absolute;
|
|
font-size: 0.34em;
|
|
display: block;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
user-select: none;
|
|
padding: 0;
|
|
text-shadow: 1px 1px black;
|
|
white-space: pre;
|
|
}
|
|
}
|
|
|
|
img {
|
|
-webkit-user-drag: none;
|
|
-moz-user-drag: none;
|
|
user-drag: none;
|
|
}
|
|
|
|
.formspec_ast-clickable {
|
|
&:active {
|
|
transform: translate(1px, 1px);
|
|
}
|
|
}
|
|
|
|
.formspec_ast-label {
|
|
margin-top: -0.6em;
|
|
|
|
&[data-text=""]::after {
|
|
content: "(empty label)";
|
|
font-style: italic;
|
|
}
|
|
}
|
|
|
|
.formspec_ast-vertlabel {
|
|
margin-left: -0.3em;
|
|
line-height: 1;
|
|
|
|
&[data-text=""]::after {
|
|
content: "(\a e\am\ap\at\ay\a \al\a a\a b\a e\al\a)";
|
|
font-style: italic;
|
|
}
|
|
}
|
|
|
|
// Make boxes partially visible
|
|
.formspec_ast-box {
|
|
background-color: #f002;
|
|
}
|
|
|
|
|
|
.formspec_ast-button, .formspec_ast-button_exit,
|
|
.formspec_ast-image_button[data-drawborder="true"],
|
|
.formspec_ast-image_button_exit[data-drawborder="true"],
|
|
.formspec_ast-dropdown > div {
|
|
box-sizing: border-box;
|
|
border: 1px solid #000;
|
|
background: #414141;
|
|
background: linear-gradient(180deg, #535353 0%, #2E2E2E 100%);
|
|
text-align: center;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
|
|
&:hover {
|
|
background: linear-gradient(180deg, #656565 0%, #383838 100%);
|
|
}
|
|
&:active {
|
|
background: linear-gradient(180deg, #464646 0%, #272727 100%);
|
|
}
|
|
}
|
|
|
|
.formspec_ast-image_button, .formspec_ast-image_button_exit {
|
|
&[data-drawborder="false"] {
|
|
overflow: hidden;
|
|
background: none;
|
|
border: none;
|
|
}
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
span {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
}
|
|
|
|
.formspec_ast-field, .formspec_ast-pwdfield, .formspec_ast-textarea {
|
|
span {
|
|
position: absolute;
|
|
transform: translateY(-100%);
|
|
}
|
|
input, textarea {
|
|
width: 100%;
|
|
height: 100%;
|
|
padding-left: 2px;
|
|
padding-right: 2px;
|
|
box-sizing: border-box;
|
|
border: 1px solid #000;
|
|
background: #FFFFFF65;
|
|
color: white;
|
|
text-shadow: 1px 1px black;
|
|
font-size: 1em;
|
|
|
|
&::selection {
|
|
background: #608631;
|
|
}
|
|
}
|
|
textarea {
|
|
resize: none;
|
|
}
|
|
}
|
|
|
|
.formspec_ast-textarea[data-formspec_ast-name=""] textarea {
|
|
border-color: transparent;
|
|
background: transparent;
|
|
}
|
|
|
|
.formspec_ast-checkbox {
|
|
margin-top: -0.6em;
|
|
& > div {
|
|
width: 1.2em;
|
|
height: 1.2em;
|
|
margin-right: 0.3em;
|
|
box-sizing: border-box;
|
|
border: 1px solid #000;
|
|
background: #848484;
|
|
display: inline-block;
|
|
vertical-align: bottom;
|
|
}
|
|
|
|
&:active > div {
|
|
background-color: #608631;
|
|
}
|
|
|
|
&[data-checked="true"] > div::before {
|
|
position: absolute;
|
|
content: '✓';
|
|
width: 1.2em;
|
|
margin-top: -0.05em;
|
|
color: #000;
|
|
text-shadow: none;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.formspec_ast-list {
|
|
font-size: inherit;
|
|
overflow: hidden;
|
|
border-collapse: collapse;
|
|
td {
|
|
width: 1em;
|
|
height: 1em;
|
|
background: #00000065;
|
|
padding: 0;
|
|
border: 0.25em solid #343434;
|
|
&:first-child {
|
|
border-left: 0;
|
|
}
|
|
&:last-child {
|
|
border-right: 0;
|
|
}
|
|
&:hover {
|
|
background-color: #FFFFFF30;
|
|
}
|
|
}
|
|
tr:first-child td {
|
|
border-top: 0;
|
|
}
|
|
tr:last-child td {
|
|
border-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.formspec_ast-textlist {
|
|
border: 1px solid #1E1E1E;
|
|
background: #1E1E1E;
|
|
box-sizing: border-box;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
font-size: 1em;
|
|
|
|
& > div {
|
|
font-size: 0.34em;
|
|
padding: 2px; // TODO: Use em
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
}
|
|
}
|
|
|
|
.formspec_ast-dropdown {
|
|
border: 2px solid #1E1E1E;
|
|
box-sizing: border-box;
|
|
|
|
select {
|
|
border: none;
|
|
border-radius: 0;
|
|
background: #1E1E1E;
|
|
width: 100%;
|
|
height: 100%;
|
|
-moz-appearance: none;
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
|
|
// Remove the outline
|
|
outline: none;
|
|
&:-moz-focusring {
|
|
color: transparent;
|
|
text-shadow: 0 0 0 #fff;
|
|
}
|
|
|
|
&:focus {
|
|
background: #467832;
|
|
}
|
|
}
|
|
|
|
&.formspec_ast-clickable select {
|
|
pointer-events: none;
|
|
}
|
|
|
|
& > div {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 15px;
|
|
height: 100%;
|
|
pointer-events: none;
|
|
|
|
// The arrow icon
|
|
& > div {
|
|
background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAECAMAAAB1GNVPAAAAElBMVEU+Pj4/Pz9AQEAVFRUWFhb///+2UyocAAAAA3RSTlMAAAD6dsTeAAAAHUlEQVR42mNggQAGJjDFxMDIyMzMzMjIAATMQAwABbgARWfCNlIAAAAASUVORK5CYII=");
|
|
width: 7px;
|
|
height: 4px;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
#formspec_ast-properties {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
padding: 10px;
|
|
}
|
|
|
|
#formspec_ast-new {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
padding: 10px;
|
|
}
|