2017-02-08 21:19:24 +00:00
|
|
|
|
/*
|
2020-07-02 20:57:13 +00:00
|
|
|
|
ATTENTION: This file is not compiled when building gluon.
|
|
|
|
|
The compiled version is at ../files/lib/gluon/config-mode/www/static/gluon.css
|
2017-02-08 21:19:24 +00:00
|
|
|
|
|
2020-07-02 20:57:13 +00:00
|
|
|
|
Use sass like this to update it:
|
2017-02-08 21:19:24 +00:00
|
|
|
|
|
2020-07-02 20:57:13 +00:00
|
|
|
|
sass --sourcemap=none -C -t compressed sass/gluon.scss files/lib/gluon/config-mode/www/static/gluon.css
|
2017-02-08 21:19:24 +00:00
|
|
|
|
|
2023-01-10 18:07:51 +00:00
|
|
|
|
When committing changes to this file make sure to commit the respective
|
2020-07-02 20:57:13 +00:00
|
|
|
|
changes to the compilid version within the same commit!
|
2017-02-08 21:19:24 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
@charset "utf-8";
|
|
|
|
|
|
|
|
|
|
$ffyellow: #ffb400;
|
|
|
|
|
$ffmagenta: #dc0067;
|
|
|
|
|
$ffzusatz: #009ee0;
|
|
|
|
|
$red: #ee3300;
|
|
|
|
|
|
|
|
|
|
@mixin button {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
&::-moz-focus-inner {
|
|
|
|
|
padding: 0;
|
|
|
|
|
border: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
line-height: normal;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
vertical-align: baseline;
|
|
|
|
|
text-align: center;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
user-select: none;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
font-size: 100%;
|
|
|
|
|
padding: 0.5em 1em;
|
|
|
|
|
color: rgba(0, 0, 0, 0.80);
|
|
|
|
|
background-color: #E6E6E6;
|
2020-07-02 21:45:34 +00:00
|
|
|
|
border: none;
|
2020-07-02 20:57:13 +00:00
|
|
|
|
text-decoration: none;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
|
|
|
|
|
/* Transitions */
|
|
|
|
|
transition: 0.1s linear box-shadow;
|
|
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
|
box-shadow: 0 0 0 1px rgba(0,0,0, 0.15) inset, 0 0 6px rgba(0,0,0, 0.20) inset;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
|
outline: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover, &:focus {
|
|
|
|
|
background-image: linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&[disabled] {
|
|
|
|
|
border: none;
|
|
|
|
|
background-image: none;
|
|
|
|
|
opacity: 0.40;
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
}
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
min-height: 100%;
|
|
|
|
|
height: auto;
|
2020-07-02 21:45:34 +00:00
|
|
|
|
position: relative;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body, input, select, option {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
font-family: 'Open Sans', Arial, sans-serif;
|
|
|
|
|
font-size: 12pt;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
color: rgb(77, 78, 83);
|
|
|
|
|
line-height: 1.5em;
|
|
|
|
|
margin: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
background-color: #f3f3f3;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tabmenu1 {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
text-align: center;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul.tabmenu {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
list-style: none;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 2em 0;
|
|
|
|
|
display: inline-flex;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul.tabmenu li {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
white-space: nowrap;
|
|
|
|
|
margin: 0 0.5em;
|
|
|
|
|
padding: 0;
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
display: block;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
padding: 1em;
|
|
|
|
|
margin: 0;
|
|
|
|
|
color: #333;
|
|
|
|
|
border-radius: 2em;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background: lighten($ffyellow, 35);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.active a {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
background: white;
|
|
|
|
|
color: #333;
|
|
|
|
|
}
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#maincontent ul {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
margin-left: 2em;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.error {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
color: #ff0000;
|
|
|
|
|
background-color: white;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#menubar {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
background: $ffmagenta;
|
|
|
|
|
color: #ffffff;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#menubar a:link.topcat,
|
|
|
|
|
#menubar a:visited.topcat {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
position: relative;
|
|
|
|
|
display: block;
|
|
|
|
|
padding: 0.5em;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
font-size: 80%;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
color: white;
|
|
|
|
|
|
|
|
|
|
&:hover, &:focus {
|
|
|
|
|
background: $ffyellow;
|
|
|
|
|
color: black;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
|
background: $ffyellow;
|
|
|
|
|
color: black;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-02 21:45:34 +00:00
|
|
|
|
#menubar .hostinfo {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
position: relative;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0.5em;
|
|
|
|
|
flex: 1;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-size: 80%;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-02 21:45:34 +00:00
|
|
|
|
#menubar .hostinfo a {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
&:link, &:visited {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: white;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
|
2020-07-02 20:57:13 +00:00
|
|
|
|
&:hover, &:focus {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#topmenu {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
list-style: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#topmenu li {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
display: inline-block;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#maincontent {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
padding: 0 1em 2em;
|
|
|
|
|
max-width: 60em;
|
|
|
|
|
min-width: 40em;
|
|
|
|
|
margin: 1em auto;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#maincontent p {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
margin-bottom: 1em;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gluon-section {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
border: none;
|
|
|
|
|
margin-bottom: 1.3em;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gluon-section:last-child {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
margin-bottom: 0.7em;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gluon-section legend {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
font-size: 1.4em;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
position: relative;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin-bottom: 0.5em;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gluon-section h2 {
|
2020-07-02 21:45:34 +00:00
|
|
|
|
margin: 0em 0 0.5em -0.5em;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gluon-section h3 {
|
2020-07-02 21:45:34 +00:00
|
|
|
|
text-decoration: none;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #555555;
|
|
|
|
|
margin: 0.25em;
|
|
|
|
|
font-size: 100%;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gluon-section-descr {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
margin-bottom: 2em;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-19 13:56:28 +00:00
|
|
|
|
.gluon-osm-map {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
width: 100%;
|
|
|
|
|
height: 40em;
|
|
|
|
|
margin-bottom: 1em;
|
2018-08-19 13:56:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-02 21:45:34 +00:00
|
|
|
|
input::placeholder {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
color: #aaaaaa;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-02 21:45:34 +00:00
|
|
|
|
input::-webkit-input-placeholder {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
color: #aaaaaa;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type=checkbox] {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
|
|
& + label {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 1em;
|
|
|
|
|
height: 1em;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-02 21:45:34 +00:00
|
|
|
|
&:checked + label::after {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
content: '✔';
|
|
|
|
|
color: $ffmagenta;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
|
|
|
|
left: 0;
|
|
|
|
|
margin-top: -0.5em;
|
|
|
|
|
width: 100%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 1.7em;
|
|
|
|
|
}
|
2022-05-06 02:15:41 +00:00
|
|
|
|
|
|
|
|
|
&[disabled] + label {
|
|
|
|
|
background-color: #dcdcdc !important;
|
|
|
|
|
}
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-01-31 14:47:45 +00:00
|
|
|
|
input[type=radio] {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
|
|
& + label {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 0.8em;
|
|
|
|
|
height: 0.8em;
|
|
|
|
|
padding: 0.5em;
|
|
|
|
|
margin: 0.2em 0.2em 0.2em 0.1em;
|
|
|
|
|
border: none;
|
|
|
|
|
background: lighten($ffyellow, 30);
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-02 21:45:34 +00:00
|
|
|
|
&:checked + label::after {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
content: '•';
|
|
|
|
|
color: $ffmagenta;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
|
|
|
|
left: 0;
|
|
|
|
|
margin-top: -0.4em;
|
|
|
|
|
width: 100%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 2em;
|
|
|
|
|
}
|
2018-01-31 14:47:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-08 21:19:24 +00:00
|
|
|
|
input[type=submit],
|
|
|
|
|
input[type=reset],
|
|
|
|
|
input[type=button] {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
cursor: pointer;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
select,
|
|
|
|
|
input,
|
|
|
|
|
textarea,
|
|
|
|
|
input[type=checkbox] + label {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
color: darken($ffzusatz, 30);
|
|
|
|
|
border: none;
|
|
|
|
|
background: lighten($ffyellow, 30);
|
|
|
|
|
border-radius: 3pt;
|
|
|
|
|
padding: 0.5em;
|
|
|
|
|
margin-top: 1px;
|
|
|
|
|
margin-bottom: 2px;
|
|
|
|
|
box-sizing: content-box;
|
|
|
|
|
outline: 0;
|
2018-03-27 18:38:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-03 17:01:13 +00:00
|
|
|
|
.select-wrapper {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
right: 0.05em;
|
|
|
|
|
top: calc(2px + 0.1em);
|
|
|
|
|
bottom: calc(2px + 0.1em);
|
|
|
|
|
width: 1.4em;
|
|
|
|
|
border-left: 0.05em solid rgba(0, 0, 0, 0.25);
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
background:
|
|
|
|
|
url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="8" height="5"><path fill="none" stroke="black" stroke-linejoin="bevel" d="M1,1L4,4L7,1"/></svg>')
|
|
|
|
|
center / 0.8em 0.5em
|
|
|
|
|
no-repeat
|
|
|
|
|
;
|
|
|
|
|
content: '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
select {
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
-moz-appearance: none;
|
|
|
|
|
appearance: none;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-27 18:38:26 +00:00
|
|
|
|
option {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
color: darken($ffzusatz, 30);
|
|
|
|
|
background: lighten($ffyellow, 30);
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
select,
|
|
|
|
|
input[type=text],
|
|
|
|
|
input[type=password] {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
min-width: 20em;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-14 22:44:39 +00:00
|
|
|
|
.gluon-multi-list-option-descr {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
margin-top: 0.35em;
|
|
|
|
|
margin-left: 0.4em;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-02 21:45:34 +00:00
|
|
|
|
.gluon-button {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
@include button;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
|
2020-07-02 20:57:13 +00:00
|
|
|
|
margin-left: 0.5em;
|
|
|
|
|
background-repeat: no-repeat;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-02 21:45:34 +00:00
|
|
|
|
.gluon-button-reset {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
background-color: $red;
|
|
|
|
|
color: #fff;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-02 21:45:34 +00:00
|
|
|
|
.gluon-button-submit {
|
|
|
|
|
background-color: $ffzusatz;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
.gluon-button-submit:active {
|
|
|
|
|
background: grey;
|
2018-07-25 20:36:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-08 21:19:24 +00:00
|
|
|
|
.gluon-input-invalid {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
background: $red !important;
|
|
|
|
|
color: white;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
textarea {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
margin-left: -1px;
|
|
|
|
|
margin-bottom: 0.5em;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-02 21:45:34 +00:00
|
|
|
|
.gluon-value {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
margin-bottom: 0.5em;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gluon-section-node .gluon-value:last-child {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
margin-bottom: 0;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gluon-value-title {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
flex: 2;
|
|
|
|
|
text-align: right;
|
|
|
|
|
padding-top: 0.39em;
|
|
|
|
|
padding-right: 1em;
|
|
|
|
|
font-weight: bold;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-02 21:45:34 +00:00
|
|
|
|
.gluon-value-field {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
flex: 3;
|
|
|
|
|
position: relative;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
|
2020-07-02 20:57:13 +00:00
|
|
|
|
input, select, input + label {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-02 21:45:34 +00:00
|
|
|
|
.gluon-value-field-text {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
flex: 3;
|
|
|
|
|
padding-top: 0.39em;
|
2018-01-31 14:47:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-02 21:45:34 +00:00
|
|
|
|
.gluon-value-field-long {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
flex: 10;
|
|
|
|
|
position: relative;
|
|
|
|
|
margin-top: 0.65em;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
|
2020-07-02 20:57:13 +00:00
|
|
|
|
input, select, input + label {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-02 21:45:34 +00:00
|
|
|
|
.gluon-value-field-long-after {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
flex: 2;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-02 21:45:34 +00:00
|
|
|
|
.gluon-value-description {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
font-size: 8pt;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-02 21:45:34 +00:00
|
|
|
|
.gluon-form-descr {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
margin-bottom: 1em;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-19 10:27:34 +00:00
|
|
|
|
.gluon-form-descr:empty, .gluon-section-descr:empty {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
display: none;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-19 10:27:34 +00:00
|
|
|
|
.gluon-form-descr, .gluon-section-descr, .gluon-page-actions {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
padding: 1em;
|
|
|
|
|
background: #ececec;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gluon-page-actions {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
text-align: right;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-flow: row-reverse;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gluon-section-node {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
clear: both;
|
|
|
|
|
position: relative;
|
|
|
|
|
border: none;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gluon-value-error input,
|
|
|
|
|
.gluon-value-error select {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
background-color: #ffcccc;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-02 21:45:34 +00:00
|
|
|
|
.gluon-add::after, .gluon-remove::after {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
text-align: center;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
font-size: 180%;
|
|
|
|
|
width: 1.2em;
|
|
|
|
|
height: 1em;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gluon-add {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
color: #008000;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
|
2020-07-02 20:57:13 +00:00
|
|
|
|
position: relative;
|
|
|
|
|
left: 21em;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
|
2020-07-02 20:57:13 +00:00
|
|
|
|
input + & {
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 0.04em;
|
|
|
|
|
}
|
2017-02-08 21:19:24 +00:00
|
|
|
|
|
2020-07-02 20:57:13 +00:00
|
|
|
|
&:first-child {
|
|
|
|
|
top: 0.53em;
|
|
|
|
|
left: -0.08em;
|
|
|
|
|
}
|
2017-02-08 21:19:24 +00:00
|
|
|
|
|
2020-07-02 21:45:34 +00:00
|
|
|
|
&::after {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
content: '+';
|
|
|
|
|
}
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gluon-remove {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
color: #800000;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
|
2020-07-02 20:57:13 +00:00
|
|
|
|
position: relative;
|
|
|
|
|
top: -0.03em;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
|
2020-07-02 21:45:34 +00:00
|
|
|
|
&::after {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
content: '–';
|
|
|
|
|
}
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-05-24 08:33:20 +00:00
|
|
|
|
.gluon-warning {
|
|
|
|
|
@extend .gluon-section-descr;
|
|
|
|
|
background: lighten($ffyellow, 35);
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-08 21:19:24 +00:00
|
|
|
|
.error500 {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
border: 1px dotted #ff0000;
|
|
|
|
|
background-color: #ffffff;
|
|
|
|
|
color: #000000;
|
|
|
|
|
padding: 0.5em;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.errorbox {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
border: 1px solid #FF0000;
|
|
|
|
|
background-color: #FFCCCC;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
margin-bottom: 5px;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.errorbox a {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
color: #000000 !important;
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.the-key {
|
2020-07-02 20:57:13 +00:00
|
|
|
|
text-align: left;
|
|
|
|
|
font-size: 1.4em;
|
|
|
|
|
background: lighten($ffyellow, 35);
|
|
|
|
|
border: 3pt dashed $ffmagenta;
|
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
|
padding: 0.5em
|
2017-02-08 21:19:24 +00:00
|
|
|
|
}
|