diff --git a/module/bug/css/browse.css b/module/bug/css/browse.css
index 7ab226a68f..e224a66581 100644
--- a/module/bug/css/browse.css
+++ b/module/bug/css/browse.css
@@ -1,12 +1,6 @@
-.closed {background:#efefef; text-decoration:line-through;}
-.closed a {text-decoration:none;}
-.resolved {background:#8EC21F;}
-.active1 {background:#E70014;}
-.active2 {background:#EA5407;}
-.active3 {background:#F39801;}
-.active4 {background:#FFF100;}
-.resolved a, .active1 a, .active2 a, .active3 a{color:white; text-decoration:none}
-.active4 a {color:blue; text-decoration:none}
+.closed, .closed a{color:gray; text-decoration:line-through;font-weight:bold }
+
+.resolved, .resolved a{color:#8EC21F; text-decoration:none; font-weight:bold}
.confirm0 {color:gray; font-size:9px}
.confirm1 {color:green; font-size:9px}
tfoot .f-left {color:#141414;}
diff --git a/module/bug/view/browse.html.php b/module/bug/view/browse.html.php
index b9758fc591..87f86681fc 100644
--- a/module/bug/view/browse.html.php
+++ b/module/bug/view/browse.html.php
@@ -101,9 +101,11 @@ var customed = ;
id");?>
- status == 'active' ? 'active' . $bug->severity : $bug->status;?>
- | id));?> |
- bug->severityList[$bug->severity]?> |
+ id));?> |
+
+ severity;?>'>
+ bug->severityList[$bug->severity]?>
+ |
bug->priList[$bug->pri]?> |
confirmed;?>
@@ -157,11 +159,6 @@ var customed = ;
echo " $label ";
continue;
}
- rsort($this->lang->bug->severityList);
- foreach($this->lang->bug->severityList as $severity)
- {
- echo " {$lang->bug->severity}:$severity ";
- }
}
?>
diff --git a/www/theme/default/style.css b/www/theme/default/style.css
index 310344dd1f..670c64c6dc 100644
--- a/www/theme/default/style.css
+++ b/www/theme/default/style.css
@@ -446,6 +446,11 @@ table.tablesorter thead tr .headerSortDown {background-image: url(./images/table
.icon-green-small-bug-close {padding:2px 8px; background:url(images/main/zt-green.png) -80px -300px;}
.icon-gray-small-bug-close {padding:2px 8px; background:url(images/main/zt-gray.png) -80px -300px;}
+.severity1 {padding:2px 8px; background:url(images/main/zt-green.png) 0px -380px no-repeat;}
+.severity2 {padding:2px 8px; background:url(images/main/zt-green.png) -20px -380px no-repeat;}
+.severity3 {padding:2px 8px; background:url(images/main/zt-green.png) -40px -380px no-repeat;}
+.severity4 {padding:2px 8px; background:url(images/main/zt-green.png) -60px -380px no-repeat;}
+
/* Case icons. */
#featurebar .f-right .icon-green-big-case-create {padding:2px 7px 2px 10px; background:url(images/main/zt-green.png) 0px -320px;}
#featurebar .f-right .icon-green-big-case-batchCreate {padding:2px 7px 2px 10px; background:url(images/main/zt-green.png) -20px -320px;}