focus not working
This commit is contained in:
parent
1aa6fd682e
commit
c5de934449
3 changed files with 21 additions and 7 deletions
|
|
@ -880,10 +880,17 @@ input[type="radio"] {
|
|||
background: #000;
|
||||
}
|
||||
|
||||
/* input[type="checkbox"]:focus + label,
|
||||
input[type="checkbox"]:focus + label,
|
||||
input[type="radio"]:focus + label {
|
||||
outline: solid 1px #aac7d4;
|
||||
} */
|
||||
outline: 0;
|
||||
box-shadow: 0 0 0.2rem #aac7d4;
|
||||
}
|
||||
|
||||
input[type="checkbox"]:focus:not(:focus-visible) + label,
|
||||
input[type="radio"]:focus:not(:focus-visible) + label {
|
||||
outline: 0;
|
||||
/* box-shadow: 0 0 0.2rem #aac7d4; */
|
||||
}
|
||||
|
||||
.tooltip {
|
||||
position: relative;
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -772,10 +772,17 @@ input[type="radio"] {
|
|||
background: #000;
|
||||
}
|
||||
|
||||
/* input[type="checkbox"]:focus + label,
|
||||
input[type="checkbox"]:focus + label,
|
||||
input[type="radio"]:focus + label {
|
||||
outline: solid 1px #aac7d4;
|
||||
} */
|
||||
outline: 0;
|
||||
box-shadow: 0 0 0.2rem #aac7d4;
|
||||
}
|
||||
|
||||
input[type="checkbox"]:focus:not(:focus-visible) + label,
|
||||
input[type="radio"]:focus:not(:focus-visible) + label {
|
||||
outline: 0;
|
||||
/* box-shadow: 0 0 0.2rem #aac7d4; */
|
||||
}
|
||||
|
||||
.tooltip {
|
||||
position: relative;
|
||||
|
|
|
|||
Loading…
Reference in a new issue