summaryrefslogtreecommitdiffstats
path: root/skins
diff options
context:
space:
mode:
authorkiko%async.com.br <>2004-08-24 00:21:58 +0200
committerkiko%async.com.br <>2004-08-24 00:21:58 +0200
commit2da40266afd21bcc097cc6e77557fd8012543e46 (patch)
tree8dfa2885cc00058f9b7cd551547df5e76bf23e18 /skins
parent88d26275229b5f52f435130496169766313c87b7 (diff)
downloadbugzilla-2da40266afd21bcc097cc6e77557fd8012543e46.tar.gz
bugzilla-2da40266afd21bcc097cc6e77557fd8012543e46.tar.xz
Patch for bug 252810: p1, critical not displayed in red when groups are
used for bug. Roundabout patch that adds a padlock icon next to the bug ID to bug listings, and does even/odd striping of the buglist. r,a=myk.
Diffstat (limited to 'skins')
-rw-r--r--skins/standard/buglist.css28
1 files changed, 21 insertions, 7 deletions
diff --git a/skins/standard/buglist.css b/skins/standard/buglist.css
index ab595d85e..6051b95d9 100644
--- a/skins/standard/buglist.css
+++ b/skins/standard/buglist.css
@@ -26,13 +26,27 @@
.bz_critical { color: red; }
.bz_enhancement { color: #888; background-color: white; }
-/* Style secure bugs if the installation is not using bug groups.
- * Installations that *are* using bug groups are likely to be using
- * them for almost all bugs, in which case special styling is not
- * informative and generally a nuisance.
- */
-.bz_secure { color: black; background-color: lightgrey; }
-
/* Align columns in the "change multiple bugs" form to the right. */
table#form tr th { text-align: right; }
+table.bz_buglist td, table.bz_buglist th {
+ padding-left: 20px;
+}
+
+/* For styling rows; by default striped white and gray */
+tr.bz_odd {
+ background-color: #e6e6e6;
+}
+
+tr.bz_even {
+}
+
+/* we use a first-child class and not the pseudo-class because IE
+ * doesn't support it :-( */
+tr.bz_secure td.first-child {
+ background-image: url("../images/padlock.png");
+ background-position: center left;
+ background-repeat: no-repeat;
+ background-color: inherit;
+}
+