fix: enhance button styling for filter applied state in dark theme
This commit is contained in:
parent
3dc66b47cf
commit
6c44143ea9
1 changed files with 10 additions and 0 deletions
|
|
@ -337,10 +337,20 @@ onMounted(() => selected.value && label_input.value.focus_on_label());
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btn-filter-applied {
|
||||
background-color: var(--gray-300) !important;
|
||||
|
||||
&:hover {
|
||||
background-color: var(--gray-400) !important;
|
||||
}
|
||||
|
||||
[data-theme="dark"] & {
|
||||
background-color: var(--gray-700) !important;
|
||||
|
||||
&:hover {
|
||||
background-color: var(--gray-800) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue