-
Notifications
You must be signed in to change notification settings - Fork 4
/
styles.css
123 lines (104 loc) · 1.56 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
body {
background: url('typo3-200px-transparent.png') right top no-repeat;
font-family: Verdana, Arial, Helvetica, sans-serif;
background-color: white;
padding: 0;
margin: 10px;
font-size: 13px;
}
table {
font-size: 100%;
}
a {
color: #BE0027;
}
a:visited {
color: #DB7388;
}
.info-planned a:visited {
color: #BE0027;
font-weight: inherit;
}
a:hover {
color: #FF8700;
}
h1, h2 {
font-family: Share-Bold;
}
h1 {
font-size: 20px;
}
h2 {
font-size: 15px;
}
.controls {
height: 20px;
margin: 0 0 10px 0;
}
.controls button {
margin: 0 5px 0 0;
border: 1px solid #666;
background-color: #ddd;
border-radius: 4px;
padding: 2px 4px;
}
.controls button:hover {
background-color: #aaa;
}
.controls button.activeFilter {
background-color: #aaa;
}
.count {
font-size: 90%;
margin-bottom: 5px;
}
table {
border-collapse: collapse;
}
td, th {
text-align: left;
padding: 2px;
border: 1px solid #ccc;
}
th.release {
text-align: center;
min-width:10ex;
}
th.desc {
min-width:70em;
}
td.issue {
min-width:10ex;
}
th {
color: #FFF;
background-color: #FF9F33;
border-color: #FF8700;
}
td.info-planned,
td.info-solved,
td.info-not-needed {
text-align: left;
padding-left: 10px;
white-space: nowrap;
}
td.info-planned {
font-weight:bold;
color: white;
background-color: red;
}
td.info-reverted {
background-color: #d7d7d7;
}
td.info-planned-review {
color: black;
background-color: yellow;
}
td.info-not-needed {
color: #fff;
background-color: #555;
font-weight: normal;
}
tr:hover {
background-color: #FFFFDD;
}