
Marker 



Misanthrope
So I've gotten a little tired of doing this little dance...
!https://i.imgur.com/azJP8nu.gif!
...whenever I'm trying to click on a tag in the middle of the tag soup, here's a dirty, hacky way of adding half a second of delay to the dropdown using CSS:
[bq]==.tag.dropdown .dropdown__content {
display: block;
overflow-y: hidden;
max-height: 0vh;
padding: 0px;
transition: max-height 0s, padding 0s;
}
.tag.dropdown:hover .dropdown__content {
transition-delay: 0.5s;
max-height: 100vh;
padding: 5px;
}==[/bq]
!https://i.imgur.com/azJP8nu.gif!
...whenever I'm trying to click on a tag in the middle of the tag soup, here's a dirty, hacky way of adding half a second of delay to the dropdown using CSS:
[bq]==.tag.dropdown .dropdown__content {
display: block;
overflow-y: hidden;
max-height: 0vh;
padding: 0px;
transition: max-height 0s, padding 0s;
}
.tag.dropdown:hover .dropdown__content {
transition-delay: 0.5s;
max-height: 100vh;
padding: 5px;
}==[/bq]