fix: issue with focus states in safari, fixed multiple focus states accross the application

Approved-by: Anton Gunnarsson
This commit is contained in:
Erik Tiekstra
2026-01-26 06:45:23 +00:00
parent c918c1aa66
commit 5a4a65ec33
9 changed files with 21 additions and 26 deletions

View File

@@ -22,6 +22,6 @@
}
.link:focus-visible {
outline: 2px auto var(--Border-Interactive-Focus);
outline: 2px solid var(--Border-Interactive-Focus);
outline-offset: -4px;
}

View File

@@ -17,10 +17,6 @@
min-width: 0;
}
.item:focus-visible {
outline: 2px auto var(--Border-Interactive-Focus);
outline-offset: 1px;
}
.buttonWrapper {
position: absolute;
top: 50%;

View File

@@ -10,11 +10,6 @@
border-width: 0;
padding: var(--Space-x05) 0;
&:focus-visible {
outline: 2px auto var(--Border-Interactive-Focus);
outline-offset: 1px;
}
&.loading {
cursor: progress;
}

View File

@@ -12,11 +12,6 @@
background-color: var(--Surface-Primary-Hover);
}
&:focus-visible {
outline: 2px auto var(--Border-Interactive-Focus);
outline-offset: 1px;
}
&:not(:hover) .arrowIcon {
opacity: 0;
}