fix(filter): adjust clear button spacing and hide select arrow when active

This commit is contained in:
Jürgen Mummert
2026-02-27 21:15:09 +01:00
parent 8b213ec619
commit 000fdb8e79
@@ -74,6 +74,10 @@
outline-offset: 3px; outline-offset: 3px;
} }
#eventfilters .widget-select.active::before {
display: none;
}
#eventfilters select:focus-visible { #eventfilters select:focus-visible {
outline: 3px solid currentColor; outline: 3px solid currentColor;
outline-offset: 3px; outline-offset: 3px;
@@ -86,8 +90,9 @@
#eventfilters .eventfilter-clear { #eventfilters .eventfilter-clear {
position: absolute; position: absolute;
top: 50%; top: 50%;
right: .5rem; right: 0;
transform: translateY(-50%); transform: translateY(-50%);
margin: 0;
display: inline-flex; display: inline-flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
@@ -95,7 +100,7 @@
background: transparent; background: transparent;
color: inherit; color: inherit;
cursor: pointer; cursor: pointer;
padding: .125rem; padding: 1em;
line-height: 1; line-height: 1;
} }