1 parent ebdbe65 commit 80e0935Copy full SHA for 80e0935
1 file changed
src/components/Controls.vue
@@ -90,7 +90,7 @@
90
<NcButton slot="trigger"
91
:title="t('deck', 'Apply filter')"
92
class="filter-button"
93
- type="tertiary-no-background">
+ :type="isFilterActive ? 'primary' : 'tertiary'">
94
<template #icon>
95
<FilterIcon v-if="isFilterActive" :size="20" decorative />
96
<FilterOffIcon v-else :size="20" decorative />
@@ -509,8 +509,11 @@ export default {
509
width: 44px;
510
height: 44px;
511
512
- &:hover, &:focus {
513
- background-color: rgba(127,127,127,0.25) !important;
+ &[data-popper-shown] {
+ background-color: var(--color-background-hover);
514
+ &.button-vue--vue-primary {
515
+ background-color: var(--color-primary-element);
516
+ }
517
}
518
519
</style>
0 commit comments