Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2308 mtayler 1
.comboLabelStyle {
2
	font-family: sans-serif, serif;
3
	font-weight: bold;
4
	font-size: 14px;
5
}
6
 
7
.staticTextStyle {
8
	font-family: sans-serif, serif;
9
	font-size: 14px;
10
}
11
 
12
.staticDataStyle {
13
	font-family: sans-serif, serif;
14
	font-weight: bold;
15
	font-size: 14px;
16
	color: red;
17
}
18
 
19
.comboStyle {
20
 
21
}
22
 
23
.titleStyle {
24
	font-family: sans-serif, serif;
25
	font-weight: bold;
26
	font-size: 36px;
27
	color: #003366;
28
}
29
 
30
.tableStyle {
31
	border: 2px dotted Black;
32
	width: 100%;
33
}
34
 
35
.headerStyle {
36
	font-family: sans-serif, serif;
37
	font-size: 14px;
38
	font-weight: bold;
39
	color: Black;
40
	cursor: pointer;			
41
}
42
 
43
.headerMouseOverStyle{
44
	font-family: sans-serif, serif;
45
	font-size: 14px;
46
	font-weight: bold;
47
	color: Red;
48
	cursor: hand;		
49
}
50
 
51
.linkStyle {
52
	font-family: sans-serif, serif;
53
	font-size: 12px;
54
	color: #00008B;	
55
	cursor: pointer;		
56
}
57
 
58
.linkMouseOverStyle {
59
	font-family: sans-serif, serif;
60
	font-size: 12px;
61
	color: #AD3333;
62
	cursor: hand;	
63
}
64
 
65
.visibleDataStyle {
66
	font-family: sans-serif, serif;
67
	font-size: 14px;
68
	border: 1px ridge Black;
69
	color: #00008B;
70
}
71
 
72
.showHiddenDataStyle {
73
	font-family: sans-serif, serif;
74
	font-size: 14px;
75
	color: #00008B;	
76
	cursor: pointer;	
77
}
78
 
79
 
80
.hiddenDataStyle {
81
	font-family: sans-serif, serif;
82
	font-size: 14px;
83
	display: none;
84
}
85
 
86
.hiddenDataLabelStyle {
87
	font-family: sans-serif, serif;
88
	font-size: 14px;	
89
	font-weight: bold;	
90
}
91
 
92
.openStateNotAssignedStyle {
93
	background-color: lightpink;
94
}
95
 
96
.openStateAssignedStyle {
97
	background-color: lightyellow;
98
}
99
 
100
.implementedStateStyle {
101
	background-color: lightgreen;
102
}
103
 
104
.closedStateStyle {
105
	background-color: lightblue;
106
}
107
 
108
.reqclosedStateStyle {
109
	background-color: Gainsboro;
110
}
111
 
112
.defaultStyle {
113
	background-color: white;	
114
}
115
 
116