2017-12-07 21:35:37 +00:00
|
|
|
.glitch.local-settings {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
background: $ui-secondary-color;
|
2018-05-05 15:58:46 +00:00
|
|
|
color: $inverted-text-color;
|
2017-12-07 21:35:37 +00:00
|
|
|
border-radius: 8px;
|
|
|
|
height: 80vh;
|
|
|
|
width: 80vw;
|
|
|
|
max-width: 740px;
|
|
|
|
max-height: 450px;
|
|
|
|
overflow: hidden;
|
|
|
|
|
2018-10-01 15:40:56 +00:00
|
|
|
label, legend {
|
2017-12-07 21:35:37 +00:00
|
|
|
display: block;
|
2018-10-01 15:40:56 +00:00
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.boolean label, .radio_buttons label {
|
|
|
|
position: relative;
|
|
|
|
padding-left: 28px;
|
|
|
|
padding-top: 3px;
|
|
|
|
|
|
|
|
input {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
}
|
2017-12-07 21:35:37 +00:00
|
|
|
}
|
|
|
|
|
2018-10-01 20:11:11 +00:00
|
|
|
span.hint {
|
|
|
|
display: block;
|
|
|
|
color: $lighter-text-color;
|
|
|
|
}
|
|
|
|
|
2017-12-07 21:35:37 +00:00
|
|
|
h1 {
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 500;
|
|
|
|
line-height: 24px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: 500;
|
|
|
|
line-height: 20px;
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.glitch.local-settings__navigation__item {
|
|
|
|
display: block;
|
|
|
|
padding: 15px 20px;
|
|
|
|
color: inherit;
|
2018-05-11 14:45:15 +00:00
|
|
|
background: lighten($ui-secondary-color, 8%);
|
|
|
|
border-bottom: 1px $ui-secondary-color solid;
|
2017-12-07 21:35:37 +00:00
|
|
|
cursor: pointer;
|
|
|
|
text-decoration: none;
|
|
|
|
outline: none;
|
|
|
|
transition: background .3s;
|
|
|
|
|
2018-10-01 22:17:22 +00:00
|
|
|
.text-icon-button {
|
|
|
|
color: inherit;
|
|
|
|
transition: unset;
|
|
|
|
}
|
|
|
|
|
2017-12-07 21:35:37 +00:00
|
|
|
&:hover {
|
|
|
|
background: $ui-secondary-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
background: $ui-highlight-color;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.close, &.close:hover {
|
|
|
|
background: $error-value-color;
|
|
|
|
color: $primary-text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.glitch.local-settings__navigation {
|
2018-05-11 14:45:15 +00:00
|
|
|
background: lighten($ui-secondary-color, 8%);
|
2018-10-01 20:09:57 +00:00
|
|
|
width: 212px;
|
2017-12-07 21:35:37 +00:00
|
|
|
font-size: 15px;
|
|
|
|
line-height: 20px;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.glitch.local-settings__page {
|
|
|
|
display: block;
|
|
|
|
flex: auto;
|
|
|
|
padding: 15px 20px 15px 20px;
|
|
|
|
width: 360px;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.glitch.local-settings__page__item {
|
2018-10-01 15:40:56 +00:00
|
|
|
margin-bottom: 2px;
|
2022-05-15 15:30:40 +00:00
|
|
|
|
|
|
|
.hint a {
|
|
|
|
color: $lighter-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2018-10-01 15:40:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.glitch.local-settings__page__item.string,
|
|
|
|
.glitch.local-settings__page__item.radio_buttons {
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
2017-12-07 21:35:37 +00:00
|
|
|
}
|
2018-10-01 20:10:30 +00:00
|
|
|
|
|
|
|
@media screen and (max-width: 630px) {
|
|
|
|
.glitch.local-settings__navigation {
|
|
|
|
width: 40px;
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.glitch.local-settings__navigation__item {
|
|
|
|
padding: 10px;
|
|
|
|
|
|
|
|
span:last-of-type {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-05-15 15:30:40 +00:00
|
|
|
|
|
|
|
.deprecated-settings-label {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.deprecated-settings-info {
|
|
|
|
text-align: start;
|
|
|
|
|
|
|
|
ul {
|
|
|
|
padding: 10px;
|
|
|
|
margin-left: 12px;
|
|
|
|
list-style: disc inside;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $lighter-text-color;
|
|
|
|
font-weight: 500;
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|