diff options
Diffstat (limited to 'skins')
-rw-r--r-- | skins/custom/bug_groups.css | 24 | ||||
-rw-r--r-- | skins/custom/create_bug.css | 18 |
2 files changed, 42 insertions, 0 deletions
diff --git a/skins/custom/bug_groups.css b/skins/custom/bug_groups.css new file mode 100644 index 000000000..b8486c968 --- /dev/null +++ b/skins/custom/bug_groups.css @@ -0,0 +1,24 @@ +/* colorize bugs in various groups */ +body[class*=bz_group_] { + background-color: #e0e0ff; + border-left: solid red 2px; + padding-left: 13px; +} + +body[class*=bz_group_] #bugzilla-body { + background-color: inherit; +} + +body.bz_group_webtools-security, +body.bz_group_websites-security, +body.bz_group_bugzilla-security { + background-color: #ffeeee; +} + +body.bz_group_client-services-security { + background-color: #ffff80; +} + +body.bz_group_core-security { + background-color: #ffe0b0; +} diff --git a/skins/custom/create_bug.css b/skins/custom/create_bug.css new file mode 100644 index 000000000..044896d68 --- /dev/null +++ b/skins/custom/create_bug.css @@ -0,0 +1,18 @@ + +#bug_tracking_flags .field_label { + font-weight: normal !important; +} + +#guided { + margin-top: 30px; +} + +#component { + width: 25em; +} + +.hidden_text { + opacity: 0; + filter: alpha(opacity=0); +} + |