Feature #1716 » mantis-application.css
1 |
/* load the default Redmine stylesheet */
|
---|---|
2 |
@import url(../../../stylesheets/application.css); |
3 |
|
4 |
/* 1 pixel white line between rows */
|
5 |
tr.issue { border: 1px solid white; } |
6 |
|
7 |
/* Optional 1 pixel white line between columns */
|
8 |
/* tr.issue td { border: 1px solid white; } */
|
9 |
|
10 |
/* use MantisBT style coloring by status */
|
11 |
tr.status-1 { background: #fcc; } /* new */ |
12 |
tr.status-2 { background: #cdf; } /* assigned */ |
13 |
tr.status-3 { background: #dfd; } /* resolved */ |
14 |
tr.status-4 { background: #fdf; } /* feedback */ |
15 |
tr.status-5 { background: #eee; } /* closed */ |
16 |
tr.status-6 { background: #fd6; } /* rejected */ |
17 |
|
18 |
/* if you only want the status column highlighted, use these instead */
|
19 |
/*
|
20 |
tr.status-1 td.status { background: #fcc; }
|
21 |
tr.status-2 td.status { background: #cdf; }
|
22 |
tr.status-3 td.status { background: #dfd; }
|
23 |
tr.status-4 td.status { background: #fdf; }
|
24 |
tr.status-5 td.status { background: #eee; }
|
25 |
tr.status-6 td.status { background: #fd6; }
|
26 |
*/
|
- « Previous
- 1
- 2
- Next »