Project

General

Profile

Configure custom icons for Project Categories » application.css

Theme snippet - Manuel Palachuk, 2015-07-07 21:29

 
1
/* ICONS ! */
2
table.issues tbody tr > td {
3
    text-align: center;
4
    vertical-align: middle;
5
}
6

    
7

    
8
/* Tracker icons */
9
table.issues tbody tr > td.tracker {
10
    padding-left: 34px;
11
    text-align: justify;
12
    vertical-align: middle;
13
}
14

    
15
/* Bug */
16
table.issues tbody tr.tracker-1 > td.tracker {
17
    background: url("../images/bug.png")left center no-repeat;
18
}
19

    
20

    
21
/* Status icons */
22
table.issues tbody tr > td.status {
23
    padding-left: 34px;
24
    text-align: justify;
25
    vertical-align: middle;
26
}
27

    
28
/* New */
29
table.issues tbody tr.status-1 > td.status {
30
    background: url("../images/new.png") left center no-repeat;
31
}
32

    
33
/* Category icons */
34
table.issues tbody tr > td.category {
35
    padding-left: 34px;
36
    text-align: justify;
37
    vertical-align: middle;
38
}
39

    
40
/* Sales */
41
table.issues tbody tr.category-1 > td.category {
42
    background: url("../images/sales.png") left center no-repeat;
43
}
(1-1/2)