Last active
July 3, 2021 03:23
-
-
Save marktaiwan/7cc06dd4004850dbd163abe59a0158ed to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ==UserStyle== | |
@name Philomena Delayed Tag Dropdown | |
@namespace https://github.com/marktaiwan/ | |
@version 1.0.0 | |
@author Marker | |
==/UserStyle== */ | |
@-moz-document domain("derpibooru.org"), domain("furbooru.org"), domain("ponybooru.org"), domain("ponerpics.org"), domain("twibooru.org") { | |
.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; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment