testaro 5.2.1 → 5.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +41 -0
- package/README.md +36 -0
- package/htmlcs/.eslintrc.json +67 -0
- package/htmlcs/HTMLCS.js +3792 -3557
- package/package.json +1 -1
- package/tests/htmlcs.js +3 -3
- package/htmlcs/HTMLCS.css +0 -1069
- package/htmlcs/Images/HTMLCS-tools.png +0 -0
- package/htmlcs/Images/bgTexture1.gif +0 -0
- package/htmlcs/Images/summaryLoader-error.gif +0 -0
- package/htmlcs/Images/summaryLoader-notice.gif +0 -0
- package/htmlcs/Images/summaryLoader-warning.gif +0 -0
package/htmlcs/HTMLCS.css
DELETED
|
@@ -1,1069 +0,0 @@
|
|
|
1
|
-
/* set defaults
|
|
2
|
-
********************************************************/
|
|
3
|
-
|
|
4
|
-
#HTMLCS-wrapper {
|
|
5
|
-
direction: ltr !important;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
#HTMLCS-wrapper * {
|
|
9
|
-
margin: 0;
|
|
10
|
-
padding: 0;
|
|
11
|
-
float: none;
|
|
12
|
-
height: inherit;
|
|
13
|
-
height: auto;
|
|
14
|
-
width: auto;
|
|
15
|
-
font-size: inherit;
|
|
16
|
-
line-height: inherit;
|
|
17
|
-
box-sizing: content-box;
|
|
18
|
-
-moz-box-sizing: content-box;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
#HTMLCS-wrapper p, #HTMLCS-wrapper div, #HTMLCS-wrapper ul, #HTMLCS-wrapper ol,
|
|
22
|
-
#HTMLCS-wrapper li, #HTMLCS-wrapper table {
|
|
23
|
-
background: transparent;
|
|
24
|
-
color: black;
|
|
25
|
-
font-family: Arial,Sans Serif;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
#HTMLCS-wrapper a,
|
|
29
|
-
#HTMLCS-wrapper a:visited {
|
|
30
|
-
border: none;
|
|
31
|
-
background: none;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
#HTMLCS-wrapper a:hover {
|
|
35
|
-
background: none;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
/* Start HTMLCS */
|
|
39
|
-
|
|
40
|
-
#HTMLCS-wrapper {
|
|
41
|
-
-moz-transition-timing-function: ease;
|
|
42
|
-
-webkit-transition-timing-function: ease;
|
|
43
|
-
position: fixed;
|
|
44
|
-
top: 36px;
|
|
45
|
-
right: 3em;
|
|
46
|
-
width: 300px;
|
|
47
|
-
overflow: hidden;
|
|
48
|
-
background-color: #2B2B2B;
|
|
49
|
-
border: 1px solid #2B2B2B;
|
|
50
|
-
box-shadow: 0 0 15px rgba(0, 0, 0, 0.7), 0 1px 0 #555555 inset;
|
|
51
|
-
color: #2B2B2B;
|
|
52
|
-
text-shadow: 0 1px 0 #FFFFFF;
|
|
53
|
-
border-radius: 0.8em 0.8em 0.8em 0.8em;
|
|
54
|
-
font-family: Arial,Sans Serif;
|
|
55
|
-
font-size: 9px;
|
|
56
|
-
z-index: 100000;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
#HTMLCS-wrapper.HTMLCS-translucent {
|
|
60
|
-
opacity: 0.5;
|
|
61
|
-
filter: alpha(opacity=50);
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
#HTMLCS-wrapper strong {
|
|
65
|
-
font-weight: bold;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
#HTMLCS-wrapper .HTMLCS-header {
|
|
69
|
-
color: #AAAAAA;
|
|
70
|
-
text-shadow: 0 -1px 0 #000000;
|
|
71
|
-
text-transform: uppercase;
|
|
72
|
-
position: relative;
|
|
73
|
-
width: 100%;
|
|
74
|
-
font-size: 1.2em;
|
|
75
|
-
line-height: 2em;
|
|
76
|
-
padding-top: 0.2em;
|
|
77
|
-
text-align: center;
|
|
78
|
-
border-bottom: 1px solid transparent;
|
|
79
|
-
cursor: move;
|
|
80
|
-
-webkit-touch-callout: none;
|
|
81
|
-
-webkit-user-select: none;
|
|
82
|
-
-moz-user-select: none;
|
|
83
|
-
-ms-user-select: none;
|
|
84
|
-
user-select: none;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
#HTMLCS-wrapper .HTMLCS-close {
|
|
88
|
-
position: absolute;
|
|
89
|
-
cursor: pointer;
|
|
90
|
-
height: 2.2em;
|
|
91
|
-
opacity: 0.5;
|
|
92
|
-
filter: alpha(opacity=50);
|
|
93
|
-
right: 0;
|
|
94
|
-
top: 0;
|
|
95
|
-
width: 2.2em;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
#HTMLCS-wrapper .HTMLCS-close:hover {
|
|
99
|
-
opacity: 1;
|
|
100
|
-
filter: none;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
#HTMLCS-wrapper .HTMLCS-close:after {
|
|
104
|
-
position: absolute;
|
|
105
|
-
background: transparent url("Images/HTMLCS-tools.png") 0 -61px no-repeat;
|
|
106
|
-
content: "";
|
|
107
|
-
display: block;
|
|
108
|
-
height: 10px;
|
|
109
|
-
left: 50%;
|
|
110
|
-
margin: -5px 0 0 -5px;
|
|
111
|
-
top: 50%;
|
|
112
|
-
width: 10px;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
#HTMLCS-wrapper .HTMLCS-summary,
|
|
116
|
-
#HTMLCS-wrapper .HTMLCS-summary-detail {
|
|
117
|
-
text-align: center;
|
|
118
|
-
padding: 0.6em 0.5em 0.7em;
|
|
119
|
-
line-height: 1.3em;
|
|
120
|
-
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#919097, endColorstr=#727179);
|
|
121
|
-
background: -webkit-gradient(linear, left top, left bottom, from(#919097), to(#727179));
|
|
122
|
-
background: -moz-linear-gradient(center top , #919097, #727179) repeat scroll 0 0 transparent;
|
|
123
|
-
border-top: 1px solid #A2A1A8;
|
|
124
|
-
display: block;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
#HTMLCS-wrapper .HTMLCS-summary:after,
|
|
128
|
-
#HTMLCS-wrapper .HTMLCS-summary-detail:after {
|
|
129
|
-
content: "";
|
|
130
|
-
display: block;
|
|
131
|
-
clear: both;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
#HTMLCS-wrapper .HTMLCS-summary-left {
|
|
135
|
-
color: #000;
|
|
136
|
-
float: left;
|
|
137
|
-
font-size: 1.35em;
|
|
138
|
-
line-height: 2.1em;
|
|
139
|
-
max-width: 240px;
|
|
140
|
-
padding-left: 0.2em;
|
|
141
|
-
text-overflow: ellipsis;
|
|
142
|
-
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
|
|
143
|
-
white-space: nowrap;
|
|
144
|
-
}
|
|
145
|
-
#HTMLCS-wrapper .HTMLCS-summary .HTMLCS-summary-left {
|
|
146
|
-
color: #2b2b2b;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
#HTMLCS-wrapper .HTMLCS-summary strong {
|
|
150
|
-
color: #000;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
#HTMLCS-wrapper .HTMLCS-lineage {
|
|
154
|
-
list-style: none;
|
|
155
|
-
color: #000;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
#HTMLCS-wrapper .HTMLCS-lineage .HTMLCS-lineage-item {
|
|
159
|
-
position: relative;
|
|
160
|
-
display: inline-block;
|
|
161
|
-
height: 26px;
|
|
162
|
-
padding: 0 0.6em 0 17px;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
#HTMLCS-wrapper .HTMLCS-lineage .HTMLCS-lineage-link {
|
|
166
|
-
color: #000;
|
|
167
|
-
text-decoration: none;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
#HTMLCS-wrapper .HTMLCS-lineage .HTMLCS-lineage-item:first-child {
|
|
171
|
-
padding-left: 0;
|
|
172
|
-
padding-right: 0.3em;
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
#HTMLCS-wrapper .HTMLCS-lineage .HTMLCS-lineage-item:first-child .HTMLCS-lineage-link {
|
|
176
|
-
display: inline-block;
|
|
177
|
-
overflow: hidden;
|
|
178
|
-
width: 1.6em;
|
|
179
|
-
height: 1.4em;
|
|
180
|
-
line-height: 1em;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
#HTMLCS-wrapper .HTMLCS-lineage .HTMLCS-lineage-item:first-child span {
|
|
184
|
-
opacity: 0;
|
|
185
|
-
filter: alpha(opacity=0);
|
|
186
|
-
position: absolute;
|
|
187
|
-
left: -9999px;
|
|
188
|
-
width: 0;
|
|
189
|
-
height: 0;
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
#HTMLCS-wrapper .HTMLCS-lineage .HTMLCS-lineage-item:before {
|
|
193
|
-
background: url("Images/HTMLCS-tools.png") no-repeat scroll 0 -74px transparent;
|
|
194
|
-
content: "";
|
|
195
|
-
position: absolute;
|
|
196
|
-
left: 0;
|
|
197
|
-
top: 40%;
|
|
198
|
-
margin-top: -14px;
|
|
199
|
-
height: 32px;
|
|
200
|
-
width: 10px;
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
#HTMLCS-wrapper .HTMLCS-lineage .HTMLCS-lineage-item:first-child:before {
|
|
204
|
-
display: none;
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
#HTMLCS-wrapper .HTMLCS-lineage .HTMLCS-lineage-item:first-child .HTMLCS-lineage-link:after {
|
|
208
|
-
background: url("Images/HTMLCS-tools.png") no-repeat scroll -40px -281px transparent;
|
|
209
|
-
content: "";
|
|
210
|
-
display: block;
|
|
211
|
-
position: absolute;
|
|
212
|
-
left: 46%;
|
|
213
|
-
top: 50%;
|
|
214
|
-
margin: -6px 0 0 -6px;
|
|
215
|
-
height: 13px;
|
|
216
|
-
width: 12px;
|
|
217
|
-
overflow: hidden;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
#HTMLCS-wrapper .HTMLCS-summary-right {
|
|
221
|
-
text-align: right;
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
#HTMLCS-wrapper .HTMLCS-outer-wrapper {
|
|
225
|
-
width: 70em;
|
|
226
|
-
overflow: hidden;
|
|
227
|
-
text-align: left;
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
#HTMLCS-wrapper .HTMLCS-inner-wrapper {
|
|
231
|
-
background: url("Images/bgTexture1.gif") repeat scroll 0 0 #54535A;
|
|
232
|
-
border-radius: 0 0 0.75em 0.75em;
|
|
233
|
-
text-align: left;
|
|
234
|
-
display: none;
|
|
235
|
-
vertical-align: top;
|
|
236
|
-
width: 300px;
|
|
237
|
-
overflow: hidden;
|
|
238
|
-
-moz-transition: margin 0.2s ease-in 0s;
|
|
239
|
-
-webkit-transition: margin 0.2s ease-in 0s;
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
#HTMLCS-wrapper .HTMLCS-details {
|
|
243
|
-
display: none;
|
|
244
|
-
line-height: 2em;
|
|
245
|
-
text-align: left;
|
|
246
|
-
width: 300px;
|
|
247
|
-
overflow: hidden;
|
|
248
|
-
border-top: 1px solid #2B2B2B;
|
|
249
|
-
background-color: rgba(0, 0, 0, 0.2);
|
|
250
|
-
border-bottom: 1px solid #656565;
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
#HTMLCS-wrapper .HTMLCS-issue-list,
|
|
254
|
-
#HTMLCS-wrapper .HTMLCS-issue-detail-list {
|
|
255
|
-
display: inline-block;
|
|
256
|
-
list-style: none outside none;
|
|
257
|
-
margin: 0;
|
|
258
|
-
padding: 0;
|
|
259
|
-
vertical-align: top;
|
|
260
|
-
-moz-transition: margin 0.2s ease-in 0s;
|
|
261
|
-
-webkit-transition: margin 0.2s ease-in 0s;
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
#HTMLCS-wrapper .HTMLCS-issue-list {
|
|
265
|
-
width: 300px;
|
|
266
|
-
z-index: 1;
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
#HTMLCS-wrapper .HTMLCS-issue-list > li {
|
|
270
|
-
font-size: 1.38em;
|
|
271
|
-
background-color: #2B2B2B;
|
|
272
|
-
border-bottom: 1px solid #000000;
|
|
273
|
-
border-top: 1px solid #4B4B4B;
|
|
274
|
-
line-height: 1.3em;
|
|
275
|
-
min-height: 4em;
|
|
276
|
-
padding: 0.8em 2em 0.6em 2.2em;
|
|
277
|
-
position: relative;
|
|
278
|
-
text-shadow: 0 -1px 0 #000000;
|
|
279
|
-
margin: 0;
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
#HTMLCS-wrapper .HTMLCS-issue-list > li > .HTMLCS-issue-type,
|
|
283
|
-
#HTMLCS-wrapper .HTMLCS-issue-detail-list > li .HTMLCS-issue-type {
|
|
284
|
-
height: 100%;
|
|
285
|
-
left: 0;
|
|
286
|
-
position: absolute;
|
|
287
|
-
top: -1px;
|
|
288
|
-
border-top: 1px solid black;
|
|
289
|
-
border-bottom: 1px solid black;
|
|
290
|
-
width: 1.6em;
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
#HTMLCS-wrapper .HTMLCS-issue-type:before {
|
|
294
|
-
background: url("Images/HTMLCS-tools.png") no-repeat scroll 0 0 transparent;
|
|
295
|
-
content: "";
|
|
296
|
-
height: 14px;
|
|
297
|
-
left: 50%;
|
|
298
|
-
margin: -7px 0 0 -7px;
|
|
299
|
-
position: absolute;
|
|
300
|
-
top: 50%;
|
|
301
|
-
width: 14px;
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
#HTMLCS-wrapper .HTMLCS-issue-list > li:after {
|
|
305
|
-
background: url("Images/HTMLCS-tools.png") no-repeat scroll 0 -108px transparent;
|
|
306
|
-
content: "";
|
|
307
|
-
height: 14px;
|
|
308
|
-
margin-top: -7px;
|
|
309
|
-
position: absolute;
|
|
310
|
-
right: 0.7em;
|
|
311
|
-
top: 50%;
|
|
312
|
-
width: 9px;
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
#HTMLCS-wrapper .HTMLCS-issue-list > li > .HTMLCS-issue-type.HTMLCS-warning,
|
|
316
|
-
#HTMLCS-wrapper .HTMLCS-issue-detail-list > li .HTMLCS-issue-type.HTMLCS-warning {
|
|
317
|
-
background-color: #C5A00C;
|
|
318
|
-
border-top-color: #F2D560;
|
|
319
|
-
}
|
|
320
|
-
|
|
321
|
-
#HTMLCS-wrapper .HTMLCS-issue-type.HTMLCS-warning:before {
|
|
322
|
-
background-position: 0 -16px;
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
#HTMLCS-wrapper .HTMLCS-issue-list > li > .HTMLCS-issue-type.HTMLCS-error,
|
|
326
|
-
#HTMLCS-wrapper .HTMLCS-issue-detail-list > li .HTMLCS-issue-type.HTMLCS-error {
|
|
327
|
-
background-color: #952424;
|
|
328
|
-
border-top-color: #C76161;
|
|
329
|
-
}
|
|
330
|
-
|
|
331
|
-
#HTMLCS-wrapper .HTMLCS-issue-list > li > .HTMLCS-issue-type.HTMLCS-notice,
|
|
332
|
-
#HTMLCS-wrapper .HTMLCS-issue-detail-list > li .HTMLCS-issue-type.HTMLCS-notice {
|
|
333
|
-
background-color: #6C6B72;
|
|
334
|
-
border-top-color: #828188;
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
#HTMLCS-wrapper .HTMLCS-issue-type.HTMLCS-notice:before {
|
|
338
|
-
background-position: 0 -32px;
|
|
339
|
-
}
|
|
340
|
-
|
|
341
|
-
#HTMLCS-wrapper .HTMLCS-issue-list > li > .HTMLCS-issue-title,
|
|
342
|
-
#HTMLCS-wrapper .HTMLCS-issue-detail-list > li .HTMLCS-issue-title {
|
|
343
|
-
color: #FFFFFF;
|
|
344
|
-
display: block;
|
|
345
|
-
}
|
|
346
|
-
#HTMLCS-wrapper .HTMLCS-issue-list > li > .HTMLCS-issue-title {
|
|
347
|
-
line-height: 1.2em;
|
|
348
|
-
text-align: left;
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
#HTMLCS-wrapper .HTMLCS-details > .HTMLCS-issue-list > li:hover {
|
|
352
|
-
background-color: #3B3B3B;
|
|
353
|
-
border-top-color: #5B5B5C;
|
|
354
|
-
cursor: pointer;
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
#HTMLCS-wrapper .HTMLCS-details > .HTMLCS-issue-detail-list > li {
|
|
358
|
-
display: inline-block;
|
|
359
|
-
vertical-align: top;
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
#HTMLCS-wrapper .HTMLCS-issue-detail-list {
|
|
363
|
-
}
|
|
364
|
-
|
|
365
|
-
#HTMLCS-wrapper .HTMLCS-issue-detail-list > li {
|
|
366
|
-
background-color: #2B2B2B;
|
|
367
|
-
border-top: 1px solid #4B4B4B;
|
|
368
|
-
color: #FFFFFF;
|
|
369
|
-
width: 300px;
|
|
370
|
-
max-height: 10em;
|
|
371
|
-
position: relative;
|
|
372
|
-
text-shadow: none;
|
|
373
|
-
font-size: 1.4em;
|
|
374
|
-
-moz-transition: margin 0.2s ease-in 0s;
|
|
375
|
-
-webkit-transition: margin 0.2s ease-in 0s;
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
#HTMLCS-wrapper .HTMLCS-issue-detail-list > li.HTMLCS-current {
|
|
379
|
-
max-height: inherit;
|
|
380
|
-
}
|
|
381
|
-
|
|
382
|
-
#HTMLCS-wrapper .HTMLCS-issue-detail-list .HTMLCS-issue-details {
|
|
383
|
-
position: relative;
|
|
384
|
-
display: block;
|
|
385
|
-
border-bottom: 1px solid #2b2b2b;
|
|
386
|
-
}
|
|
387
|
-
|
|
388
|
-
#HTMLCS-wrapper .HTMLCS-issue-detail-list > li .HTMLCS-issue-title {
|
|
389
|
-
font-size: 1.07em;
|
|
390
|
-
border-bottom: 1px solid #000;
|
|
391
|
-
padding: 0.8em 0 1.1em;
|
|
392
|
-
margin: 0 1.4em 0 2.8em;
|
|
393
|
-
}
|
|
394
|
-
|
|
395
|
-
#HTMLCS-wrapper .HTMLCS-issue-detail-list > li .HTMLCS-issue-wcag-ref {
|
|
396
|
-
border-top: 1px solid #5B5B5B;
|
|
397
|
-
padding-top: 1em;
|
|
398
|
-
text-shadow: none;
|
|
399
|
-
color: #FFFFFF;
|
|
400
|
-
padding: 0.7em 0 1.5em;
|
|
401
|
-
margin: 0 1.4em 0 2.8em;
|
|
402
|
-
}
|
|
403
|
-
|
|
404
|
-
#HTMLCS-wrapper .HTMLCS-issue-detail-list > li .HTMLCS-issue-wcag-ref > em {
|
|
405
|
-
color: #8F8F94;
|
|
406
|
-
background: none;
|
|
407
|
-
display: block;
|
|
408
|
-
font-style: normal;
|
|
409
|
-
font-weight: bold;
|
|
410
|
-
margin-top: 0.5em;
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
#HTMLCS-wrapper .HTMLCS-issue-detail-list > li .HTMLCS-issue-wcag-ref > a,
|
|
414
|
-
#HTMLCS-wrapper .HTMLCS-issue-detail-list > li .HTMLCS-issue-wcag-ref > a:visited {
|
|
415
|
-
border-bottom: 1px solid #777;
|
|
416
|
-
color: #DBDBE1;
|
|
417
|
-
display: inline-block;
|
|
418
|
-
font-style: normal;
|
|
419
|
-
text-decoration: none;
|
|
420
|
-
line-height: 1.2em;
|
|
421
|
-
margin-right: 0.3em;
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
#HTMLCS-wrapper .HTMLCS-issue-detail-list > li .HTMLCS-issue-wcag-ref > a:hover {
|
|
425
|
-
border-bottom-color: #87878E;
|
|
426
|
-
}
|
|
427
|
-
|
|
428
|
-
#HTMLCS-wrapper .HTMLCS-issue-detail-list > li .HTMLCS-issue-wcag-ref > a:after {
|
|
429
|
-
background: url("Images/HTMLCS-tools.png") no-repeat scroll 0 -48px transparent;
|
|
430
|
-
content: "";
|
|
431
|
-
display: inline-block;
|
|
432
|
-
opacity: 0.6;
|
|
433
|
-
filter: alpha(opacity=60);
|
|
434
|
-
height: 11px;
|
|
435
|
-
margin: 0 0 0 0.5em;
|
|
436
|
-
width: 12px;
|
|
437
|
-
}
|
|
438
|
-
|
|
439
|
-
#HTMLCS-wrapper .HTMLCS-issue-detail-list > li .HTMLCS-issue-wcag-ref > a:hover:after {
|
|
440
|
-
opacity: 1;
|
|
441
|
-
filter: alpha(opacity=100);
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
#HTMLCS-wrapper .HTMLCS-issue-source {
|
|
445
|
-
position: relative;
|
|
446
|
-
display: block;
|
|
447
|
-
background: url("Images/bgTexture1.gif") repeat scroll 0 0 #54535A;
|
|
448
|
-
border-top: 1px solid #6C6C6D;
|
|
449
|
-
font-size: 1em;
|
|
450
|
-
padding: 0.5em;
|
|
451
|
-
}
|
|
452
|
-
|
|
453
|
-
#HTMLCS-wrapper .HTMLCS-issue-source .HTMLCS-issue-source-header {
|
|
454
|
-
text-align: right;
|
|
455
|
-
font-size: 0.7em;
|
|
456
|
-
margin: 0 0 0.7em 0;
|
|
457
|
-
}
|
|
458
|
-
|
|
459
|
-
#HTMLCS-wrapper .HTMLCS-issue-source .HTMLCS-issue-source-header strong {
|
|
460
|
-
color: #9B99A5;
|
|
461
|
-
display: inline-block;
|
|
462
|
-
float: left;
|
|
463
|
-
font-size: 1.49em;
|
|
464
|
-
line-height: 1.8em;
|
|
465
|
-
padding-left: 0.2em;
|
|
466
|
-
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.6);
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
#HTMLCS-wrapper .HTMLCS-issue-source-inner {
|
|
470
|
-
background-color: rgba(0, 0, 0, 0.3);
|
|
471
|
-
border-radius: 0.4em;
|
|
472
|
-
box-shadow: 0 0 3px rgba(0, 0, 0, 0.4) inset, 0 1px 0 rgba(255, 255, 255, 0.15);
|
|
473
|
-
color: #787878;
|
|
474
|
-
font-family: Monaco, monospace;
|
|
475
|
-
font-size: 0.9em;
|
|
476
|
-
line-height: 1.4em;
|
|
477
|
-
margin: 0;
|
|
478
|
-
padding: 0.6em;
|
|
479
|
-
overflow: auto;
|
|
480
|
-
}
|
|
481
|
-
|
|
482
|
-
#HTMLCS-wrapper .HTMLCS-issue-source-inner-u2p {
|
|
483
|
-
padding: 0.35em;
|
|
484
|
-
clear: both;
|
|
485
|
-
color: white;
|
|
486
|
-
}
|
|
487
|
-
|
|
488
|
-
#HTMLCS-wrapper .HTMLCS-issue-source-not-supported {
|
|
489
|
-
color: white;
|
|
490
|
-
font-size: 1em;
|
|
491
|
-
line-height: 1.4em;
|
|
492
|
-
margin: 0 0 0.5em 0.2em;
|
|
493
|
-
overflow: auto;
|
|
494
|
-
}
|
|
495
|
-
|
|
496
|
-
#HTMLCS-wrapper .HTMLCS-issue-source-inner strong {
|
|
497
|
-
font-weight: normal;
|
|
498
|
-
color: #FFF;
|
|
499
|
-
}
|
|
500
|
-
|
|
501
|
-
#HTMLCS-wrapper .HTMLCS-navigation {
|
|
502
|
-
font-size: 1.5em;
|
|
503
|
-
line-height: 2em;
|
|
504
|
-
padding: 0.5em 0 0.6em;
|
|
505
|
-
text-align: center;
|
|
506
|
-
display: none;
|
|
507
|
-
}
|
|
508
|
-
|
|
509
|
-
#HTMLCS-wrapper .HTMLCS-page-number {
|
|
510
|
-
color: #EEEEEE;
|
|
511
|
-
display: inline-block;
|
|
512
|
-
font-size: 0.9em;
|
|
513
|
-
font-weight: bold;
|
|
514
|
-
padding: 0 1em;
|
|
515
|
-
text-shadow: none;
|
|
516
|
-
vertical-align: middle;
|
|
517
|
-
}
|
|
518
|
-
|
|
519
|
-
#HTMLCS-wrapper .HTMLCS-nav-button {
|
|
520
|
-
background-color: rgba(0, 0, 0, 0.3);
|
|
521
|
-
border-radius: 0.3em;
|
|
522
|
-
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
|
|
523
|
-
cursor: pointer;
|
|
524
|
-
display: inline-block;
|
|
525
|
-
height: 2.2em;
|
|
526
|
-
position: relative;
|
|
527
|
-
width: 2.5em;
|
|
528
|
-
}
|
|
529
|
-
|
|
530
|
-
#HTMLCS-wrapper .HTMLCS-nav-button.HTMLCS-previous:after,
|
|
531
|
-
#HTMLCS-wrapper .HTMLCS-nav-button.HTMLCS-next:after {
|
|
532
|
-
background: url("Images/HTMLCS-tools.png") no-repeat scroll 0 -237px transparent;
|
|
533
|
-
content: "";
|
|
534
|
-
height: 14px;
|
|
535
|
-
left: 50%;
|
|
536
|
-
margin: -7px 0 0 -6px;
|
|
537
|
-
position: absolute;
|
|
538
|
-
top: 50%;
|
|
539
|
-
width: 11px;
|
|
540
|
-
}
|
|
541
|
-
|
|
542
|
-
#HTMLCS-wrapper .HTMLCS-nav-button.HTMLCS-next:after {
|
|
543
|
-
background-position: 0 -253px;
|
|
544
|
-
margin-left: -5px;
|
|
545
|
-
}
|
|
546
|
-
|
|
547
|
-
#HTMLCS-wrapper .HTMLCS-nav-button.HTMLCS-disabled {
|
|
548
|
-
cursor: default;
|
|
549
|
-
filter: alpha(opacity=30);
|
|
550
|
-
opacity: 0.3;
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
#HTMLCS-wrapper .HTMLCS-button {
|
|
554
|
-
border: none;
|
|
555
|
-
box-shadow:
|
|
556
|
-
0 0 2px 0 rgba(0, 0, 0, 0.5),
|
|
557
|
-
0 1px 0 rgba(255, 255, 255, 0.8) inset,
|
|
558
|
-
0 -14px 16px -8px rgba(0,0,0,0.3) inset;
|
|
559
|
-
color: #2B2B2B;
|
|
560
|
-
background-color: #e9e9eb;
|
|
561
|
-
text-shadow: 0 1px 0 #FFFFFF;
|
|
562
|
-
border-radius: 0.25em;
|
|
563
|
-
cursor: pointer;
|
|
564
|
-
display: inline-block;
|
|
565
|
-
font-size: 1.6em;
|
|
566
|
-
line-height: 1.7em;
|
|
567
|
-
margin-left: 0.3em;
|
|
568
|
-
min-width: 1em;
|
|
569
|
-
padding: 0 0.5em;
|
|
570
|
-
position: relative;
|
|
571
|
-
text-align: center;
|
|
572
|
-
}
|
|
573
|
-
|
|
574
|
-
#HTMLCS-wrapper .HTMLCS-button-group {
|
|
575
|
-
display: inline-block;
|
|
576
|
-
margin-left: 0.6em;
|
|
577
|
-
}
|
|
578
|
-
|
|
579
|
-
#HTMLCS-wrapper .HTMLCS-button-group:first-child {
|
|
580
|
-
margin-left: 0;
|
|
581
|
-
}
|
|
582
|
-
|
|
583
|
-
#HTMLCS-wrapper .HTMLCS-button-group .HTMLCS-button {
|
|
584
|
-
border-radius: 0.1em 0.1em 0.1em 0.1em;
|
|
585
|
-
margin: 0;
|
|
586
|
-
}
|
|
587
|
-
|
|
588
|
-
#HTMLCS-wrapper .HTMLCS-button-group .HTMLCS-button.active, .HTMLCS-button-group .HTMLCS-button.selected {
|
|
589
|
-
border-radius: 0 0 0 0;
|
|
590
|
-
}
|
|
591
|
-
|
|
592
|
-
#HTMLCS-wrapper .HTMLCS-button-group .HTMLCS-button:first-child {
|
|
593
|
-
border-bottom-left-radius: 0.3em;
|
|
594
|
-
border-left: medium none !important;
|
|
595
|
-
border-top-left-radius: 0.3em;
|
|
596
|
-
}
|
|
597
|
-
|
|
598
|
-
#HTMLCS-wrapper .HTMLCS-button-group .HTMLCS-button:last-child {
|
|
599
|
-
border-bottom-right-radius: 0.3em;
|
|
600
|
-
border-top-right-radius: 0.3em;
|
|
601
|
-
}
|
|
602
|
-
|
|
603
|
-
#HTMLCS-wrapper .HTMLCS-button-icon {
|
|
604
|
-
background-image: url("Images/HTMLCS-tools.png");
|
|
605
|
-
height: 20px;
|
|
606
|
-
left: 50%;
|
|
607
|
-
margin: -10px 0 0 -12.5px;
|
|
608
|
-
position: absolute;
|
|
609
|
-
top: 50%;
|
|
610
|
-
width: 25px;
|
|
611
|
-
}
|
|
612
|
-
|
|
613
|
-
#HTMLCS-wrapper .HTMLCS-button-icon.HTMLCS-button-next {
|
|
614
|
-
background-position: -13px -259px;
|
|
615
|
-
}
|
|
616
|
-
|
|
617
|
-
#HTMLCS-wrapper .HTMLCS-button-icon.HTMLCS-button-previous {
|
|
618
|
-
background-position: -40px -259px;
|
|
619
|
-
}
|
|
620
|
-
|
|
621
|
-
#HTMLCS-wrapper .HTMLCS-button-icon.HTMLCS-button-pointer {
|
|
622
|
-
background-position: -13px -281px;
|
|
623
|
-
}
|
|
624
|
-
|
|
625
|
-
#HTMLCS-wrapper .HTMLCS-button-icon.HTMLCS-button-copy {
|
|
626
|
-
background-position: -13px -304px;
|
|
627
|
-
}
|
|
628
|
-
|
|
629
|
-
#HTMLCS-wrapper .HTMLCS-settings {
|
|
630
|
-
display: none;
|
|
631
|
-
background: url("Images/bgTexture1.gif") repeat scroll 0 0 #54535A;
|
|
632
|
-
color: #EEEEEE;
|
|
633
|
-
text-shadow: none;
|
|
634
|
-
|
|
635
|
-
border-radius: 0 0 0.75em 0.75em;
|
|
636
|
-
padding: 5px;
|
|
637
|
-
position: relative;
|
|
638
|
-
text-align: center;
|
|
639
|
-
z-index: 1;
|
|
640
|
-
}
|
|
641
|
-
|
|
642
|
-
#HTMLCS-settings-recheck {
|
|
643
|
-
text-align: center;
|
|
644
|
-
}
|
|
645
|
-
|
|
646
|
-
#HTMLCS-wrapper .HTMLCS-settings h1 {
|
|
647
|
-
color: #FFFFFF;
|
|
648
|
-
font-size: 16px;
|
|
649
|
-
font-weight: normal;
|
|
650
|
-
margin: 0.1em 0 0.5em;
|
|
651
|
-
}
|
|
652
|
-
|
|
653
|
-
#HTMLCS-wrapper .HTMLCS-settings p {
|
|
654
|
-
color: #666666;
|
|
655
|
-
font-size: 12px;
|
|
656
|
-
margin: 0.5em 0 1.5em;
|
|
657
|
-
}
|
|
658
|
-
|
|
659
|
-
#HTMLCS-wrapper .HTMLCS-settings button {
|
|
660
|
-
font-family: Arial,Sans Serif;
|
|
661
|
-
}
|
|
662
|
-
|
|
663
|
-
#HTMLCS-wrapper .HTMLCS-checkbox {
|
|
664
|
-
display: block;
|
|
665
|
-
position: relative;
|
|
666
|
-
clear: both;
|
|
667
|
-
margin-bottom: 0.6em;
|
|
668
|
-
text-align: left;
|
|
669
|
-
text-shadow: none;
|
|
670
|
-
color: #FFF;
|
|
671
|
-
background-color: rgba(255, 255, 255, 0.06);
|
|
672
|
-
border: 1px solid #393939;
|
|
673
|
-
border-radius: 0.4em 0.4em 0.4em 0.4em;
|
|
674
|
-
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 0 rgba(255, 255, 255, 0.1);
|
|
675
|
-
padding: 0 0.8em;
|
|
676
|
-
font-size: 1.2em;
|
|
677
|
-
cursor: pointer;
|
|
678
|
-
}
|
|
679
|
-
|
|
680
|
-
#HTMLCS-wrapper .HTMLCS-checkbox.disabled {
|
|
681
|
-
opacity: 0.4;
|
|
682
|
-
filter: alpha(opacity=40);
|
|
683
|
-
cursor: default;
|
|
684
|
-
}
|
|
685
|
-
|
|
686
|
-
#HTMLCS-wrapper .HTMLCS-checkbox-title {
|
|
687
|
-
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
|
|
688
|
-
color: #ddd;
|
|
689
|
-
white-space: nowrap;
|
|
690
|
-
font-size: 1.1em;
|
|
691
|
-
line-height: 2.5em;
|
|
692
|
-
}
|
|
693
|
-
|
|
694
|
-
#HTMLCS-wrapper .HTMLCS-checkbox-switch {
|
|
695
|
-
font-size: 1.2em;
|
|
696
|
-
position: absolute;
|
|
697
|
-
overflow: hidden;
|
|
698
|
-
right: 0.6em;
|
|
699
|
-
width: 3.2em;
|
|
700
|
-
height: 1.6em;
|
|
701
|
-
top: 50%;
|
|
702
|
-
margin-top: -0.8em;
|
|
703
|
-
cursor: pointer;
|
|
704
|
-
background-color: #2b2b2b;
|
|
705
|
-
border-radius: 0.8em;
|
|
706
|
-
box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.6) inset, 0 1px 0 rgba(255, 255, 255, 0.2);
|
|
707
|
-
-moz-transition: background-color 0.2s ease;
|
|
708
|
-
-webkit-transition: background-color 0.2s ease;
|
|
709
|
-
box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.8) inset, 0 -2px 2px -2px #000000 inset, 0 1px 0 rgba(255, 255, 255, 0.2), 1px 0px 0 rgba(0, 0, 0, 0.3) inset, -1px 0px 0 rgba(0, 0, 0, 0.3) inset;
|
|
710
|
-
}
|
|
711
|
-
|
|
712
|
-
#HTMLCS-wrapper .HTMLCS-checkbox.active .HTMLCS-checkbox-switch {
|
|
713
|
-
background-color: #205caf;
|
|
714
|
-
}
|
|
715
|
-
|
|
716
|
-
#HTMLCS-wrapper .HTMLCS-checkbox.disabled * {
|
|
717
|
-
cursor: default;
|
|
718
|
-
}
|
|
719
|
-
|
|
720
|
-
#HTMLCS-wrapper .HTMLCS-checkbox-slider {
|
|
721
|
-
-moz-transition: left 0.2s ease-out;
|
|
722
|
-
-webkit-transition: left 0.2s ease-out;
|
|
723
|
-
content: "";
|
|
724
|
-
position: absolute;
|
|
725
|
-
width: 1.3em;
|
|
726
|
-
height: 1.3em;
|
|
727
|
-
border-radius: 0.65em;
|
|
728
|
-
left: 0.15em;
|
|
729
|
-
top: 50%;
|
|
730
|
-
margin-top: -0.65em;
|
|
731
|
-
background-color: #65636b;
|
|
732
|
-
box-shadow: 0 0 2px #000000, 0 1px 0 rgba(255, 255, 255, 0.3) inset;
|
|
733
|
-
}
|
|
734
|
-
|
|
735
|
-
#HTMLCS-wrapper .HTMLCS-checkbox.active .HTMLCS-checkbox-slider {
|
|
736
|
-
left: 1.7em;
|
|
737
|
-
background-color: #d9d9de;
|
|
738
|
-
box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
|
|
739
|
-
background: -webkit-gradient(linear, left top, left bottom, from(#e9e9eb), to(#c2c2cb));
|
|
740
|
-
background: -moz-linear-gradient(top, #e9e9eb, #c2c2cb);
|
|
741
|
-
}
|
|
742
|
-
|
|
743
|
-
#HTMLCS-wrapper .HTMLCS-checkbox-switch:before {
|
|
744
|
-
content: "";
|
|
745
|
-
display: block;
|
|
746
|
-
opacity: 0;
|
|
747
|
-
filter: alpha(opacity=0);
|
|
748
|
-
position: absolute;
|
|
749
|
-
width: 10px;
|
|
750
|
-
height: 7px;
|
|
751
|
-
background: transparent url("Images/HTMLCS-tools.png") 0 -124px no-repeat;
|
|
752
|
-
left: 0.5em;
|
|
753
|
-
top: 51%;
|
|
754
|
-
margin-top: -3px;
|
|
755
|
-
-moz-transition: 0.2s opacity ease-in;
|
|
756
|
-
-webkit-transition: 0.2s opacity ease-in;
|
|
757
|
-
}
|
|
758
|
-
|
|
759
|
-
#HTMLCS-wrapper .HTMLCS-checkbox.active .HTMLCS-checkbox-switch:before {
|
|
760
|
-
opacity: 1;
|
|
761
|
-
}
|
|
762
|
-
|
|
763
|
-
#HTMLCS-wrapper .HTMLCS-checkbox input {
|
|
764
|
-
visibility: hidden;
|
|
765
|
-
}
|
|
766
|
-
|
|
767
|
-
#HTMLCS-wrapper.showing-issue-list .HTMLCS-inner-wrapper {
|
|
768
|
-
display: inline-block;
|
|
769
|
-
}
|
|
770
|
-
|
|
771
|
-
#HTMLCS-wrapper.showing-issue-list .HTMLCS-details {
|
|
772
|
-
display: block;
|
|
773
|
-
}
|
|
774
|
-
|
|
775
|
-
#HTMLCS-wrapper.showing-issue-list .HTMLCS-navigation {
|
|
776
|
-
display: block;
|
|
777
|
-
}
|
|
778
|
-
|
|
779
|
-
#HTMLCS-wrapper.showing-settings .HTMLCS-settings {
|
|
780
|
-
display: block;
|
|
781
|
-
}
|
|
782
|
-
|
|
783
|
-
#HTMLCS-wrapper .HTMLCS-summary-detail {
|
|
784
|
-
display: none;
|
|
785
|
-
}
|
|
786
|
-
|
|
787
|
-
#HTMLCS-wrapper .HTMLCS-summary-detail .HTMLCS-summary-left {
|
|
788
|
-
font-weight: bold;
|
|
789
|
-
}
|
|
790
|
-
|
|
791
|
-
#HTMLCS-wrapper .HTMLCS-issue-detail-list.HTMLCS-transition-disabled > li {
|
|
792
|
-
-moz-transition: margin 0s ease 0s;
|
|
793
|
-
-webkit-transition: margin 0s ease 0s;
|
|
794
|
-
}
|
|
795
|
-
|
|
796
|
-
/*
|
|
797
|
-
Pointer
|
|
798
|
-
*/
|
|
799
|
-
.HTMLCS-pointer {
|
|
800
|
-
height: 62px;
|
|
801
|
-
left: 0;
|
|
802
|
-
position: absolute;
|
|
803
|
-
top: 0;
|
|
804
|
-
width: 50px;
|
|
805
|
-
z-index: 9999;
|
|
806
|
-
background: transparent url("Images/HTMLCS-tools.png") -16px -64px no-repeat;
|
|
807
|
-
}
|
|
808
|
-
.HTMLCS-pointer-up {
|
|
809
|
-
background-position: -16px 0;
|
|
810
|
-
}
|
|
811
|
-
|
|
812
|
-
.HTMLCS-pointer-left {
|
|
813
|
-
width: 62px;
|
|
814
|
-
height: 50px;
|
|
815
|
-
background-position: 0 -133px;
|
|
816
|
-
}
|
|
817
|
-
|
|
818
|
-
.HTMLCS-pointer-right {
|
|
819
|
-
width: 62px;
|
|
820
|
-
height: 50px;
|
|
821
|
-
background-position: 0 -185px;
|
|
822
|
-
}
|
|
823
|
-
|
|
824
|
-
.HTMLCS-pointer-hidden {
|
|
825
|
-
opacity: 0;
|
|
826
|
-
filter: alpha(opacity=0);
|
|
827
|
-
display: none;
|
|
828
|
-
}
|
|
829
|
-
|
|
830
|
-
.HTMLCS-pointer.HTMLCS-pointer-hidden-block {
|
|
831
|
-
opacity: 0;
|
|
832
|
-
filter: alpha(opacity=0);
|
|
833
|
-
display: block;
|
|
834
|
-
}
|
|
835
|
-
|
|
836
|
-
#HTMLCS-wrapper #HTMLCS-settings-use-standard label {
|
|
837
|
-
color: #FFF;
|
|
838
|
-
display: inline;
|
|
839
|
-
}
|
|
840
|
-
#HTMLCS-wrapper #HTMLCS-settings-use-standard > select {
|
|
841
|
-
float: right;
|
|
842
|
-
margin-top: -0.3em;
|
|
843
|
-
}
|
|
844
|
-
#HTMLCS-wrapper #HTMLCS-settings-use-standard > select > option {
|
|
845
|
-
padding: 0.1em 5px;
|
|
846
|
-
}
|
|
847
|
-
|
|
848
|
-
#HTMLCS-wrapper #HTMLCS-settings-use-standard:after {
|
|
849
|
-
clear: both;
|
|
850
|
-
display: block;
|
|
851
|
-
}
|
|
852
|
-
|
|
853
|
-
#HTMLCS-wrapper #HTMLCS-settings-use-standard {
|
|
854
|
-
-moz-box-sizing: border-box;
|
|
855
|
-
border: 1px solid #393939;
|
|
856
|
-
border-radius: 0.4em 0.4em 0.4em 0.4em;
|
|
857
|
-
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset, 0 1px 0 rgba(255, 255, 255, 0.1);
|
|
858
|
-
color: #FFFFFF;
|
|
859
|
-
font-size: 1.3em;
|
|
860
|
-
margin: 0 0 1em;
|
|
861
|
-
padding: 0.7em 0.7em 0.8em;
|
|
862
|
-
text-align: left;
|
|
863
|
-
text-shadow: 0 -1px rgba(0, 0, 0, 0.3);
|
|
864
|
-
}
|
|
865
|
-
|
|
866
|
-
#HTMLCS-wrapper #HTMLCS-settings-view-report {
|
|
867
|
-
background-color: #3A3940;
|
|
868
|
-
border: 1px solid #2B2B2B;
|
|
869
|
-
border-radius: 0.3em 0.3em 0.3em 0.3em;
|
|
870
|
-
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 0 rgba(255, 255, 255, 0.15), 0 -1.4em 1.6em rgba(0, 0, 0, 0.4) inset;
|
|
871
|
-
color: #FFF;
|
|
872
|
-
cursor: pointer;
|
|
873
|
-
font-size: 1.9em;
|
|
874
|
-
line-height: 3em;
|
|
875
|
-
position: relative;
|
|
876
|
-
text-shadow: 0 -1px 0 #000;
|
|
877
|
-
-moz-transition: opacity 0.3s ease;
|
|
878
|
-
-webkit-transition: opacity 0.3s ease;
|
|
879
|
-
opacity: 1;
|
|
880
|
-
text-align: center;
|
|
881
|
-
}
|
|
882
|
-
|
|
883
|
-
#HTMLCS-wrapper #HTMLCS-settings-view-report:after {
|
|
884
|
-
background: url("Images/HTMLCS-tools.png") no-repeat scroll 0 -108px transparent;
|
|
885
|
-
content: "";
|
|
886
|
-
height: 14px;
|
|
887
|
-
margin-top: -7px;
|
|
888
|
-
position: absolute;
|
|
889
|
-
right: 1em;
|
|
890
|
-
top: 50%;
|
|
891
|
-
width: 9px;
|
|
892
|
-
}
|
|
893
|
-
|
|
894
|
-
#HTMLCS-wrapper #HTMLCS-settings-view-report:hover {
|
|
895
|
-
background-color: #2B2B2B;
|
|
896
|
-
}
|
|
897
|
-
|
|
898
|
-
#HTMLCS-wrapper.HTMLCS-processing #HTMLCS-settings-view-report,
|
|
899
|
-
#HTMLCS-wrapper #HTMLCS-settings-view-report.disabled {
|
|
900
|
-
cursor: default;
|
|
901
|
-
filter: alpha(opacity=40);
|
|
902
|
-
opacity: 0.4;
|
|
903
|
-
}
|
|
904
|
-
|
|
905
|
-
#HTMLCS-wrapper .HTMLCS-button.disabled {
|
|
906
|
-
cursor: default;
|
|
907
|
-
filter: alpha(opacity=30);
|
|
908
|
-
opacity: 0.3;
|
|
909
|
-
}
|
|
910
|
-
|
|
911
|
-
#HTMLCS-wrapper #HTMLCS-settings-issue-count {
|
|
912
|
-
text-align: center;
|
|
913
|
-
}
|
|
914
|
-
|
|
915
|
-
#HTMLCS-wrapper.HTMLCS-processing .HTMLCS-tile-text > strong {
|
|
916
|
-
visibility: hidden;
|
|
917
|
-
}
|
|
918
|
-
|
|
919
|
-
#HTMLCS-wrapper.HTMLCS-processing .HTMLCS-tile-text:before {
|
|
920
|
-
background: url("Images/summaryLoader-error.gif") no-repeat scroll 50% 50% transparent;
|
|
921
|
-
content: "";
|
|
922
|
-
display: block;
|
|
923
|
-
height: 30px;
|
|
924
|
-
left: 50%;
|
|
925
|
-
margin-left: -15px;
|
|
926
|
-
position: absolute;
|
|
927
|
-
top: 0.5em;
|
|
928
|
-
width: 30px;
|
|
929
|
-
}
|
|
930
|
-
|
|
931
|
-
#HTMLCS-wrapper.HTMLCS-processing .HTMLCS-issue-tile.HTMLCS-warning .HTMLCS-tile-text:before {
|
|
932
|
-
background-image: url("Images/summaryLoader-warning.gif");
|
|
933
|
-
}
|
|
934
|
-
|
|
935
|
-
#HTMLCS-wrapper.HTMLCS-processing .HTMLCS-issue-tile.HTMLCS-notice .HTMLCS-tile-text:before {
|
|
936
|
-
background-image: url("Images/summaryLoader-notice.gif");
|
|
937
|
-
}
|
|
938
|
-
|
|
939
|
-
#HTMLCS-wrapper #HTMLCS-settings-issue-count-help {
|
|
940
|
-
clear: both;
|
|
941
|
-
color: #AAA;
|
|
942
|
-
display: block;
|
|
943
|
-
font-size: 1.3em;
|
|
944
|
-
text-align: center;
|
|
945
|
-
padding: 1em 0;
|
|
946
|
-
text-shadow: 0 -1px rgba(0, 0, 0, 0.3);
|
|
947
|
-
}
|
|
948
|
-
|
|
949
|
-
#HTMLCS-wrapper #HTMLCS-settings-updated-notification {
|
|
950
|
-
color: #FFF;
|
|
951
|
-
display: block;
|
|
952
|
-
font-size: 1.3em;
|
|
953
|
-
text-align: left;
|
|
954
|
-
padding: 1em;
|
|
955
|
-
}
|
|
956
|
-
|
|
957
|
-
#HTMLCS-wrapper #HTMLCS-settings-updated-notification a,
|
|
958
|
-
#HTMLCS-wrapper #HTMLCS-settings-updated-notification a:visited {
|
|
959
|
-
border-bottom: 1px solid #777;
|
|
960
|
-
color: #DBDBE1;
|
|
961
|
-
display: inline-block;
|
|
962
|
-
font-style: normal;
|
|
963
|
-
text-decoration: none;
|
|
964
|
-
line-height: 1.2em;
|
|
965
|
-
margin-right: 0.3em;
|
|
966
|
-
}
|
|
967
|
-
|
|
968
|
-
#HTMLCS-wrapper #HTMLCS-settings-updated-notification a:hover {
|
|
969
|
-
border-bottom-color: #87878E;
|
|
970
|
-
}
|
|
971
|
-
|
|
972
|
-
#HTMLCS-wrapper #HTMLCS-settings-updated-notification a:after {
|
|
973
|
-
background: url("Images/HTMLCS-tools.png") no-repeat scroll 0 -48px transparent;
|
|
974
|
-
content: "";
|
|
975
|
-
display: inline-block;
|
|
976
|
-
opacity: 0.6;
|
|
977
|
-
filter: alpha(opacity=60);
|
|
978
|
-
height: 11px;
|
|
979
|
-
margin: 0 0 0 0.5em;
|
|
980
|
-
width: 12px;
|
|
981
|
-
}
|
|
982
|
-
|
|
983
|
-
#HTMLCS-wrapper #HTMLCS-settings-updated-notification a:hover:after {
|
|
984
|
-
opacity: 1;
|
|
985
|
-
filter: alpha(opacity=100);
|
|
986
|
-
}
|
|
987
|
-
|
|
988
|
-
#HTMLCS-wrapper .HTMLCS-issue-tile {
|
|
989
|
-
-moz-box-sizing: border-box;
|
|
990
|
-
display: inline-block;
|
|
991
|
-
margin-left: 0.5em;
|
|
992
|
-
width: 31%;
|
|
993
|
-
text-align: center;
|
|
994
|
-
}
|
|
995
|
-
|
|
996
|
-
#HTMLCS-wrapper .HTMLCS-issue-tile:first-child {
|
|
997
|
-
margin-left: 0;
|
|
998
|
-
}
|
|
999
|
-
|
|
1000
|
-
#HTMLCS-wrapper .HTMLCS-issue-tile.HTMLCS-error > .HTMLCS-tile-text {
|
|
1001
|
-
background-color: #8B2222;
|
|
1002
|
-
}
|
|
1003
|
-
|
|
1004
|
-
#HTMLCS-wrapper .HTMLCS-issue-tile.HTMLCS-warning > .HTMLCS-tile-text {
|
|
1005
|
-
background-color: #B3913A;
|
|
1006
|
-
}
|
|
1007
|
-
|
|
1008
|
-
#HTMLCS-wrapper .HTMLCS-issue-tile.HTMLCS-notice > .HTMLCS-tile-text {
|
|
1009
|
-
background-color: #66656B;
|
|
1010
|
-
}
|
|
1011
|
-
|
|
1012
|
-
#HTMLCS-wrapper .HTMLCS-issue-tile > .HTMLCS-tile-text:after {
|
|
1013
|
-
background: url("Images/HTMLCS-tools.png") no-repeat scroll 0 0 transparent;
|
|
1014
|
-
bottom: 0.6em;
|
|
1015
|
-
content: "";
|
|
1016
|
-
height: 14px;
|
|
1017
|
-
left: 50%;
|
|
1018
|
-
margin: -7px 0 0 -7px;
|
|
1019
|
-
position: absolute;
|
|
1020
|
-
width: 14px;
|
|
1021
|
-
}
|
|
1022
|
-
|
|
1023
|
-
#HTMLCS-wrapper .HTMLCS-issue-tile.HTMLCS-warning > .HTMLCS-tile-text:after {
|
|
1024
|
-
background-position: 0 -16px;
|
|
1025
|
-
}
|
|
1026
|
-
|
|
1027
|
-
#HTMLCS-wrapper .HTMLCS-issue-tile.HTMLCS-notice > .HTMLCS-tile-text:after {
|
|
1028
|
-
background-position: 0 -32px;
|
|
1029
|
-
}
|
|
1030
|
-
|
|
1031
|
-
#HTMLCS-wrapper .HTMLCS-tile-text > strong {
|
|
1032
|
-
background: transparent;
|
|
1033
|
-
font-size: 1.7em;
|
|
1034
|
-
color: #FFF;
|
|
1035
|
-
display: block;
|
|
1036
|
-
text-align: center;
|
|
1037
|
-
}
|
|
1038
|
-
|
|
1039
|
-
#HTMLCS-wrapper .HTMLCS-issue-tile > .HTMLCS-tile-text {
|
|
1040
|
-
border: 1px solid #393939;
|
|
1041
|
-
border-bottom: none;
|
|
1042
|
-
border-radius: 0.3em 0.3em 0 0;
|
|
1043
|
-
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset;
|
|
1044
|
-
color: #FFFFFF;
|
|
1045
|
-
display: block;
|
|
1046
|
-
font-size: 1.7em;
|
|
1047
|
-
line-height: 1.5em;
|
|
1048
|
-
padding: 0.9em 0 1.8em;
|
|
1049
|
-
position: relative;
|
|
1050
|
-
text-shadow: 0 -1px rgba(0, 0, 0, 0.3);
|
|
1051
|
-
text-align: center;
|
|
1052
|
-
}
|
|
1053
|
-
|
|
1054
|
-
#HTMLCS-wrapper .HTMLCS-issue-tile > .HTMLCS-checkbox {
|
|
1055
|
-
border-radius: 0 0 0.4em 0.4em;
|
|
1056
|
-
margin: 0;
|
|
1057
|
-
min-height: 2.7em;
|
|
1058
|
-
}
|
|
1059
|
-
|
|
1060
|
-
#HTMLCS-wrapper .HTMLCS-issue-tile > .HTMLCS-checkbox:after {
|
|
1061
|
-
clear: both;
|
|
1062
|
-
content: "";
|
|
1063
|
-
display: block;
|
|
1064
|
-
}
|
|
1065
|
-
|
|
1066
|
-
#HTMLCS-wrapper .HTMLCS-issue-tile .HTMLCS-checkbox-switch {
|
|
1067
|
-
margin-right: -1.6em;
|
|
1068
|
-
right: 50%;
|
|
1069
|
-
}
|