-
Notifications
You must be signed in to change notification settings - Fork 2
/
csslinterresutlt1md
2741 lines (2740 loc) · 379 KB
/
csslinterresutlt1md
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
| line | column | title | description | browser
-- | -- | -- | -- | -- | --
| 5 | 1 | Parsing Errors | Unknown @ rule: @define-color.@define-color theme_fg_color rgba(255,255,255,0.96); | All
| 81 | 33 | Parsing Errors | Expected RBRACE at line 81, col 33. -gtk-icon-transform: rotate(1turn); } } | All
| 1281 | 33 | Parsing Errors | Expected RBRACE at line 1281, col 33. -gtk-icon-transform: rotate(1turn); } } | All
| 5909 | 19 | Parsing Errors | Expected RBRACE at line 5909, col 19. background-color: #F04A50; | All
| 5937 | 19 | Parsing Errors | Expected RBRACE at line 5937, col 19. background-color: #F04A50; | All
| 5951 | 19 | Parsing Errors | Expected RBRACE at line 5951, col 19. background-color: #F04A50; | All
| 5965 | 19 | Parsing Errors | Expected RBRACE at line 5965, col 19. background-color: #F04A50; | All
| 6899 | 8 | Parsing Errors | Expected COLON at line 6899, col 8.infobar.error button.sidebar-button, | All
| 9615 | 31 | Parsing Errors | Expected RBRACE at line 9615, col 31. -gtk-icon-transform: rotate(0turn); } | All
| 9620 | 32 | Parsing Errors | Expected RBRACE at line 9620, col 32. -gtk-icon-transform: rotate(-0.5turn); } | All
| 72 | 5 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(105, 105, 105, 0.3); | IE6,IE7,IE8
| 76 | 5 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(105, 105, 105, 0.3); | IE6,IE7,IE8
| 77 | 5 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(0, 0, 0, 0.45); } } | IE6,IE7,IE8
| 85 | 5 | Require use of known properties | Expected (<bg-image>#) but found '-gtk-gradient(radial , center center , 0 , center center , 0.01 , to(#ff4d0d) , to(transparent))'. background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#ff4d0d), to(transparent)); } | All
| 87 | 5 | Require use of known properties | Expected (<bg-image>#) but found '-gtk-gradient(radial , center center , 0 , center center , 0.5 , to(#ff4d0d) , to(transparent))'. background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#ff4d0d), to(transparent)); } } | All
| 95 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(72, 72, 72, 1);} | IE6,IE7,IE8
| 97 | 1 | Disallow adjoining classes | Don't use adjoining classes..popup.background { | IE6
| 98 | 4 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(72, 72, 72, 1); | IE6,IE7,IE8
| 108 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(77, 77, 77, 1); | IE6,IE7,IE8
| 117 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 118 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 119 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 120 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); } | All
| 127 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 128 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 129 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 130 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); } | All
| 135 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3); } | IE6,IE7,IE8
| 141 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 142 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 143 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 144 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); } | All
| 160 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 161 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 162 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 163 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 164 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color:rgba(83,83,83,1); | IE6,IE7,IE8
| 171 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 172 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 173 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 174 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 175 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color:rgba(83,83,83,1); | IE6,IE7,IE8
| 243 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 244 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 245 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 246 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 247 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(83,83,83,1); | IE6,IE7,IE8
| 255 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 256 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 257 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 258 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 259 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color:rgba(83,83,83,1); | IE6,IE7,IE8
| 267 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 268 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 269 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 270 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 271 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(255,77,13,1); } | IE6,IE7,IE8
| 275 | 4 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,97,13,1);} | IE6,IE7,IE8
| 279 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,97,13,1); } | IE6,IE7,IE8
| 283 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,97,13,1); } | IE6,IE7,IE8
| 295 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 296 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 297 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 298 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 305 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 306 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 307 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 308 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 309 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(255,57,13,1); | IE6,IE7,IE8
| 316 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 317 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 318 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 319 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 320 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(255,57,13,1); | IE6,IE7,IE8
| 327 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 328 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 329 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 330 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 331 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(255,57,13,1); | IE6,IE7,IE8
| 336 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,97,13,1); } | IE6,IE7,IE8
| 340 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,97,13,1); } | IE6,IE7,IE8
| 346 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 347 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 348 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 349 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 350 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(255,77,13,1); | IE6,IE7,IE8
| 355 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,97,13,1); } | IE6,IE7,IE8
| 359 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,97,13,1); } | IE6,IE7,IE8
| 363 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,97,13,1); } | IE6,IE7,IE8
| 424 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(77, 77, 77, 1); } | IE6,IE7,IE8
| 430 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 431 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 432 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 433 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 434 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color:rgba(83,83,83,1); | IE6,IE7,IE8
| 441 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 442 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 443 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 444 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 445 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(83,83,83,1); | IE6,IE7,IE8
| 454 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(77, 77, 77, 1); } | IE6,IE7,IE8
| 460 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 461 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 462 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 463 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 464 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(255,77,13,1); } | IE6,IE7,IE8
| 470 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 471 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 472 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 473 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 474 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(255,77,13,1); } | IE6,IE7,IE8
| 478 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,97,13,1); | IE6,IE7,IE8
| 480 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 481 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 482 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 483 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05);} | All
| 487 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,97,13,1); | IE6,IE7,IE8
| 489 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 490 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 491 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 492 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05);} | All
| 501 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(77, 77, 77, 1); } | IE6,IE7,IE8
| 507 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 508 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 509 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 510 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 511 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(255,77,13,1); | IE6,IE7,IE8
| 518 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 519 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 520 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 521 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 522 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(255,77,13,1); | IE6,IE7,IE8
| 532 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(25, 84, 173, 0.2);} | IE6,IE7,IE8
| 537 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(25, 84, 173, 0.2);} | IE6,IE7,IE8
| 546 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(25, 84, 173, 0.2); } | IE6,IE7,IE8
| 557 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 558 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 559 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 560 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 561 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(255,77,13,1);} | IE6,IE7,IE8
| 565 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,97,13,1); } | IE6,IE7,IE8
| 575 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(25, 84, 173, 0.2); } | IE6,IE7,IE8
| 581 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(77, 77, 77, 1);} | IE6,IE7,IE8
| 591 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(77, 77, 77, 1); } | IE6,IE7,IE8
| 600 | 3 | Require fallback colors | Fallback border-top-color (hex or RGB) should precede RGBA border-top-color. border-top-color: rgba(0, 0, 0, 0.1); } | IE6,IE7,IE8
| 601 | 3 | Disallow universal selector | The universal selector (*) is known to be slow. * { | All
| 614 | 3 | Require fallback colors | Fallback border-top-color (hex or RGB) should precede RGBA border-top-color. border-top-color: rgba(0,0,0, 0.1); } | IE6,IE7,IE8
| 620 | 3 | Require fallback colors | Fallback border-top-color (hex or RGB) should precede RGBA border-top-color. border-top-color: rgba(0,0,0, 0.1); } | IE6,IE7,IE8
| 624 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.55); } | IE6,IE7,IE8
| 628 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,97,13,1); } | IE6,IE7,IE8
| 632 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,97,13,1); } | IE6,IE7,IE8
| 638 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.separator { | IE6
| 641 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(0, 0, 0, 0.1); } | IE6,IE7,IE8
| 649 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view:drop(active).after { | IE6
| 649 | 1 | Disallow overqualified elements | Element (treeview.view:drop(active).after) is overqualified, just use .after without element name.treeview.view:drop(active).after { | All
| 653 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view:drop(active).before { | IE6
| 653 | 1 | Disallow overqualified elements | Element (treeview.view:drop(active).before) is overqualified, just use .before without element name.treeview.view:drop(active).before { | All
| 657 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.expander { | IE6
| 662 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.expander:dir(rtl) { | IE6
| 662 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.expander:dir(rtl) { | IE6
| 666 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.expander:hover { | IE6
| 666 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.expander:hover { | IE6
| 670 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.expander:selected { | IE6
| 670 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.expander:selected { | IE6
| 674 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.expander:selected:hover { | IE6
| 674 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.expander:selected:hover { | IE6
| 674 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.expander:selected:hover { | IE6
| 678 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 679 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 680 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 681 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); } | All
| 683 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.expander:checked { | IE6
| 683 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.expander:checked { | IE6
| 687 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.progressbar{ | IE6
| 691 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(56,60,57,1); } | IE6,IE7,IE8
| 693 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.progressbar:focus { | IE6
| 693 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.progressbar:focus { | IE6
| 697 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(56,60,57,1); } | IE6,IE7,IE8
| 699 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.progressbar:selected{ | IE6
| 699 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.progressbar:selected{ | IE6
| 701 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(56,60,57,1); | IE6,IE7,IE8
| 705 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.progressbar:selected:focus{ | IE6
| 705 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.progressbar:selected:focus{ | IE6
| 705 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.progressbar:selected:focus{ | IE6
| 707 | 4 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(56,60,57,1); | IE6,IE7,IE8
| 711 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.progressbar:focus:selected{ | IE6
| 711 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.progressbar:focus:selected{ | IE6
| 711 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.progressbar:focus:selected{ | IE6
| 713 | 4 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(56,60,57,1); | IE6,IE7,IE8
| 717 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.progressbar:focus:selected:focus { | IE6
| 717 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.progressbar:focus:selected:focus { | IE6
| 717 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.progressbar:focus:selected:focus { | IE6
| 717 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.progressbar:focus:selected:focus { | IE6
| 719 | 4 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(56,60,57,1); | IE6,IE7,IE8
| 722 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.trough { | IE6
| 729 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.trough:selected{ | IE6
| 729 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.trough:selected{ | IE6
| 732 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(0, 0, 0, 0.2); | IE6,IE7,IE8
| 736 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.trough:selected:focus { | IE6
| 736 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.trough:selected:focus { | IE6
| 736 | 1 | Disallow adjoining classes | Don't use adjoining classes.treeview.view.trough:selected:focus { | IE6
| 739 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(0, 0, 0, 0.2); | IE6,IE7,IE8
| 752 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(77, 77, 77, 1); | IE6,IE7,IE8
| 768 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(77, 77, 77, 1); } | IE6,IE7,IE8
| 772 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(77, 77, 77, 1); } | IE6,IE7,IE8
| 779 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(255,255,255, 0.5); | IE6,IE7,IE8
| 793 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 794 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 795 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 796 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 797 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(83,83,83,1); | IE6,IE7,IE8
| 807 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 808 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 809 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 810 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 811 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(83,83,83,1); | IE6,IE7,IE8
| 821 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 822 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 823 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 824 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 825 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(83,83,83,1); | IE6,IE7,IE8
| 835 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 836 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 837 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 838 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 839 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(83,83,83,1); | IE6,IE7,IE8
| 843 | 15 | Disallow adjoining classes | Don't use adjoining classes.treeview.view header.button.dnd{ | IE6
| 849 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 850 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 851 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 852 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 853 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(83,83,83,1); | IE6,IE7,IE8
| 857 | 15 | Disallow adjoining classes | Don't use adjoining classes.treeview.view header.button.dnd:selected{ | IE6
| 857 | 15 | Disallow adjoining classes | Don't use adjoining classes.treeview.view header.button.dnd:selected{ | IE6
| 863 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 864 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 865 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 866 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 867 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(83,83,83,1); | IE6,IE7,IE8
| 871 | 15 | Disallow adjoining classes | Don't use adjoining classes.treeview.view header.button.dnd:hover{ | IE6
| 871 | 15 | Disallow adjoining classes | Don't use adjoining classes.treeview.view header.button.dnd:hover{ | IE6
| 877 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 878 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 879 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 880 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 881 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(83,83,83,1); | IE6,IE7,IE8
| 885 | 15 | Disallow adjoining classes | Don't use adjoining classes.treeview.view header.button.dnd:active { | IE6
| 885 | 15 | Disallow adjoining classes | Don't use adjoining classes.treeview.view header.button.dnd:active { | IE6
| 891 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 892 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 893 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 894 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 895 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(83,83,83,1); | IE6,IE7,IE8
| 1005 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(77, 77, 77, 1); } | IE6,IE7,IE8
| 1011 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(38, 121, 219, 0.2); } | IE6,IE7,IE8
| 1013 | 1 | Disallow adjoining classes | Don't use adjoining classes..view.content-view.check:not(list){ | IE6
| 1013 | 1 | Disallow adjoining classes | Don't use adjoining classes..view.content-view.check:not(list){ | IE6
| 1013 | 1 | Disallow adjoining classes | Don't use adjoining classes..view.content-view.check:not(list){ | IE6
| 1018 | 1 | Disallow adjoining classes | Don't use adjoining classes.iconview.content-view.check:not(list) { | IE6
| 1018 | 1 | Disallow adjoining classes | Don't use adjoining classes.iconview.content-view.check:not(list) { | IE6
| 1023 | 1 | Disallow adjoining classes | Don't use adjoining classes..view.content-view.check:checked:not(list){ | IE6
| 1023 | 1 | Disallow adjoining classes | Don't use adjoining classes..view.content-view.check:checked:not(list){ | IE6
| 1023 | 1 | Disallow adjoining classes | Don't use adjoining classes..view.content-view.check:checked:not(list){ | IE6
| 1023 | 1 | Disallow adjoining classes | Don't use adjoining classes..view.content-view.check:checked:not(list){ | IE6
| 1028 | 1 | Disallow adjoining classes | Don't use adjoining classes.iconview.content-view.check:checked:not(list) { | IE6
| 1028 | 1 | Disallow adjoining classes | Don't use adjoining classes.iconview.content-view.check:checked:not(list) { | IE6
| 1028 | 1 | Disallow adjoining classes | Don't use adjoining classes.iconview.content-view.check:checked:not(list) { | IE6
| 1041 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1042 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1043 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1044 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); } | All
| 1048 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.55);} | IE6,IE7,IE8
| 1054 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1055 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1056 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1057 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1058 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(255,77,13,1); } | IE6,IE7,IE8
| 1062 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.55); } | IE6,IE7,IE8
| 1066 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,97,13,1);} | IE6,IE7,IE8
| 1068 | 1 | Disallow adjoining classes | Don't use adjoining classes.label.nautilus-canvas-item.separator{ | IE6
| 1072 | 1 | Disallow adjoining classes | Don't use adjoining classes.label.nautilus-canvas-item.separator:selected{ | IE6
| 1072 | 1 | Disallow adjoining classes | Don't use adjoining classes.label.nautilus-canvas-item.separator:selected{ | IE6
| 1076 | 1 | Disallow adjoining classes | Don't use adjoining classes.label.nautilus-canvas-item.separator:selected:focus{ | IE6
| 1076 | 1 | Disallow adjoining classes | Don't use adjoining classes.label.nautilus-canvas-item.separator:selected:focus{ | IE6
| 1076 | 1 | Disallow adjoining classes | Don't use adjoining classes.label.nautilus-canvas-item.separator:selected:focus{ | IE6
| 1090 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. padding: 0px; | All
| 1093 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(64,64,64,0.96); | IE6,IE7,IE8
| 1094 | 16 | Disallow units for 0 values | Values of 0 shouldn't have units specified. box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.4);} | All
| 1094 | 28 | Disallow units for 0 values | Values of 0 shouldn't have units specified. box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.4);} | All
| 1107 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. padding: 0px; | All
| 1110 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(64,64,64,0.96);} | IE6,IE7,IE8
| 1114 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. padding: 0px; | All
| 1117 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(64,64,64,0.96);} | IE6,IE7,IE8
| 1150 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(64,64,64,0.96); | IE6,IE7,IE8
| 1158 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(64,64,64,0.96); | IE6,IE7,IE8
| 1162 | 1 | Disallow adjoining classes | Don't use adjoining classes.popover.background.osd{ | IE6
| 1166 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(64,64,64,0.96); | IE6,IE7,IE8
| 1170 | 1 | Disallow adjoining classes | Don't use adjoining classes.popover.background.magnifier{ | IE6
| 1174 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(64,64,64,0.96); | IE6,IE7,IE8
| 1182 | 1 | Disallow adjoining classes | Don't use adjoining classes.popover.background.touch-selection{ | IE6
| 1186 | 20 | Disallow adjoining classes | Don't use adjoining classes.popover.background label.nautilus-canvas-item.separator{ | IE6
| 1190 | 1 | Disallow adjoining classes | Don't use adjoining classes.popover.messagepopover.background { | IE6
| 1230 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(64,64,64,0.98); | IE6,IE7,IE8
| 1238 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(64,64,64,0.98); | IE6,IE7,IE8
| 1241 | 6 | Disallow adjoining classes | Don't use adjoining classes..csd popover.background.osd{ | IE6
| 1245 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(64,64,64,0.98); | IE6,IE7,IE8
| 1249 | 6 | Disallow adjoining classes | Don't use adjoining classes..csd popover.background.magnifier{ | IE6
| 1253 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(64,64,64,0.98); | IE6,IE7,IE8
| 1261 | 6 | Disallow adjoining classes | Don't use adjoining classes..csd popover.background.touch-selection { | IE6
| 1269 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(64,64,64,0.98); | IE6,IE7,IE8
| 1325 | 3 | Require use of known properties | Unknown property 'caret-color'. caret-color: currentColor; | All
| 1330 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1331 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1332 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1333 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1336 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(102, 102, 102, 1);} | IE6,IE7,IE8
| 1374 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1375 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1376 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1377 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1379 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(177, 177, 177, 0.45); | IE6,IE7,IE8
| 1380 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(177, 177, 177, 0.45); } | IE6,IE7,IE8
| 1385 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3); | IE6,IE7,IE8
| 1387 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1388 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1389 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1390 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1392 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(102, 102, 102, 0.41); | IE6,IE7,IE8
| 1393 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(102, 102, 102, 0.41);} | IE6,IE7,IE8
| 1399 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1400 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1401 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1402 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1411 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1412 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1413 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1414 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); } | All
| 1420 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1421 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1422 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1423 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1433 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1434 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1435 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1436 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1447 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1448 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1449 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1450 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1460 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1461 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1462 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1463 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1472 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1473 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1474 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1475 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); } | All
| 1481 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1482 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1483 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1484 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1494 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1495 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1496 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1497 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1508 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1509 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1510 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1511 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1521 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1522 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1523 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1524 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1533 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1534 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1535 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1536 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); } | All
| 1543 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1544 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1545 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1546 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1556 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1557 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1558 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1559 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1570 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1571 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1572 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1573 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1593 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(255,77,13,1); | IE6,IE7,IE8
| 1596 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1597 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1598 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1599 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1607 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(255,77,13,1); | IE6,IE7,IE8
| 1610 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1611 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1612 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1613 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1621 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,97,13,1); | IE6,IE7,IE8
| 1623 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1624 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1625 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1626 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1638 | 3 | Require use of known properties | Unknown property 'caret-color'. caret-color: currentColor; | All
| 1643 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1644 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1645 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1646 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1648 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(102, 102, 102, 1); | IE6,IE7,IE8
| 1649 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(102, 102, 102, 1);} | IE6,IE7,IE8
| 1663 | 3 | Require use of known properties | Unknown property 'caret-color'. caret-color: currentColor; | All
| 1668 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1669 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1670 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1671 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1673 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(177, 177, 177, 0.45); | IE6,IE7,IE8
| 1674 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(177, 177, 177, 0.45);} | IE6,IE7,IE8
| 1678 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3); | IE6,IE7,IE8
| 1680 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1681 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1682 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1683 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1685 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(102, 102, 102, 0.1); | IE6,IE7,IE8
| 1686 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(102, 102, 102, 0.1);} | IE6,IE7,IE8
| 1690 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(255,77,13,1); | IE6,IE7,IE8
| 1693 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1694 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1695 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1696 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1704 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(255,77,13,1); | IE6,IE7,IE8
| 1707 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1708 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1709 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1710 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1721 | 1 | Require shorthand properties | The properties padding-top, padding-bottom, padding-left, padding-right can be replaced by padding.button { | All
| 1728 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1729 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1730 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1731 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1753 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1754 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1755 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1756 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1758 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(141,141,144,0.23);} | IE6,IE7,IE8
| 1767 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#101010, 0.05), | All
| 1768 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#101010, 0.05), | All
| 1769 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#101010, 0.3), | All
| 1770 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#101010, 0.05); | All
| 1782 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#101010, 0.05), | All
| 1783 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#101010, 0.05), | All
| 1784 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#101010, 0.3), | All
| 1785 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#101010, 0.05); | All
| 1797 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#101010, 0.05), | All
| 1798 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#101010, 0.05), | All
| 1799 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#101010, 0.3), | All
| 1800 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#101010, 0.05); | All
| 1809 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3); | IE6,IE7,IE8
| 1817 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3); | IE6,IE7,IE8
| 1828 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3); | IE6,IE7,IE8
| 1833 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1834 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1835 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1836 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1843 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1844 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1845 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1846 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1880 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.39); } | IE6,IE7,IE8
| 1884 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3);} | IE6,IE7,IE8
| 1889 | 5 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3);} | IE6,IE7,IE8
| 1897 | 1 | Disallow empty rules | Rule is empty.button separator { } | All
| 1899 | 1 | Disallow overqualified elements | Element (button.font) is overqualified, just use .font without element name.button.font separator{ | All
| 1903 | 1 | Disallow overqualified elements | Element (button.file) is overqualified, just use .file without element name.button.file separator { | All
| 1916 | 1 | Require shorthand properties | The properties padding-top, padding-bottom, padding-left, padding-right can be replaced by padding.button.sidebar-button { | All
| 1923 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1924 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1925 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1926 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1946 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1947 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1948 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1949 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1952 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(141,141,144,0.23);} | IE6,IE7,IE8
| 1962 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#101010, 0.05), | All
| 1963 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#101010, 0.05), | All
| 1964 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#101010, 0.3), | All
| 1965 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#101010, 0.05); | All
| 1971 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3); | IE6,IE7,IE8
| 1975 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 1976 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 1977 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 1978 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 1997 | 1 | Disallow adjoining classes | Don't use adjoining classes.button.text-button.image-button { | IE6
| 2003 | 1 | Disallow adjoining classes | Don't use adjoining classes.button.text-button.image-button label:first-child { | IE6
| 2008 | 1 | Disallow adjoining classes | Don't use adjoining classes.button.text-button.image-button label:last-child { | IE6
| 2013 | 1 | Disallow adjoining classes | Don't use adjoining classes.button.text-button.image-button label:only-child { | IE6
| 2019 | 1 | Disallow adjoining classes | Don't use adjoining classes.button.text-button.image-button.popup { | IE6
| 2019 | 1 | Disallow adjoining classes | Don't use adjoining classes.button.text-button.image-button.popup { | IE6
| 2028 | 1 | Require shorthand properties | The properties padding-top, padding-bottom, padding-left, padding-right can be replaced by padding.button.osd { | All
| 2035 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2036 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2037 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2038 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2058 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2059 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2060 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2061 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2063 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(141,141,144,0.23);} | IE6,IE7,IE8
| 2073 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#101010, 0.05), | All
| 2074 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#101010, 0.05), | All
| 2075 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#101010, 0.3), | All
| 2076 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#101010, 0.05); | All
| 2088 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#101010, 0.05), | All
| 2089 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#101010, 0.05), | All
| 2090 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#101010, 0.3), | All
| 2091 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#101010, 0.05); | All
| 2098 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3); | IE6,IE7,IE8
| 2102 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2103 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2104 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2105 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2110 | 1 | Disallow adjoining classes | Don't use adjoining classes.button.osd.image-button { | IE6
| 2119 | 1 | Require shorthand properties | The properties padding-top, padding-bottom, padding-left, padding-right can be replaced by padding..osd button { | All
| 2126 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2127 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2128 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2129 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2149 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2150 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2151 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2152 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2155 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(141,141,144,0.23);} | IE6,IE7,IE8
| 2164 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#101010, 0.05), | All
| 2165 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#101010, 0.05), | All
| 2166 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#101010, 0.3), | All
| 2167 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#101010, 0.05); | All
| 2179 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#101010, 0.05), | All
| 2180 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#101010, 0.05), | All
| 2181 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#101010, 0.3), | All
| 2182 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#101010, 0.05); | All
| 2189 | 2 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3); | IE6,IE7,IE8
| 2193 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2194 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2195 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2196 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2220 | 1 | Require shorthand properties | The properties padding-top, padding-bottom, padding-left, padding-right can be replaced by padding.osd button.sidebar-button { | All
| 2227 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2228 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2229 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2230 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2243 | 3 | Disallow duplicate properties | Duplicate property 'border' found. border: 1px solid; | All
| 2255 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2256 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2257 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2258 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2261 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(141,141,144,0.23);} | IE6,IE7,IE8
| 2265 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3); | IE6,IE7,IE8
| 2269 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2270 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2271 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2272 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2285 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#101010, 0.05), | All
| 2286 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#101010, 0.05), | All
| 2287 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#101010, 0.3), | All
| 2288 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#101010, 0.05); | All
| 2291 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(37,37,37,1); } | IE6,IE7,IE8
| 2300 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#101010, 0.05), | All
| 2301 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#101010, 0.05), | All
| 2302 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#101010, 0.3), | All
| 2303 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#101010, 0.05); | All
| 2308 | 1 | Disallow adjoining classes | Don't use adjoining classes.button.osd.image-button { | IE6
| 2336 | 3 | Require fallback colors | Fallback border-left-color (hex or RGB) should precede RGBA border-left-color. border-left-color: rgba(198, 205, 229, 0.25); } | IE6,IE7,IE8
| 2391 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(0,0,0,0.4); | IE6,IE7,IE8
| 2397 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(0,0,0,0.4);} | IE6,IE7,IE8
| 2433 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,1); | IE6,IE7,IE8
| 2438 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2439 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2440 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2441 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2444 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(255,57,13,1);} | IE6,IE7,IE8
| 2446 | 1 | Disallow adjoining classes | Don't use adjoining classes.button.suggested-action.flat{ | IE6
| 2455 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,1); | IE6,IE7,IE8
| 2460 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2461 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2462 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2463 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2465 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(255,57,13,1);} | IE6,IE7,IE8
| 2469 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,1); | IE6,IE7,IE8
| 2474 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2475 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2476 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2477 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2480 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(255,57,13,1);} | IE6,IE7,IE8
| 2484 | 4 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,1); | IE6,IE7,IE8
| 2489 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2490 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2491 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2492 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2495 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(255,57,13,1);} | IE6,IE7,IE8
| 2497 | 1 | Disallow adjoining classes | Don't use adjoining classes.button.suggested-action.flat:disabled{ | IE6
| 2497 | 1 | Disallow adjoining classes | Don't use adjoining classes.button.suggested-action.flat:disabled{ | IE6
| 2502 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.3); } | IE6,IE7,IE8
| 2506 | 2 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3); | IE6,IE7,IE8
| 2511 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2512 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2513 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2514 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2517 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(65,65,65,0.1); } | IE6,IE7,IE8
| 2521 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.3); } | IE6,IE7,IE8
| 2523 | 1 | Disallow adjoining classes | Don't use adjoining classes.button.suggested-action.sidebar-button { | IE6
| 2530 | 1 | Disallow adjoining classes | Don't use adjoining classes.button.suggested-action.sidebar-button:disabled { | IE6
| 2530 | 1 | Disallow adjoining classes | Don't use adjoining classes.button.suggested-action.sidebar-button:disabled { | IE6
| 2535 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.3); } | IE6,IE7,IE8
| 2541 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,1); | IE6,IE7,IE8
| 2546 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2547 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2548 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2549 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2552 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(236,47,56,1); | IE6,IE7,IE8
| 2557 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,1); | IE6,IE7,IE8
| 2562 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2563 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2564 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2565 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2568 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(239,68,76,1);} | IE6,IE7,IE8
| 2572 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,1); | IE6,IE7,IE8
| 2577 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2578 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2579 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2580 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2583 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(237,59,68,1);} | IE6,IE7,IE8
| 2587 | 4 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,1); | IE6,IE7,IE8
| 2592 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2593 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2594 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2595 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2598 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(236,47,56,1);} | IE6,IE7,IE8
| 2602 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3); | IE6,IE7,IE8
| 2607 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2608 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2609 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2610 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2613 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(64,64,64,1);} | IE6,IE7,IE8
| 2615 | 1 | Disallow adjoining classes | Don't use adjoining classes.button.destructive-action.flat{ | IE6
| 2622 | 1 | Disallow adjoining classes | Don't use adjoining classes.button.destructive-action.flat:disabled{ | IE6
| 2622 | 1 | Disallow adjoining classes | Don't use adjoining classes.button.destructive-action.flat:disabled{ | IE6
| 2627 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.3); } | IE6,IE7,IE8
| 2631 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.3); } | IE6,IE7,IE8
| 2633 | 1 | Disallow adjoining classes | Don't use adjoining classes.button.destructive-action.sidebar-button { | IE6
| 2640 | 1 | Disallow adjoining classes | Don't use adjoining classes.button.destructive-action.sidebar-button:disabled { | IE6
| 2640 | 1 | Disallow adjoining classes | Don't use adjoining classes.button.destructive-action.sidebar-button:disabled { | IE6
| 2645 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.3); } | IE6,IE7,IE8
| 2653 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2654 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2655 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2656 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2667 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2668 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2669 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2670 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2673 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(83,83,83,1);} | IE6,IE7,IE8
| 2677 | 2 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.2); | IE6,IE7,IE8
| 2688 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2689 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2690 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2691 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2694 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(83,83,83,1);} | IE6,IE7,IE8
| 2700 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2701 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2702 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2703 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); } | All
| 2709 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2710 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2711 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2712 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2715 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(83,83,83,1);} | IE6,IE7,IE8
| 2721 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 2722 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 2723 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 2724 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 2727 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(83,83,83,1);} | IE6,IE7,IE8
| 2730 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3); } | IE6,IE7,IE8
| 2734 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3); } | IE6,IE7,IE8
| 2738 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3); } | IE6,IE7,IE8
| 2742 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3); } | IE6,IE7,IE8
| 2777 | 1 | Require shorthand properties | The properties padding-top, padding-bottom, padding-left, padding-right can be replaced by padding..stack-switcher > button > image { | All
| 2808 | 3 | Require use of known properties | Expected (<bg-image>#) but found '-gtk-gradient(radial , center center , 0 , center center , 0.5 , to(#ff4d0d) , to(transparent))'. background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#ff4d0d), to(transparent)); | All
| 2828 | 15 | Disallow adjoining classes | Don't use adjoining classes.stackswitcher button.nautilus-circular-button.image-button { | IE6
| 2835 | 1 | Require shorthand properties | The properties padding-top, padding-bottom, padding-left, padding-right can be replaced by padding.combobox button.combo { | All
| 2839 | 14 | Disallow units for 0 values | Values of 0 shouldn't have units specified. min-width: 0px; | All
| 2910 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(84,84,84,1); } | IE6,IE7,IE8
| 2912 | 1 | Disallow adjoining classes | Don't use adjoining classes.toolbar.osd.left{ | IE6
| 2916 | 1 | Disallow adjoining classes | Don't use adjoining classes.toolbar.osd.right{ | IE6
| 2920 | 1 | Disallow adjoining classes | Don't use adjoining classes.toolbar.osd.top{ | IE6
| 2924 | 1 | Disallow adjoining classes | Don't use adjoining classes.toolbar.osd.bottom{ | IE6
| 2928 | 1 | Disallow adjoining classes | Don't use adjoining classes.toolbar.osd.top{ | IE6
| 2932 | 1 | Disallow adjoining classes | Don't use adjoining classes.toolbar.osd.bottom{ | IE6
| 2936 | 1 | Disallow adjoining classes | Don't use adjoining classes.toolbar.osd.left{ | IE6
| 2940 | 1 | Disallow adjoining classes | Don't use adjoining classes.toolbar.osd.right{ | IE6
| 2965 | 1 | Disallow adjoining classes | Don't use adjoining classes..bottom-toolbar.inline-toolbar { | IE6
| 2977 | 1 | Disallow adjoining classes | Don't use adjoining classes..bottom-toolbar.inline-toolbar button { | IE6
| 3004 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3005 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3006 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3007 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3009 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(102, 102, 102, 1); | IE6,IE7,IE8
| 3010 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(102, 102, 102, 1); } | IE6,IE7,IE8
| 3024 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3025 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3026 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3027 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3029 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(177, 177, 177, 0.22); | IE6,IE7,IE8
| 3030 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(177, 177, 177, 0.22); } | IE6,IE7,IE8
| 3038 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3); | IE6,IE7,IE8
| 3040 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3041 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3042 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3043 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3045 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(102, 102, 102, 0.1); | IE6,IE7,IE8
| 3046 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(102, 102, 102, 0.1);} | IE6,IE7,IE8
| 3050 | 4 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(255,77,13,1); | IE6,IE7,IE8
| 3053 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3054 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3055 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3056 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3077 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3078 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3079 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3080 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); } | All
| 3086 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3087 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3088 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3089 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3100 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3101 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3102 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3103 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3114 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3115 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3116 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3117 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3127 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3128 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3129 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3130 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3139 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3140 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3141 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3142 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3152 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3153 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3154 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3155 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3166 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3167 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3168 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3169 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3177 | 1 | Require shorthand properties | The properties padding-top, padding-bottom, padding-left, padding-right can be replaced by padding..primary-toolbar button{ | All
| 3183 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3184 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3185 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3186 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3206 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3207 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3208 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3209 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); } | All
| 3219 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#101010, 0.05), | All
| 3220 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#101010, 0.05), | All
| 3221 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#101010, 0.3), | All
| 3222 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#101010, 0.05); | All
| 3232 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#101010, 0.05), | All
| 3233 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#101010, 0.05), | All
| 3234 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#101010, 0.3), | All
| 3235 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#101010, 0.05); | All
| 3240 | 2 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3); | IE6,IE7,IE8
| 3245 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3246 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3247 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3248 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3254 | 2 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3);} | IE6,IE7,IE8
| 3258 | 2 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3);} | IE6,IE7,IE8
| 3262 | 4 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3); | IE6,IE7,IE8
| 3267 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3268 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3269 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3270 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3276 | 4 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3); | IE6,IE7,IE8
| 3281 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3282 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3283 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3284 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3306 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar .linked:not(.vertical).path-bar > button { | IE6
| 3318 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar .linked:not(.vertical).path-bar > button:hover { | IE6
| 3325 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar .linked:not(.vertical).path-bar > button:active{ | IE6
| 3331 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar .linked:not(.vertical).path-bar > button:checked { | IE6
| 3337 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar .linked:not(.vertical).path-bar > button:disabled { | IE6
| 3339 | 4 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(152,152,152,1); } | IE6,IE7,IE8
| 3341 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar .linked:not(.vertical).path-bar > button:first-child{ | IE6
| 3343 | 28 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-top-right-radius:0px; | All
| 3344 | 30 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-bottom-right-radius:0px; | All
| 3347 | 16 | Disallow units for 0 values | Values of 0 shouldn't have units specified. margin-left: 0px; | All
| 3350 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar .linked:not(.vertical).path-bar > button:only-child { | IE6
| 3355 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar .linked:not(.vertical).path-bar > button:last-child { | IE6
| 3357 | 26 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-top-left-radius: 0px; | All
| 3358 | 30 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-bottom-left-radius: 0px; | All
| 3364 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar .linked:not(.vertical).path-bar > button + button { | IE6
| 3400 | 3 | Require fallback colors | Fallback border-left-color (hex or RGB) should precede RGBA border-left-color. border-left-color: rgba(0, 0, 0, 1); } | IE6,IE7,IE8
| 3404 | 3 | Require fallback colors | Fallback border-left-color (hex or RGB) should precede RGBA border-left-color. border-left-color: rgba(0, 0, 0, 1); } | IE6,IE7,IE8
| 3408 | 3 | Require fallback colors | Fallback border-left-color (hex or RGB) should precede RGBA border-left-color. border-left-color: rgba(0, 0, 0, 1); } | IE6,IE7,IE8
| 3412 | 3 | Require fallback colors | Fallback border-left-color (hex or RGB) should precede RGBA border-left-color. border-left-color: rgba(0, 0, 0, 1); } | IE6,IE7,IE8
| 3416 | 3 | Require fallback colors | Fallback border-left-color (hex or RGB) should precede RGBA border-left-color. border-left-color: rgba(0, 0, 0, 1); } | IE6,IE7,IE8
| 3480 | 3 | Require fallback colors | Fallback border-left-color (hex or RGB) should precede RGBA border-left-color. border-left-color: rgba(0, 0, 0, 1); } | IE6,IE7,IE8
| 3484 | 3 | Require fallback colors | Fallback border-left-color (hex or RGB) should precede RGBA border-left-color. border-left-color: rgba(0, 0, 0, 0.1); } | IE6,IE7,IE8
| 3488 | 1 | Require shorthand properties | The properties padding-top, padding-bottom, padding-left, padding-right can be replaced by padding..primary-toolbar .linked:not(.vertical):not(path-bar) > button { | All
| 3497 | 18 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-radius: 0px; | All
| 3535 | 27 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-top-right-radius:0px; | All
| 3536 | 30 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-bottom-right-radius:0px; | All
| 3541 | 16 | Disallow units for 0 values | Values of 0 shouldn't have units specified. margin-left: 0px; | All
| 3551 | 27 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-top-left-radius: 0px; | All
| 3552 | 30 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-bottom-left-radius: 0px; | All
| 3558 | 17 | Disallow units for 0 values | Values of 0 shouldn't have units specified. margin-right: 0px;} | All
| 3582 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button + button { | IE6
| 3586 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child{ | IE6
| 3588 | 27 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-top-right-radius:0px; | All
| 3589 | 30 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-bottom-right-radius:0px; | All
| 3592 | 16 | Disallow units for 0 values | Values of 0 shouldn't have units specified. margin-left: 0px; | All
| 3595 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:only-child{ | IE6
| 3603 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child{ | IE6
| 3605 | 27 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-top-left-radius: 0px; | All
| 3606 | 30 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-bottom-left-radius: 0px; | All
| 3610 | 17 | Disallow units for 0 values | Values of 0 shouldn't have units specified. margin-right: 0px;} | All
| 3616 | 4 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,1); | IE6,IE7,IE8
| 3621 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3622 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3623 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3624 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3627 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(255,57,13,1);} | IE6,IE7,IE8
| 3629 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.suggested-action.flat, | IE6
| 3631 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.suggested-action.sidebar-button { | IE6
| 3640 | 2 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,1); | IE6,IE7,IE8
| 3645 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3646 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3647 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3648 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3651 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(255,57,13,1);} | IE6,IE7,IE8
| 3655 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,1); | IE6,IE7,IE8
| 3660 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3661 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3662 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3663 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3666 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(255,57,13,1);} | IE6,IE7,IE8
| 3670 | 4 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,1); | IE6,IE7,IE8
| 3675 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3676 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3677 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3678 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3681 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(255,57,13,1);} | IE6,IE7,IE8
| 3683 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.suggested-action.flat:disabled{ | IE6
| 3683 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.suggested-action.flat:disabled{ | IE6
| 3688 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.3); } | IE6,IE7,IE8
| 3690 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.suggested-action.sidebar-button:disabled{ | IE6
| 3690 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.suggested-action.sidebar-button:disabled{ | IE6
| 3695 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.3); } | IE6,IE7,IE8
| 3699 | 2 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3); | IE6,IE7,IE8
| 3704 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3705 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3706 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3707 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3710 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(65,65,65,0.1);} | IE6,IE7,IE8
| 3712 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.suggested-action.flat:disabled label{ | IE6
| 3712 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.suggested-action.flat:disabled label{ | IE6
| 3714 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.3); } | IE6,IE7,IE8
| 3716 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.suggested-action.sidebar-button:disabled label{ | IE6
| 3716 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.suggested-action.sidebar-button:disabled label{ | IE6
| 3718 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.3); } | IE6,IE7,IE8
| 3720 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.suggested-action.flat:disabled{ | IE6
| 3720 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.suggested-action.flat:disabled{ | IE6
| 3722 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.3); } | IE6,IE7,IE8
| 3724 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.suggested-action.sidebar-button:disabled{ | IE6
| 3724 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.suggested-action.sidebar-button:disabled{ | IE6
| 3726 | 2 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.3); } | IE6,IE7,IE8
| 3730 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.3); } | IE6,IE7,IE8
| 3734 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.3); } | IE6,IE7,IE8
| 3746 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,1); | IE6,IE7,IE8
| 3751 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3752 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3753 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3754 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3757 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(237,59,68,1);} | IE6,IE7,IE8
| 3759 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.destructive-action.flat{ | IE6
| 3766 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.destructive-action.sidebar-button { | IE6
| 3775 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,1); | IE6,IE7,IE8
| 3780 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3781 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3782 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3783 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3786 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(239,68,76,1);} | IE6,IE7,IE8
| 3790 | 4 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,1); | IE6,IE7,IE8
| 3795 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3796 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3797 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3798 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3801 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(236,47,56,1);} | IE6,IE7,IE8
| 3805 | 4 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,1); | IE6,IE7,IE8
| 3810 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3811 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3812 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3813 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3816 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(236,47,56,1);} | IE6,IE7,IE8
| 3818 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.destructive-action.flat:disabled{ | IE6
| 3818 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.destructive-action.flat:disabled{ | IE6
| 3823 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.3); } | IE6,IE7,IE8
| 3825 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.destructive-action.sidebar-button:disabled{ | IE6
| 3825 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.destructive-action.sidebar-button:disabled{ | IE6
| 3830 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.3); } | IE6,IE7,IE8
| 3834 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3); | IE6,IE7,IE8
| 3839 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3840 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3841 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3842 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3845 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(65,64,65,0.1);} | IE6,IE7,IE8
| 3847 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.destructive-action.flat:disabled label{ | IE6
| 3847 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.destructive-action.flat:disabled label{ | IE6
| 3849 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.3); } | IE6,IE7,IE8
| 3851 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.destructive-action.sidebar-button:disabled label{ | IE6
| 3851 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.destructive-action.sidebar-button:disabled label{ | IE6
| 3853 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.3); } | IE6,IE7,IE8
| 3855 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.destructive-action.flat:disabled{ | IE6
| 3855 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.destructive-action.flat:disabled{ | IE6
| 3857 | 2 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.3); } | IE6,IE7,IE8
| 3859 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.destructive-action.sidebar-button:disabled{ | IE6
| 3859 | 18 | Disallow adjoining classes | Don't use adjoining classes..primary-toolbar button.destructive-action.sidebar-button:disabled{ | IE6
| 3861 | 2 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.3); } | IE6,IE7,IE8
| 3865 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255, 0.3); } | IE6,IE7,IE8
| 3869 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(41, 33, 33, 0.3); } | IE6,IE7,IE8
| 3885 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 3886 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 3887 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.3), | All
| 3888 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 3889 | 3 | Require use of known properties | Unknown property 'caret-color'. caret-color: #ffffff; } | All
| 3908 | 3 | Require fallback colors | Fallback border-left-color (hex or RGB) should precede RGBA border-left-color. border-left-color: rgba(0, 0, 0, 1); } | IE6,IE7,IE8
| 3915 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3); } | IE6,IE7,IE8
| 3935 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.3);} | IE6,IE7,IE8
| 3947 | 30 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-bottom-right-radius:0px; | All
| 3948 | 27 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-top-right-radius:0px; | All
| 3954 | 30 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-bottom-right-radius:0px; | All
| 3955 | 27 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-top-right-radius:0px; | All
| 3961 | 30 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-bottom-right-radius:0px; | All
| 3962 | 27 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-top-right-radius:0px; | All
| 3968 | 30 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-bottom-right-radius:0px; | All
| 3969 | 27 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-top-right-radius:0px; | All
| 3975 | 30 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-bottom-right-radius:0px; | All
| 3976 | 27 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-top-right-radius:0px; | All
| 3984 | 27 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-top-left-radius: 0px; | All
| 3985 | 30 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-bottom-left-radius: 0px; } | All
| 3991 | 27 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-top-left-radius: 0px; | All
| 3992 | 30 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-bottom-left-radius: 0px;} | All
| 3998 | 27 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-top-left-radius: 0px; | All
| 3999 | 30 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-bottom-left-radius: 0px;} | All
| 4005 | 27 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-top-left-radius: 0px; | All
| 4006 | 30 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-bottom-left-radius: 0px;} | All
| 4012 | 27 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-top-left-radius: 0px; | All
| 4013 | 30 | Disallow units for 0 values | Values of 0 shouldn't have units specified. border-bottom-left-radius: 0px;} | All
| 4025 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(105, 105, 105, 0.15); } | IE6,IE7,IE8
| 4060 | 3 | Require fallback colors | Fallback background-color (hex or RGB) should precede RGBA background-color. background-color: rgba(0,0,0,0.4); | IE6,IE7,IE8
| 4071 | 1 | Disallow adjoining classes | Don't use adjoining classes..selection-mode.primary-toolbar button{ | IE6
| 4074 | 17 | Disallow units for 0 values | Values of 0 shouldn't have units specified. text-shadow: 0px -1px alpha(#ffffff, 0.04), | All
| 4075 | 11 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 4076 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 4077 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.4), | All
| 4078 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 4083 | 1 | Disallow adjoining classes | Don't use adjoining classes..selection-mode.primary-toolbar button.flat{ | IE6
| 4086 | 17 | Disallow units for 0 values | Values of 0 shouldn't have units specified. text-shadow: 0px -1px alpha(#ffffff, 0.04), | All
| 4087 | 11 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 4088 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 4089 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.4), | All
| 4090 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 4095 | 1 | Disallow adjoining classes | Don't use adjoining classes..selection-mode.primary-toolbar button.sidebar-button { | IE6
| 4098 | 17 | Disallow units for 0 values | Values of 0 shouldn't have units specified. text-shadow: 0px -1px alpha(#ffffff, 0.04), | All
| 4099 | 11 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 4100 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 4101 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.4), | All
| 4102 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 4107 | 1 | Disallow adjoining classes | Don't use adjoining classes..selection-mode.primary-toolbar button:hover{ | IE6
| 4110 | 17 | Disallow units for 0 values | Values of 0 shouldn't have units specified. text-shadow: 0px -1px alpha(#ffffff, 0.04), | All
| 4111 | 11 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 4112 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 4113 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.4), | All
| 4114 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 4119 | 1 | Disallow adjoining classes | Don't use adjoining classes..selection-mode.primary-toolbar button:disabled{ | IE6
| 4121 | 3 | Require fallback colors | Fallback color (hex or RGB) should precede RGBA color. color: rgba(255,255,255,0.55); | IE6,IE7,IE8
| 4122 | 17 | Disallow units for 0 values | Values of 0 shouldn't have units specified. text-shadow: 0px -1px alpha(#ffffff, 0.04), | All
| 4123 | 11 | Disallow units for 0 values | Values of 0 shouldn't have units specified. -1px 0px alpha(#202020, 0.05), | All
| 4124 | 12 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 1px 0px alpha(#202020, 0.05), | All
| 4125 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 1px alpha(#202020, 0.4), | All
| 4126 | 7 | Disallow units for 0 values | Values of 0 shouldn't have units specified. 0px 2px alpha(#202020, 0.05); | All
| 4129 | 3 | Require fallback colors | Fallback border-color (hex or RGB) should precede RGBA border-color. border-color: rgba(255,255,255,0.3);} | IE6,IE7,IE8