CSS: Fix hidden radio inputs

refs #3957
This commit is contained in:
Florian Strohmaier 2019-10-02 17:02:13 +02:00 committed by Johannes Meyer
parent 2896cbd781
commit 30a4c62a2a
1 changed files with 5 additions and 1 deletions

View File

@ -157,7 +157,7 @@ form.icinga-form {
}
.icinga-controls {
input:not([type="checkbox"]),
input:not([type="checkbox"]):not([type="radio"]),
.toggle-switch,
button,
select,
@ -166,6 +166,10 @@ form.icinga-form {
.rounded-corners(.25em);
.appearance(none);
}
input[type="radio"] {
margin-right: .25em;
}
}
.icinga-controls {