133 lines
2.9 KiB
Plaintext
133 lines
2.9 KiB
Plaintext
|
|
#sidebar {
|
|
display: none;
|
|
overflow: auto;
|
|
flex: 0 0 auto;
|
|
order: 99;
|
|
width: 200px;
|
|
padding: 8px;
|
|
background-color: @col-widget-back;
|
|
border-left: @border-widget;
|
|
}
|
|
|
|
#settings {
|
|
|
|
.block {
|
|
display: block;
|
|
margin: 0 0 24px 0;
|
|
|
|
h1 {
|
|
font-size: 1em;
|
|
border-bottom: 1px solid #e7e7e7;
|
|
}
|
|
}
|
|
|
|
a, a:active, a:visited, span.element {
|
|
color: @col;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
opacity: 0.7;
|
|
.transition(all 0.2s ease-in-out);
|
|
|
|
display: block;
|
|
height: 30px;
|
|
line-height: 30px;
|
|
padding: 0 10px;
|
|
|
|
&:hover, &.hover {
|
|
opacity: 1.0;
|
|
background: @col-widget-back-highlight;
|
|
}
|
|
}
|
|
|
|
.current {
|
|
a, span.element {
|
|
opacity: 1.0;
|
|
background: @col-widget-back-highlight;
|
|
}
|
|
}
|
|
|
|
img {
|
|
position: relative;
|
|
top: -2px;
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
.view {
|
|
display: inline-block;
|
|
margin: 0 4px 0 0;
|
|
}
|
|
|
|
.select {
|
|
background-color: @col-widget-back-highlight;
|
|
width: 175px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
input, select {
|
|
-moz-appearance: none;
|
|
-ms-appearance: none;
|
|
-webkit-appearance: none;
|
|
font-family: @font-family;
|
|
font-size: @font-size;
|
|
font-weight: @font-weight;
|
|
color: @col;
|
|
background: @col-widget-back;
|
|
width: 100%;
|
|
height: 30px;
|
|
line-height: 30px;
|
|
border: 0 solid #000;
|
|
outline: none;
|
|
cursor: pointer;
|
|
|
|
&:hover, &.hover {
|
|
background: @col-widget-back-highlight;
|
|
}
|
|
}
|
|
|
|
select {
|
|
width: 200px;
|
|
padding: 0 4px;
|
|
}
|
|
|
|
input[type='range'] {
|
|
border-radius: 2px;
|
|
width: 64px;
|
|
margin: 0 0 4px 12px;
|
|
padding: 0 2px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.range-track() {
|
|
-moz-appearance: none;
|
|
-ms-appearance: none;
|
|
-webkit-appearance: none;
|
|
border-width: 0;
|
|
border-radius: 2px;
|
|
background: @col-range-back;
|
|
height: 2px;
|
|
}
|
|
|
|
.range-thumb() {
|
|
-moz-appearance: none;
|
|
-ms-appearance: none;
|
|
-webkit-appearance: none;
|
|
border-width: 0;
|
|
border-radius: 2px;
|
|
background: @col-range-thumb;
|
|
width: 12px;
|
|
height: 12px;
|
|
}
|
|
|
|
input[type='range']::-webkit-slider-runnable-track { .range-track; }
|
|
input[type='range']::-moz-range-track { .range-track; }
|
|
input[type='range']::-ms-track { .range-track; }
|
|
input[type='range']::-ms-fill-lower { .range-track; }
|
|
input[type='range']::-ms-fill-upper { .range-track; }
|
|
|
|
input[type='range']::-webkit-slider-thumb { .range-thumb; margin-top: -5px; }
|
|
input[type='range']::-moz-range-thumb { .range-thumb; }
|
|
input[type='range']::-ms-thumb { .range-thumb; }
|
|
}
|