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 { &:focus + span {
position: absolute; position: absolute;
top: -1px; top: -2px;
left: -1px; left: -2px;
right: -1px; right: -2px;
bottom: -1px; bottom: -2px;
border: 2px solid var(--select-focus); border: 3px solid $main-font-color;
border-radius: inherit; border-radius: inherit;
} }
} }

View File

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