Viewing last 25 versions of post by Marker in topic Userscripts / Customization

Marker
My Little Pony - 1992 Edition
Wallet After Summer Sale -
Magnificent Metadata Maniac - #1 Assistant
Not a Llama - Happy April Fools Day!

Misanthrope
So I've gotten a little tired of doing this little dance...
 
![full](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]

`
Reason: finally figured out how to preserve whitespace
Edited by Marker
Marker
My Little Pony - 1992 Edition
Wallet After Summer Sale -
Magnificent Metadata Maniac - #1 Assistant
Not a Llama - Happy April Fools Day!

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]

Reason: finally figured out how to preserve whitespace
Edited by Marker
Marker
My Little Pony - 1992 Edition
Wallet After Summer Sale -
Magnificent Metadata Maniac - #1 Assistant
Not a Llama - Happy April Fools Day!

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: 0s max-height 0s, padding 0s;
}

.tag.dropdown:hover .dropdown__content {
transition-delay: 0.5s;
max-height: 100vh;
padding: 5px;
}@[/bq]

No reason given
Edited by Marker