source: EDIS/tags/ed/tracking-ui-main/src/main/flex/edp.css@ 1240

Last change on this file since 1240 was 1240, checked in by George Lilly, 13 years ago

new version from the VA

File size: 3.6 KB
Line 
1/* CSS file */
2global {
3 focusThickness: 2;
4 focusBlendMode: difference;
5 letterSpacing: .5;
6 fontThickness: -25;
7}
8
9Application {
10 backgroundColor: #CCCCCC;
11 backgroundGradientColors: #CCCCCC, #EEEEEE;
12 backgroundGradientAlphas: 0.6, 0.4;
13 themeColor: #CCCCCC;
14 font-size: 10;
15 color: black;
16}
17
18Label {
19 font-size: 10;
20 paddingBottom:-1;
21}
22
23Button {
24 paddingBottom:0;
25}
26
27DataGrid {
28 selectionColor: #3366CC;
29 textSelectedColor: white;
30 use-roll-over: false;
31 headerColors: #FFFFFF, #CCCCCC;
32 headerStyleName: gridHeader;
33}
34
35List {
36 selectionColor: #3366CC;
37 textSelectedColor: white;
38 use-roll-over: false;
39}
40
41ComboBox {
42 selection-color: #3366CC;
43 roll-over-color: #3366CC;
44 text-selected-color: white;
45 text-roll-over-color: white;
46 font-weight: normal;
47 paddingBottom:-2;
48}
49
50TextInput {
51 borderColor: #666666;
52 font-weight: normal;
53 paddingBottom:-2;
54}
55
56LinkBar {
57 color: #6B5B5B;
58 disabledColor: #186CDD;
59 text-roll-over-color: #186CDD;
60}
61
62LinkButton {
63 font-weight: bold;
64 font-size: 10;
65 color: #186CDD;
66 roll-over-color: white;
67 selection-color: white;
68 paddingBottom:0;
69}
70
71FormItem {
72 font-weight: bold;
73 font-size: 10;
74 color: #6B5B5B;
75 paddingBottom:-1;
76}
77
78FormHeading {
79 color: #6B5B5B;
80 font-size: 10;
81 paddingBottom:-1;
82}
83
84.linkSelected {
85 font-weight: bold;
86 font-size: 10;
87 color: #6B5B5B;
88 text-roll-over-color: #6B5B5B;
89 text-align: left;
90 padding-left: 2;
91 padding-right: 2;
92 paddingBottom:0;
93 focusRoundedCorners: "tl bl tr br";
94}
95
96.linkUnSelected {
97 color: #186CDD;
98 text-roll-over-color: #186CDD;
99 roll-over-color: white;
100 font-size: 10;
101 font-weight: bold;
102 text-align: left;
103 padding-left: 2;
104 padding-right: 2;
105 paddingBottom:0;
106 focusRoundedCorners: "tl bl tr br";
107}
108
109.reportLabel {
110 font-weight: bold;
111 font-size: 10;
112 color: #6B5B5B;
113}
114
115.controlLabel {
116 font-weight: bold;
117 font-size: 10;
118 color: #6B5B5B;
119}
120
121/** added by jtorreno 2008.02.12 for JAWS accessibility (508) **/
122.accessibleControlLabel {
123 background-color: #F0F0F0;
124 border-color: #F0F0F0;
125 border-style: none;
126 font-size: 10;
127 font-weight: bold;
128 color: #6B5B5B;
129}
130
131.normalLabel {
132 font-weight: normal;
133 font-size: 10;
134 color: black;
135}
136
137.lightLabel {
138 font-weight: normal;
139 font-size: 10;
140 color: gray;
141}
142
143.formField {
144 color: black;
145 font-weight: normal;
146}
147
148.contentArea {
149 background-color: #F0F0F0;
150}
151
152.viewTitle {
153 font-size: 14;
154 font-weight: bold;
155 color: black;
156}
157
158/** added by jtorreno 2008.02.12 for JAWS accessibility (508) **/
159.accessibleViewTitle {
160 font-size: 14;
161 font-weight: bold;
162 color: black;
163 background-color: #CCCCCC;
164 border-color: #CCCCCC;
165 border-style: none;
166}
167
168/** added by jtorreno 2008.02.14 for JAWS accessibility (508) **/
169.accessibleViewReportTitle {
170 font-size: 14;
171 font-weight: bold;
172 color: black;
173 background-color: white;
174 border-color: white;
175 border-style: none;
176}
177
178.subTitle {
179 font-size: 10;
180 font-weight: bold;
181 color: black;
182}
183
184.bottomRightButton {
185 vertical-align: bottom;
186 horizontal-align: right;
187 padding-right: 16;
188 padding-bottom: 16;
189}
190
191.errorText {
192 font-size: 10;
193 font-weight: bold;
194 color: red;
195}
196
197.sessionTimeoutLabel {
198 font-size: 14;
199 font-weight: bold;
200 color: red;
201}
202
203.gridHeader {
204 font-weight: bold;
205 color: #6B5B5B;
206}
Note: See TracBrowser for help on using the repository browser.