diff --git a/css/style.css b/css/style.css index c8b63f2..cfa11d5 100755 --- a/css/style.css +++ b/css/style.css @@ -1883,8 +1883,10 @@ footer { white-space: normal; } .category-filters .filter-dd .dd-content#filter-axe-popover ul li:nth-of-type(odd) { background-color: white; } - .category-filters .filter-dd .dd-content#filter-axe-popover ul li:first-of-type { + .category-filters .filter-dd .dd-content#filter-axe-popover ul li.is-active { background-color: #cccccc; } + .category-filters .filter-dd .dd-content#filter-axe-popover ul li:hover { + background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)); } .category-filters .filter-dd .dd-content#filter-axe-popover ul li.dd-axe-group-label { font-size: 0.72rem; font-weight: 600; diff --git a/scss/_filters.scss b/scss/_filters.scss index e4b7b00..76c7eea 100644 --- a/scss/_filters.scss +++ b/scss/_filters.scss @@ -248,9 +248,12 @@ &:nth-of-type(odd) { background-color: white; } - &:first-of-type { + &.is-active { background-color: $less-light-gray; } + &:hover { + background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)); + } &.dd-axe-group-label { font-size: 0.72rem; font-weight: 600; diff --git a/templates/partials/category-filters.twig b/templates/partials/category-filters.twig index 701248b..6467a57 100644 --- a/templates/partials/category-filters.twig +++ b/templates/partials/category-filters.twig @@ -158,10 +158,10 @@