Scarab commit: svn commit: r10802 - trunk/src/webapp/skins/custom.css
Hussayn Dabbous <[email protected]>
| Newsgroups | gmane.comp.java.scarab.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: dabbous
Date: 2009-07-16 00:57:29-0700
New Revision: 10802
Modified:
trunk/src/webapp/skins/custom.css
Log:
cosmethic: The placement of the status icons was influenced by the overall css-definitions. I have added some more specific css-rules to keep the icons at place. Note: This part of Scarab may be moved to the extensions folder. It is currently not part of the standard and does not appear unless explicitly configured on the web-GUI (sorry, no documentation yet, but that will follow ;-)
Modified: trunk/src/webapp/skins/custom.css
Url: http://scarab.tigris.org/source/browse/scarab/trunk/src/webapp/skins/custom.css?view=diff&pathrev=10802&r1=10801&r2=10802
==============================================================================
--- trunk/src/webapp/skins/custom.css (original)
+++ trunk/src/webapp/skins/custom.css 2009-07-16 00:57:29-0700
@@ -9,14 +9,15 @@
/* attribute specific classes */
-.status,
-.status_new,
-.status_assigned,
-.status_reopened,
-.status_inreview,
-.status_processing,
-.status_closed
+td.status,
+td.status_new,
+td.status_assigned,
+td.status_reopened,
+td.status_inreview,
+td.status_processing,
+td.status_closed
{
+ display:inline;
background-repeat: no-repeat;
position:relative;
background-position: 0px 0px;
@@ -26,37 +27,31 @@
.status_new {
color:#888;
- padding-left:20px;
}
-.status_assigned {
+td.status_assigned {
color:red;
background-image: url(images/unassigned.png);
- padding-left:20px;
}
.status_reopened {
color:magenta;
background-image: url(images/reopened.png);
- padding-left:20px;
}
.status_inreview {
color:blue;
background-image: url(images/inreview.png);
- padding-left:20px;
}
.status_processing {
color:orange;
background-image: url(images/inprogress.png);
- padding-left:20px;
}
.status_closed {
color:green;
background-image: url(images/closed.png);
- padding-left:20px;
}
------------------------------------------------------
http://scarab.tigris.org/ds/viewMessage.do?dsForumId=3577&dsMessageId=2371690