mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-08 21:10:12 +02:00
conditionally disable Subsonic list filters based on availability (#1567)
This commit is contained in:
@@ -4,6 +4,11 @@
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.container.disabled {
|
||||
cursor: not-allowed;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.list-container {
|
||||
position: relative;
|
||||
flex-shrink: 0;
|
||||
@@ -11,6 +16,10 @@
|
||||
background-color: var(--theme-colors-surface);
|
||||
}
|
||||
|
||||
.container.disabled .list-container {
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.search-input {
|
||||
border-bottom: 1px solid var(--theme-colors-border);
|
||||
}
|
||||
@@ -23,3 +32,11 @@
|
||||
.selected-option:hover {
|
||||
background-color: alpha(var(--theme-colors-surface), 0.6);
|
||||
}
|
||||
|
||||
.selected-option.disabled {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.selected-option.disabled:hover {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user