mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
48 lines
No EOL
1,022 B
Text
48 lines
No EOL
1,022 B
Text
// Copyright (C) 2017-2024 Smart code 203358507
|
|
|
|
@border-radius: 2.75rem;
|
|
@height: 3rem;
|
|
|
|
.multiselect-menu {
|
|
position: relative;
|
|
min-width: 8.5rem;
|
|
overflow: visible;
|
|
border-radius: @border-radius;
|
|
|
|
&.disabled {
|
|
pointer-events: none;
|
|
opacity: 0.3;
|
|
}
|
|
|
|
.multiselect-button {
|
|
height: @height;
|
|
padding: 0.75rem 1.5rem;
|
|
display: flex;
|
|
flex: 1;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 0 0.5rem;
|
|
border-radius: @border-radius;
|
|
|
|
.label {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
color: var(--primary-foreground-color);
|
|
}
|
|
|
|
.icon {
|
|
width: 1rem;
|
|
color: var(--primary-foreground-color);
|
|
opacity: 0.6;
|
|
|
|
&.open {
|
|
transform: rotate(180deg);
|
|
}
|
|
}
|
|
}
|
|
|
|
&:hover, &.active {
|
|
background-color: var(--overlay-color);
|
|
}
|
|
} |