Override server SCSS rules for inputs in guest pages

As the server defines some SCSS rules using "input:not([type='range'])"
the selector is more specific than just "input" used in "guest.css", so
the server SCSS rules took precedence over the guest CSS rules. Now that
selector was added to the guest rules too; as the guest rules are loaded
after the server ones now the guest rules for input elements take
precedence over the server ones.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
This commit is contained in:
Daniel Calviño Sánchez 2018-07-13 03:40:47 +02:00
parent 26db9540d4
commit 06b2952cee
1 changed files with 2 additions and 1 deletions

View File

@ -166,7 +166,8 @@ form #datadirField legend {
input, textarea, select, button, div[contenteditable=true] {
font-family: 'Open Sans', Frutiger, Calibri, 'Myriad Pro', Myriad, sans-serif;
}
input {
input,
input:not([type='range']) {
font-size: 20px;
margin: 5px;
padding: 11px 10px 9px;