Last active
August 29, 2019 18:41
-
-
Save buttercookie42/e9ea812152eb3e0bb4f0e955f5e29c7f to your computer and use it in GitHub Desktop.
Bugzilla Userstyle
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
@-moz-document domain("bugzilla.mozilla.org") { | |
/* Fix visited links colours */ | |
a[href*="show_bug.cgi"]:visited { | |
color: blueviolet !important; | |
} | |
#this-bug:visited { | |
color: var(--link-text-color) !important; | |
} | |
/* Button hover styling */ | |
input[type="button"], input[type="submit"], button { | |
cursor: pointer; | |
} | |
input[type="button"].primary:hover, input[type="submit"].primary:hover, button.primary:hover, | |
input[type="button"].major:hover, input[type="submit"].major:hover, button.major:hover { | |
filter: brightness(125%); | |
} | |
input[type="button"]:hover, input[type="submit"]:hover, button:hover { | |
filter: brightness(107%); | |
transition: all linear 100ms; | |
} | |
pre.comment-text { | |
font-size: 14.25px; | |
} | |
#field-value-bug_id { | |
font-weight: bold; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment