Add focus-visible outline for checkboxes and radio buttons
To make keyboard navigation visible in forms. When clicking with the mouse it doesn't appear. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
This commit is contained in:
parent
b4ccadea2b
commit
23c143e034
|
@ -366,6 +366,12 @@ input {
|
||||||
&:focus + label:before {
|
&:focus + label:before {
|
||||||
border-color: var(--color-primary-element);
|
border-color: var(--color-primary-element);
|
||||||
}
|
}
|
||||||
|
&:focus-visible + label {
|
||||||
|
outline-style: solid;
|
||||||
|
outline-color: var(--color-primary-element);
|
||||||
|
outline-width: 1px;
|
||||||
|
outline-offset: 2px;
|
||||||
|
}
|
||||||
&:checked + label:before,
|
&:checked + label:before,
|
||||||
&.checkbox:indeterminate + label:before {
|
&.checkbox:indeterminate + label:before {
|
||||||
/* ^ :indeterminate have a strange behavior on radio,
|
/* ^ :indeterminate have a strange behavior on radio,
|
||||||
|
|
Loading…
Reference in New Issue