Created
February 25, 2013 04:20
-
-
Save lostsnow/5027720 to your computer and use it in GitHub Desktop.
redmine issue css by status
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* new */ | |
tr.odd.status-1, table.list tbody tr.odd.status-1:hover { color: #900; } | |
tr.odd.status-1 { background: #ffc4c4; } | |
tr.even.status-1, table.list tbody tr.even.status-1:hover { color: #900; } | |
tr.even.status-1 { background: #ffd4d4; } | |
tr.status-1 a, tr.status-1:hover a { color: #900; } | |
tr.odd.status-1 td, tr.even.status-1 td { border-color: #ffb4b4; } | |
/* assigned / in progress */ | |
tr.odd.status-2, table.list tbody tr.odd.status-2:hover { color: #990; } | |
tr.odd.status-2 { background: #ffffc4; } | |
tr.even.status-2, table.list tbody tr.even.status-2:hover { color: #990; } | |
tr.even.status-2 { background: #ffffd4; } | |
tr.status-2 a, tr.status-2:hover a { color: #990; } | |
tr.odd.status-2 td, tr.even.status-2 td { border-color: #ffffb4; } | |
/* resolved */ | |
tr.odd.status-3, table.list tbody tr.odd.status-3:hover { color: #909; } | |
tr.odd.status-3 { background: #ffc4ff; } | |
tr.even.status-3, table.list tbody tr.even.status-3:hover { color: #909; } | |
tr.even.status-3 { background: #ffd4ff; } | |
tr.status-3 a, tr.status-3:hover a { color: #909; } | |
tr.odd.status-3 td, tr.even.status-3 td { border-color: #ffb4ff; } | |
/* feedback */ | |
tr.odd.status-4, table.list tbody tr.odd.status-4:hover { color: #099; } | |
tr.odd.status-4 { background: #c4ffff; } | |
tr.even.status-4, table.list tbody tr.even.status-4:hover { color: #099; } | |
tr.even.status-4 { background: #d4ffff; } | |
tr.status-4 a, tr.status-4:hover a { color: #099; } | |
tr.odd.status-4 td, tr.even.status-4 td { border-color: #b4ffff; } | |
/* closed */ | |
tr.odd.status-5, table.list tbody tr.odd.status-5:hover { color: #090; } | |
tr.odd.status-5 { background: #c4ffc4; } | |
tr.even.status-5, table.list tbody tr.even.status-5:hover { color: #090; } | |
tr.even.status-5 { background: #d4ffd4; } | |
tr.status-5 a, tr.status-5:hover a { color: #090; } | |
tr.odd.status-5 td, tr.even.status-5 td { border-color: #b4ffb4; } | |
/* rejected */ | |
tr.odd.status-6, table.list tbody tr.odd.status-6:hover { color: #999; } | |
tr.odd.status-6 { background: #c4c4c4; } | |
tr.even.status-6, table.list tbody tr.even.status-6:hover { color: #999; } | |
tr.even.status-6 { background: #d4d4d4; } | |
tr.status-6 a, tr.status-5:hover a { color: #999; } | |
tr.odd.status-6 td, tr.even.status-6 td { border-color: #b4b4b4; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment