gluon-config-mode-theme: fix styling of select elements

* Use correct width
* Don't display focus outline (Webkit)
* Don't let option elements inherit error colors (Webkit)
This commit is contained in:
Matthias Schiffer 2018-03-27 20:38:26 +02:00
parent 6dc9369715
commit f17bb94ad7
No known key found for this signature in database
GPG Key ID: 16EF3F64CB201D9C
2 changed files with 8 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -373,6 +373,13 @@ input[type=checkbox] + label {
padding: 0.5em;
margin-top: 1px;
margin-bottom: 2px;
box-sizing: content-box;
outline: 0;
}
option {
color: darken($ffzusatz, 30);
background: lighten($ffyellow, 30);
}
input[type=image] {