Project

General

Profile

Feature #4967 » application.css

Bruno Prado, 2010-03-02 19:26

 
1
@import url(../../../stylesheets/application.css);
2

    
3
body{ color:#303030; background:#e8eaec; }
4

    
5
#top-menu { font-size: 80%; height: 2em; padding-top: 0.5em; background-color: #578bb8; }
6
#top-menu a { font-weight: bold; }
7
#header { background: #467aa7; height:5.8em; padding: 10px 0 0 0; }
8
#header h1 { margin-left: 6px; }
9
#quick-search { margin-right: 6px; }
10
#main-menu { background-color: #578bb8; left: 0; border-top: 1px solid #fff; width: 100%; }
11
#main-menu li { margin: 0; padding: 0; }
12
#main-menu li a { background-color: #578bb8; border-right: 1px solid #fff; font-size: 90%; padding: 4px 8px 4px 8px; font-weight: bold; }
13
#main-menu li a:hover { background-color: #80b0da; color: #ffffff; }
14
#main-menu li a.selected, #main-menu li a.selected:hover { background-color: #80b0da; color: #ffffff; }
15

    
16
#footer { background-color: #578bb8; border: 0; color: #fff;}
17
#footer a { color: #fff; font-weight: bold; }
18

    
19
#main { font:90% Verdana,Tahoma,Arial,sans-serif; background: #e8eaec; }
20
#main a { font-weight: bold; color: #467aa7; }
21
#main a:hover { color: #2a5a8a; text-decoration: underline; }
22
#content { background: #fff; }
23
#content .tabs ul { bottom:-1px; }
24

    
25
h2, h3, h4, .wiki h1, .wiki h2, .wiki h3 { border-bottom: 0px; color:#606060; font-family: Trebuchet MS,Georgia,"Times New Roman",serif; }
26
h2, .wiki h1 { letter-spacing:-1px; }
27
h4 { border-bottom: dotted 1px #c0c0c0; }
28

    
29
#top-menu a.home, #top-menu a.my-page, #top-menu a.projects, #top-menu a.administration, #top-menu a.help { 
30
    background-position: 0% 40%;
31
    background-repeat: no-repeat;
32
    padding-left: 20px;
33
    padding-top: 2px;
34
    padding-bottom: 3px;
35
}
36

    
37
#top-menu a.home { background-image: url(../images/home.png); }
38
#top-menu a.my-page { background-image: url(../../../images/user.png); }
39
#top-menu a.projects { background-image: url(../../../images/projects.png); }
40
#top-menu a.administration { background-image: url(../images/wrench.png); }
41
#top-menu a.help { background-image: url(../../../images/help.png); }
42

    
43
/* makes the fonts that are not links bold black */
44
/* .issue { color: #000000; font-weight: bold; } */
45
/* tr, table.list tbody tr:hover { color: #000000; font-weight: bold; } */
46

    
47
/* ************************************************************************** */
48

    
49
/* issues links are bold black and underlined */
50
#content table.list tr.issue a { color: #000000; text-decoration: underline; }
51

    
52
/* colours black the progress bar  */
53
#content .list .issue .done_ratio .progress .todo { background: #ffffff; }
54
#content .list .issue .done_ratio .progress .closed { background: #000000; }
55

    
56
/* issue view: colour the links bold black and underlined, and black the progress bar */
57
#content .issue h3 { color: #000000; }
58
#content .issue a { color: #000000; text-decoration: underline; }
59
#content .issue .attributes .progress .progress .todo { background: #ffffff; }
60
#content .issue .attributes .progress .progress .closed { background: #000000; }
61

    
62
#content .details { background: #ffffbb }
63

    
64
/* status NEW */
65
.status-1.priority-5 { background: #fe4040; } /* priority IMMEDIATE */
66
.status-1.priority-4 { background: #fe6060; } /* priority URGENT  */
67
.status-1.priority-3 { background: #fe8080; } /* priority HIGH */
68
.status-1.priority-2 { background: #fea0a0; } /* priority NORMAL */
69
.status-1.priority-1 { background: #fec0c0; } /* priority LOW */
70

    
71
/* status ASSIGNED */
72
.status-2.priority-5 { background: #5858ff; } /* priority IMMEDIATE */
73
.status-2.priority-4 { background: #7878ff; } /* priority URGENT  */
74
.status-2.priority-3 { background: #9898ff; } /* priority HIGH */
75
.status-2.priority-2 { background: #b8b8ff; } /* priority NORMAL */
76
.status-2.priority-1 { background: #d8d8ff; } /* priority LOW */
77

    
78
/* status ACKNOWLEDGED */
79
.status-3.priority-5 { background: #008833; } /* priority IMMEDIATE */
80
.status-3.priority-4 { background: #00aa55; } /* priority URGENT  */
81
.status-3.priority-3 { background: #00cc77; } /* priority HIGH */
82
.status-3.priority-2 { background: #00ee99; } /* priority NORMAL */
83
.status-3.priority-1 { background: #99ffbb; } /* priority LOW */
84

    
85
/* status REJECTED */
86
.status-4.priority-5 { background: #ffbb22; } /* priority IMMEDIATE */
87
.status-4.priority-4 { background: #ffcc44; } /* priority URGENT  */
88
.status-4.priority-3 { background: #ffdd66; } /* priority HIGH */
89
.status-4.priority-2 { background: #ffee88; } /* priority NORMAL */
90
.status-4.priority-1 { background: #ffffaa; } /* priority LOW */
91

    
92
/* status CLOSED */
93
.status-5.priority-5 { background: #555555; } /* priority IMMEDIATE */
94
.status-5.priority-4 { background: #777777; } /* priority URGENT  */
95
.status-5.priority-3 { background: #999999; } /* priority HIGH */
96
.status-5.priority-2 { background: #bbbbbb; } /* priority NORMAL */
97
.status-5.priority-1 { background: #dddddd; } /* priority LOW */
98

    
(4-4/14)