light yellow header to make it stand out when alt tabbing
aacctt.atlassian.net/jira/software/projects/ by tbiking
Details
Authortbiking
LicenseNo License
Categoryhttps://aacctt.atlassian.net/jira/software/projects/
Created
Updated
Size981 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name aacctt.atlassian.net/jira/software/projects/
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document url-prefix("https://aacctt.atlassian.net/jira/software/projects/") {
/* Insert code here... */
/* Change the background color of Jira to a light yellow hue */
body, .aui-page-panel, .content, .ia-splitter, .ia-splitter-handle, .ia-splitter-inner, .ia-splitter-inner-handle {
background-color: #fff9c4 !important; /* Light yellow background color */
}
header, footer, .editor, .jira-quick-edit {
background-color: #fff9c4 !important; /* Match header, footer, editor, and quick edit areas to the light yellow background */
}
/* Optional: Adjust text color for better readability */
body, .content, .editor, .jira-quick-edit {
color: #333 !important; /* Darker text color for better contrast */
}
/* Keep other styles default */
}