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] summary {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
&[open] {
summary {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
&::before {
display: block;
z-index: 1;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: none;
content: "";
cursor: default;
&:not([role="button"]) {
&:active,
&:focus {
border-color: var(#{$}form-element-border-color);
}
}
&:focus {
box-shadow: none;
}
// 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;
}
}
}
}