mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
28 lines
551 B
SCSS
28 lines
551 B
SCSS
.select-kit.single-select {
|
|
.select-kit-filter {
|
|
display: flex;
|
|
|
|
&.is-expanded {
|
|
padding: 0.25em 0.5em;
|
|
border-top: 1px solid var(--primary-low);
|
|
border-bottom: 1px solid var(--primary-low);
|
|
}
|
|
}
|
|
|
|
&.is-expanded .select-kit-header:not(.btn),
|
|
.select-kit-header:not(.btn):focus,
|
|
.select-kit-header:not(.btn):active {
|
|
@include default-focus;
|
|
}
|
|
|
|
.select-kit-header.btn:focus,
|
|
.select-kit-header.btn:active {
|
|
outline: none;
|
|
}
|
|
&.is-disabled {
|
|
.select-kit-header {
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
}
|