fix: Dropdown focus styles

This commit is contained in:
Lucas Larroche 2022-12-29 17:59:44 +07:00
parent 477992f869
commit 4102702b05

View File

@ -126,22 +126,35 @@
} }
} }
// Close for details[role="list"] &[open] {
&[open] summary { summary {
border-bottom-right-radius: 0; border-bottom-right-radius: 0;
border-bottom-left-radius: 0; border-bottom-left-radius: 0;
&::before { &:not([role="button"]) {
display: block; &:active,
z-index: 1; &:focus {
position: fixed; border-color: var(#{$}form-element-border-color);
top: 0; }
right: 0; }
bottom: 0;
left: 0; &:focus {
background: none; box-shadow: none;
content: ""; }
cursor: default;
// Close for details[role="list"]
&::before {
display: block;
z-index: 1;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: none;
content: "";
cursor: default;
}
} }
} }
} }