Add borders around form inputs (#3908)
This commit is contained in:
parent
b0875d40f1
commit
2ca3ffcb60
|
@ -146,3 +146,26 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.icinga-controls {
|
||||
input[type="text"],
|
||||
input[type="password"],
|
||||
input[type="number"],
|
||||
input[type="datetime-local"],
|
||||
input[type="date"],
|
||||
input[type="time"],
|
||||
textarea,
|
||||
select,
|
||||
input[type="checkbox"]:checked + .toggle-switch .toggle-slider:before,
|
||||
input[type="checkbox"]:checked + .toggle-switch > .toggle-slider,
|
||||
.toggle-switch .toggle-slider:before,
|
||||
.toggle-switch > .toggle-slider {
|
||||
border: 1px solid @icinga-blue;
|
||||
}
|
||||
|
||||
input[type="checkbox"]:not(:checked) + .toggle-switch .toggle-slider:before {
|
||||
height: 1.166666667em;
|
||||
width: 1.166666667em;
|
||||
margin: 1px;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue