Hi, it would be useful to have a UI option for Bricks filter elements to control whether filter labels fade out while the filter is loading.
Right now Bricks applies this style:
.brx-filter-disabled label:not(.brx-option-disabled),
.page-filtered label:not(.brx-option-disabled) {
opacity: .5;
}
In some designs this creates an unwanted flicker, especially when filter buttons have custom active/background styles. I can override it with:
.aktuelles__filter.brx-filter-disabled label:not(.brx-option-disabled) {
opacity: 1 !important;
}
But it would be nicer to have a simple setting in the filter element, for example:
Fade filter options while loading: on/off
That way users could keep the default loading feedback, or disable the faded look when it does not fit the design.