Switch from selects to radio buttons for local settings, improve styling

This commit is contained in:
Thibaut Girka
2018-10-01 17:40:56 +02:00
committed by ThibG
parent a3677a828d
commit faecb35fe0
2 changed files with 70 additions and 48 deletions

View File

@ -11,8 +11,21 @@
max-height: 450px;
overflow: hidden;
label {
label, legend {
display: block;
font-size: 14px;
}
.boolean label, .radio_buttons label {
position: relative;
padding-left: 28px;
padding-top: 3px;
input {
position: absolute;
left: 0;
top: 0;
}
}
h1 {
@ -74,7 +87,11 @@
}
.glitch.local-settings__page__item {
select {
margin-bottom: 5px;
}
margin-bottom: 2px;
}
.glitch.local-settings__page__item.string,
.glitch.local-settings__page__item.radio_buttons {
margin-top: 10px;
margin-bottom: 10px;
}