2021-07-07 02:14:37 +03:00
|
|
|
|
|
|
|
#main-menu {
|
|
|
|
height: 48px;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
background-color: $basecolor;
|
|
|
|
position: fixed;
|
|
|
|
z-index: 1110;
|
|
|
|
overflow: visible;
|
|
|
|
&>li {
|
|
|
|
float: left;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
li button,
|
|
|
|
li a {
|
|
|
|
color: $basetext;
|
|
|
|
height: 100%;
|
|
|
|
padding: 17px;
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
li.selected {
|
|
|
|
background-color: $basehover;
|
|
|
|
&>button {
|
|
|
|
color: $basehovertext;
|
|
|
|
}
|
|
|
|
ul {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
li ul {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
top: 48px;
|
|
|
|
list-style-type: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
background-color: $basehover;
|
|
|
|
box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.5);
|
|
|
|
padding-bottom: 2px;
|
|
|
|
li {
|
|
|
|
width: 100%;
|
|
|
|
button,
|
|
|
|
a {
|
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
|
|
|
padding: 8px 32px 8px 16px;
|
|
|
|
font-size: 1em;
|
|
|
|
&:hover {
|
|
|
|
background-color: $baseselected;
|
|
|
|
color: $baseselectedtext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.disabled {
|
|
|
|
color: #6f6e70 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-01-25 02:33:23 +03:00
|
|
|
/* app title */
|
2021-07-07 02:14:37 +03:00
|
|
|
|
|
|
|
.logo {
|
|
|
|
color: lighten($basecolor, 20%);
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 17px 10px 0;
|
|
|
|
cursor: default;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
#main-menu li.open, #main-menu li button:hover {
|
|
|
|
background: $basehover;
|
|
|
|
}
|
2022-01-25 02:33:23 +03:00
|
|
|
|
|
|
|
/* Editor info */
|
|
|
|
li#editor-info {
|
|
|
|
float:right;
|
|
|
|
height:100%;
|
|
|
|
display:flex;
|
|
|
|
align-items: center;
|
|
|
|
background-color: $basecolor;
|
|
|
|
color:$basetext;
|
|
|
|
|
|
|
|
ul {
|
|
|
|
background-color: $basecolor;
|
|
|
|
display:block;
|
|
|
|
position:relative;
|
|
|
|
top:0px;
|
|
|
|
padding-top:0px;
|
|
|
|
box-shadow: none;
|
|
|
|
padding-bottom: 0px;
|
|
|
|
|
|
|
|
li {
|
|
|
|
top:0px;
|
|
|
|
padding-top:0px;
|
|
|
|
display:inline;
|
|
|
|
padding-right:20px;
|
|
|
|
}
|
2022-01-31 02:16:27 +03:00
|
|
|
|
|
|
|
.checkbox-holder {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2022-01-25 02:33:23 +03:00
|
|
|
input {
|
|
|
|
margin-left:10px;
|
2022-01-31 00:53:59 +03:00
|
|
|
background-color:darken($basecolor, 6%);
|
2022-01-25 02:33:23 +03:00
|
|
|
box-shadow:none;
|
|
|
|
border:none;
|
|
|
|
vertical-align: middle;
|
|
|
|
border-radius:5px;
|
2022-01-31 00:53:59 +03:00
|
|
|
padding: 5px;
|
|
|
|
color:$basetext;
|
2022-01-25 02:33:23 +03:00
|
|
|
}
|
2022-02-01 01:12:28 +03:00
|
|
|
input[type=number] {
|
|
|
|
appearance:none;
|
2022-02-05 00:13:11 +03:00
|
|
|
-moz-appearance:textfield;
|
|
|
|
-webkit-appearance:text;
|
2022-01-31 00:53:59 +03:00
|
|
|
width:25px;
|
2022-01-25 02:33:23 +03:00
|
|
|
height:15px;
|
|
|
|
}
|
2022-02-01 01:12:28 +03:00
|
|
|
input::-webkit-outer-spin-button,
|
|
|
|
input::-webkit-inner-spin-button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2022-01-25 02:33:23 +03:00
|
|
|
}
|
|
|
|
}
|