Add z-index: -1 to select down arrow

Without this change clicking exactly on the down arrow eats the click and
doesn't active the <select> element.
This commit is contained in:
Mike Colagrosso 2024-01-22 21:46:49 -07:00 committed by Alex Cabal
parent 959b79a439
commit b6c1e1133d

View file

@ -1818,6 +1818,7 @@ label.select > span + span::after{
margin-top: -3px; /* Adjust for Crimson Pro line-height */ margin-top: -3px; /* Adjust for Crimson Pro line-height */
text-shadow: 1px 1px 0 rgba(255, 255, 255, .5); text-shadow: 1px 1px 0 rgba(255, 255, 255, .5);
transition: color .5s; transition: color .5s;
z-index: -1;
} }
label.search:focus-within::before, label.search:focus-within::before,