mirror of https://github.com/aredn/aredn.git
Fix dhcp option input field number styling (#1731)
This commit is contained in:
parent
36c8fc84ba
commit
4a71710276
|
@ -133,6 +133,7 @@
|
|||
|
||||
#ctrl-modal input[type=text],
|
||||
#ctrl-modal input[type=password],
|
||||
#ctrl-modal input[type=number],
|
||||
#ctrl-modal input[type=file]
|
||||
{
|
||||
color: var(--ctrl-modal-fg-color);
|
||||
|
@ -148,6 +149,7 @@
|
|||
}
|
||||
#ctrl-modal input[type=text]:invalid,
|
||||
#ctrl-modal input[type=password]:invalid,
|
||||
#ctrl-modal input[type=number]:invalid,
|
||||
#ctrl-modal select:invalid
|
||||
{
|
||||
border-color: var(--ctrl-modal-border-color-error) !important;
|
||||
|
@ -160,12 +162,14 @@
|
|||
}
|
||||
#ctrl-modal .noborder input[type=text],
|
||||
#ctrl-modal .noborder input[type=password],
|
||||
#ctrl-modal .noborder input[type=number],
|
||||
#ctrl-modal .noborder input[type=file]
|
||||
{
|
||||
border-color: transparent;
|
||||
}
|
||||
#ctrl-modal input[type=text]:disabled,
|
||||
#ctrl-modal input[type=password]:disabled,
|
||||
#ctrl-modal input[type=number]:disabled,
|
||||
#ctrl-modal input[type=file]:disabled,
|
||||
#ctrl-modal select:disabled
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue