Fix sort button focus

This commit is contained in:
Chocobozzz 2023-03-02 10:51:15 +01:00
parent 279040f991
commit 15bed364fb
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 9 additions and 5 deletions

View File

@ -77,11 +77,11 @@
&:focus + span {
position: absolute;
top: -1px;
left: -1px;
right: -1px;
bottom: -1px;
border: 2px solid var(--select-focus);
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border: 3px solid $main-font-color;
border-radius: inherit;
}
}

View File

@ -117,6 +117,10 @@
background-color: #fff;
color: #000;
&:focus-within {
box-shadow: 0 0 0 0.25rem $main-font-color;
}
&:after {
top: 50%;
right: calc(0% + 15px);