Skip to content

Instantly share code, notes, and snippets.

@buttercookie42
Last active August 29, 2019 18:41
Show Gist options
  • Save buttercookie42/e9ea812152eb3e0bb4f0e955f5e29c7f to your computer and use it in GitHub Desktop.
Save buttercookie42/e9ea812152eb3e0bb4f0e955f5e29c7f to your computer and use it in GitHub Desktop.
Bugzilla Userstyle
@-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