Add borders around form inputs (#3908)

This commit is contained in:
Feu Mourek 2019-08-12 13:34:06 +02:00 committed by Johannes Meyer
parent b0875d40f1
commit 2ca3ffcb60
1 changed files with 23 additions and 0 deletions

View File

@ -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;
}
}