compass 0.13.alpha.4 → 0.13.alpha.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.markdown +2 -3
- data/Rakefile +91 -5
- data/VERSION.yml +1 -1
- data/examples/compass/images/emblem-a043c4f148.png +0 -0
- data/examples/compass/images/flag-03c3b29b35.png +0 -0
- data/examples/compass/images/flag-21cfbfbfc8.png +0 -0
- data/examples/css3/extensions/fancy-fonts/templates/project/Prociono.otf +0 -0
- data/features/command_line.feature +2 -6
- data/features/step_definitions/command_line_steps.rb +1 -0
- data/frameworks/compass/stylesheets/compass/_css3.scss +0 -1
- data/frameworks/compass/stylesheets/compass/_support.scss +353 -35
- data/frameworks/compass/stylesheets/compass/css3/_animation.scss +49 -48
- data/frameworks/compass/stylesheets/compass/css3/_appearance.scss +4 -8
- data/frameworks/compass/stylesheets/compass/css3/_background-clip.scss +15 -19
- data/frameworks/compass/stylesheets/compass/css3/_background-origin.scss +17 -19
- data/frameworks/compass/stylesheets/compass/css3/_background-size.scss +4 -8
- data/frameworks/compass/stylesheets/compass/css3/_border-radius.scss +37 -39
- data/frameworks/compass/stylesheets/compass/css3/_box-shadow.scss +45 -20
- data/frameworks/compass/stylesheets/compass/css3/_box-sizing.scss +6 -8
- data/frameworks/compass/stylesheets/compass/css3/_box.scss +12 -13
- data/frameworks/compass/stylesheets/compass/css3/_columns.scss +46 -26
- data/frameworks/compass/stylesheets/compass/css3/_deprecated-support.scss +272 -0
- data/frameworks/compass/stylesheets/compass/css3/_filter.scss +17 -10
- data/frameworks/compass/stylesheets/compass/css3/_flexbox.scss +134 -281
- data/frameworks/compass/stylesheets/compass/css3/_font-face.scss +5 -5
- data/frameworks/compass/stylesheets/compass/css3/_hyphenation.scss +14 -11
- data/frameworks/compass/stylesheets/compass/css3/_images.scss +77 -67
- data/frameworks/compass/stylesheets/compass/css3/_inline-block.scss +15 -6
- data/frameworks/compass/stylesheets/compass/css3/_opacity.scss +6 -2
- data/frameworks/compass/stylesheets/compass/css3/_pie.scss +1 -73
- data/frameworks/compass/stylesheets/compass/css3/_regions.scss +7 -6
- data/frameworks/compass/stylesheets/compass/css3/_selection.scss +45 -17
- data/frameworks/compass/stylesheets/compass/css3/_shared.scss +4 -261
- data/frameworks/compass/stylesheets/compass/css3/_text-shadow.scss +1 -1
- data/frameworks/compass/stylesheets/compass/css3/_transform.scss +24 -32
- data/frameworks/compass/stylesheets/compass/css3/_transition.scss +102 -152
- data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +42 -27
- data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +2 -1
- data/frameworks/compass/stylesheets/compass/typography/links/_hover-link.scss +1 -1
- data/frameworks/compass/stylesheets/compass/typography/lists/_horizontal-list.scss +2 -2
- data/frameworks/compass/stylesheets/compass/typography/lists/_inline-list.scss +1 -1
- data/frameworks/compass/stylesheets/compass/typography/text/_ellipsis.scss +1 -1
- data/frameworks/compass/stylesheets/compass/utilities/_sass.scss +2 -0
- data/frameworks/compass/stylesheets/compass/utilities/color/_brightness.scss +12 -0
- data/frameworks/compass/stylesheets/compass/utilities/color/_contrast.scss +36 -12
- data/frameworks/compass/stylesheets/compass/utilities/general/_float.scss +6 -2
- data/frameworks/compass/stylesheets/compass/utilities/general/_hacks.scss +23 -4
- data/frameworks/compass/stylesheets/compass/utilities/general/_min.scss +1 -1
- data/frameworks/compass/stylesheets/compass/utilities/sass/_lists.scss +16 -0
- data/frameworks/compass/stylesheets/compass/utilities/sass/_maps.scss +19 -0
- data/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss +25 -18
- data/frameworks/compass/stylesheets/compass/utilities/sprites/_sprite-img.scss +3 -1
- data/frameworks/compass/stylesheets/compass/utilities/tables/_borders.scss +3 -3
- data/lib/compass.rb +1 -1
- data/lib/compass/browser_support.rb +1 -1
- data/lib/compass/caniuse.rb +247 -0
- data/lib/compass/configuration/adapters.rb +7 -1
- data/lib/compass/sass_extensions/functions.rb +5 -0
- data/lib/compass/sass_extensions/functions/constants.rb +2 -2
- data/lib/compass/sass_extensions/functions/cross_browser_support.rb +176 -1
- data/lib/compass/sass_extensions/functions/display.rb +24 -19
- data/lib/compass/sass_extensions/functions/env.rb +37 -8
- data/lib/compass/sass_extensions/functions/gradient_support.rb +10 -13
- data/lib/compass/sass_extensions/functions/math.rb +31 -13
- data/lib/compass/sass_extensions/functions/sprites.rb +48 -25
- data/lib/compass/sass_extensions/monkey_patches/browser_support.rb +42 -13
- data/lib/compass/sass_extensions/sprites/image.rb +14 -4
- data/lib/compass/sass_extensions/sprites/image_methods.rb +19 -3
- data/lib/compass/sprite_importer/content.erb +8 -7
- data/lib/compass/watcher/project_watcher.rb +75 -42
- data/lib/compass/watcher/watch.rb +35 -17
- data/test/fixtures/sprites/public/images/focus/ten-by-ten.png +0 -0
- data/test/fixtures/sprites/public/images/focus/ten-by-ten_active.png +0 -0
- data/test/fixtures/sprites/public/images/focus/ten-by-ten_focus.png +0 -0
- data/test/fixtures/sprites/public/images/focus/ten-by-ten_hover.png +0 -0
- data/test/fixtures/sprites/public/images/focus/ten-by-ten_target.png +0 -0
- data/test/fixtures/stylesheets/compass/config.rb +1 -0
- data/test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css +1 -9
- data/test/fixtures/stylesheets/compass/css/animation.css +1 -9
- data/test/fixtures/stylesheets/compass/css/appearance.css +3 -0
- data/test/fixtures/stylesheets/compass/css/background-clip.css +4 -8
- data/test/fixtures/stylesheets/compass/css/background-origin.css +4 -8
- data/test/fixtures/stylesheets/compass/css/background-size.css +3 -10
- data/test/fixtures/stylesheets/compass/css/border_radius.css +3 -3
- data/test/fixtures/stylesheets/compass/css/{box-sizeing.css → box-sizing.css} +2 -2
- data/test/fixtures/stylesheets/compass/css/box_shadow.css +15 -5
- data/test/fixtures/stylesheets/compass/css/brightness.css +14 -0
- data/test/fixtures/stylesheets/compass/css/browser-support.css +306 -0
- data/test/fixtures/stylesheets/compass/css/color.css +18 -0
- data/test/fixtures/stylesheets/compass/css/columns.css +27 -18
- data/test/fixtures/stylesheets/compass/css/filters.css +6 -6
- data/test/fixtures/stylesheets/compass/css/flexbox.css +84 -111
- data/test/fixtures/stylesheets/compass/css/fonts.css +1 -1
- data/test/fixtures/stylesheets/compass/css/gradients.css +53 -53
- data/test/fixtures/stylesheets/compass/css/grid_background.css +11 -11
- data/test/fixtures/stylesheets/compass/css/hyphenation.css +2 -4
- data/test/fixtures/stylesheets/compass/css/lists.css +6 -12
- data/test/fixtures/stylesheets/compass/css/regions.css +2 -2
- data/test/fixtures/stylesheets/compass/css/selection.css +41 -4
- data/test/fixtures/stylesheets/compass/css/sprites_with_explicit_separator.css +16 -0
- data/test/fixtures/stylesheets/compass/css/support.css +62 -0
- data/test/fixtures/stylesheets/compass/css/transform.css +64 -136
- data/test/fixtures/stylesheets/compass/css/transition.css +27 -45
- data/test/fixtures/stylesheets/compass/css/typography/links/hover-link.css +4 -0
- data/test/fixtures/stylesheets/compass/css/user-interface.css +34 -7
- data/test/fixtures/stylesheets/compass/css/utilities.css +7 -7
- data/test/fixtures/stylesheets/compass/css/vertical_rhythm.css +6 -9
- data/test/fixtures/stylesheets/compass/images/flag_states-sc42d7bf926.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag_states/foo.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag_states/foo_active.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag_states/foo_focus.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag_states/foo_hover.png +0 -0
- data/test/fixtures/stylesheets/compass/images/flag_states/foo_target.png +0 -0
- data/test/fixtures/stylesheets/compass/sass/animation-with-legacy-ie.scss +1 -3
- data/test/fixtures/stylesheets/compass/sass/appearance.scss +5 -0
- data/test/fixtures/stylesheets/compass/sass/background-clip.scss +0 -5
- data/test/fixtures/stylesheets/compass/sass/background-origin.scss +0 -5
- data/test/fixtures/stylesheets/compass/sass/background-size.scss +0 -5
- data/test/fixtures/stylesheets/compass/sass/{box-sizeing.scss → box-sizing.scss} +1 -1
- data/test/fixtures/stylesheets/compass/sass/box_shadow.scss +2 -0
- data/test/fixtures/stylesheets/compass/sass/brightness.scss +12 -0
- data/test/fixtures/stylesheets/compass/sass/browser-support.scss +30 -0
- data/test/fixtures/stylesheets/compass/sass/color.scss +22 -0
- data/test/fixtures/stylesheets/compass/sass/filters.scss +1 -0
- data/test/fixtures/stylesheets/compass/sass/flexbox.scss +84 -40
- data/test/fixtures/stylesheets/compass/sass/gradients.sass +3 -2
- data/test/fixtures/stylesheets/compass/sass/selection.scss +29 -4
- data/test/fixtures/stylesheets/compass/sass/sprites_with_explicit_separator.scss +7 -0
- data/test/fixtures/stylesheets/compass/sass/support.scss +137 -0
- data/test/fixtures/stylesheets/compass/sass/transition.scss +0 -3
- data/test/fixtures/stylesheets/compass/sass/typography/links/hover-link.scss +3 -0
- data/test/fixtures/stylesheets/compass/sass/user-interface.scss +16 -5
- data/test/fixtures/stylesheets/compass/sass/utilities.scss +4 -4
- data/test/fixtures/stylesheets/envtest/css/env.css +4 -4
- data/test/fixtures/stylesheets/envtest/tmp/env.css +4 -4
- data/test/integrations/sprites_test.rb +30 -1
- data/test/test_helper.rb +2 -2
- data/test/units/caniuse_test.rb +115 -0
- data/test/units/command_line_test.rb +1 -0
- data/test/units/sass_extensions_test.rb +5 -0
- data/test/units/sprites/image_test.rb +12 -0
- data/test/units/sprites/sprite_map_test.rb +11 -0
- data/test/units/watcher/project_watcher_test.rb +26 -18
- metadata +96 -42
- data/examples/compass/src/pie.scss +0 -110
- data/frameworks/compass/stylesheets/compass/css3/_transform-legacy.scss +0 -87
- data/frameworks/compass/templates/pie/LICENSE +0 -12
- data/frameworks/compass/templates/pie/LICENSE-APACHE2.txt +0 -13
- data/frameworks/compass/templates/pie/LICENSE-GPL2.txt +0 -278
- data/frameworks/compass/templates/pie/PIE.htc +0 -96
- data/frameworks/compass/templates/pie/manifest.rb +0 -39
- data/frameworks/compass/templates/pie/pie.scss +0 -74
- data/lib/compass/sass_extensions/functions/utility.rb +0 -10
- data/test/fixtures/stylesheets/compass/css/pie.css +0 -23
- data/test/fixtures/stylesheets/compass/sass/pie.scss +0 -47
@@ -1,15 +1,11 @@
|
|
1
1
|
.background-origin {
|
2
|
-
-webkit-background-origin: border;
|
3
2
|
-moz-background-origin: border;
|
3
|
+
-o-background-origin: border-box;
|
4
|
+
-webkit-background-origin: border;
|
4
5
|
background-origin: border-box; }
|
5
6
|
|
6
7
|
.background-origin-multiple {
|
7
|
-
-webkit-background-origin: border, padding, content;
|
8
8
|
-moz-background-origin: border, padding, content;
|
9
|
+
-o-background-origin: border-box, padding-box, content-box;
|
10
|
+
-webkit-background-origin: border, padding, content;
|
9
11
|
background-origin: border-box, padding-box, content-box; }
|
10
|
-
|
11
|
-
.background-origin-khtml {
|
12
|
-
-webkit-background-origin: border;
|
13
|
-
-moz-background-origin: border;
|
14
|
-
-khtml-background-origin: border-box;
|
15
|
-
background-origin: border-box; }
|
@@ -1,24 +1,17 @@
|
|
1
1
|
.background-size-default {
|
2
|
-
-webkit-background-size: 100% auto;
|
3
2
|
-moz-background-size: 100% auto;
|
4
3
|
-o-background-size: 100% auto;
|
4
|
+
-webkit-background-size: 100% auto;
|
5
5
|
background-size: 100% auto; }
|
6
6
|
|
7
7
|
.background-size-single {
|
8
|
-
-webkit-background-size: 50% 25%;
|
9
8
|
-moz-background-size: 50% 25%;
|
10
9
|
-o-background-size: 50% 25%;
|
10
|
+
-webkit-background-size: 50% 25%;
|
11
11
|
background-size: 50% 25%; }
|
12
12
|
|
13
13
|
.background-size-multiple {
|
14
|
-
-webkit-background-size: 4em 3em, 100% auto, 50%;
|
15
14
|
-moz-background-size: 4em 3em, 100% auto, 50%;
|
16
15
|
-o-background-size: 4em 3em, 100% auto, 50%;
|
16
|
+
-webkit-background-size: 4em 3em, 100% auto, 50%;
|
17
17
|
background-size: 4em 3em, 100% auto, 50%; }
|
18
|
-
|
19
|
-
.background-size-khtml {
|
20
|
-
-webkit-background-size: 100% auto;
|
21
|
-
-khtml-background-size: 100% auto;
|
22
|
-
-moz-background-size: 100% auto;
|
23
|
-
-o-background-size: 100% auto;
|
24
|
-
background-size: 100% auto; }
|
@@ -1,14 +1,14 @@
|
|
1
1
|
.simple {
|
2
|
-
-webkit-border-radius: 4px 4px;
|
3
2
|
-moz-border-radius: 4px / 4px;
|
3
|
+
-webkit-border-radius: 4px 4px;
|
4
4
|
border-radius: 4px / 4px; }
|
5
5
|
|
6
6
|
.compound {
|
7
|
-
-webkit-border-radius: 2px 3px;
|
8
7
|
-moz-border-radius: 2px 5px / 3px 6px;
|
8
|
+
-webkit-border-radius: 2px 3px;
|
9
9
|
border-radius: 2px 5px / 3px 6px; }
|
10
10
|
|
11
11
|
.crazy {
|
12
|
-
-webkit-border-radius: 1px 2px;
|
13
12
|
-moz-border-radius: 1px 3px 5px 7px / 2px 4px 6px 8px;
|
13
|
+
-webkit-border-radius: 1px 2px;
|
14
14
|
border-radius: 1px 3px 5px 7px / 2px 4px 6px 8px; }
|
@@ -1,9 +1,9 @@
|
|
1
1
|
.div {
|
2
|
-
-webkit-box-sizing: content-box;
|
3
2
|
-moz-box-sizing: content-box;
|
3
|
+
-webkit-box-sizing: content-box;
|
4
4
|
box-sizing: content-box; }
|
5
5
|
|
6
6
|
.div {
|
7
|
-
-webkit-box-sizing: border-box;
|
8
7
|
-moz-box-sizing: border-box;
|
8
|
+
-webkit-box-sizing: border-box;
|
9
9
|
box-sizing: border-box; }
|
@@ -1,14 +1,24 @@
|
|
1
|
+
.no-box-shadow {
|
2
|
+
-moz-box-shadow: none;
|
3
|
+
-webkit-box-shadow: none;
|
4
|
+
box-shadow: none; }
|
5
|
+
|
1
6
|
.box-shadow {
|
2
|
-
-webkit-box-shadow: 0px 0px 5px #333333, 2px 2px 5px #222222;
|
3
7
|
-moz-box-shadow: 0px 0px 5px #333333, 2px 2px 5px #222222;
|
8
|
+
-webkit-box-shadow: 0px 0px 5px #333333, 2px 2px 5px #222222;
|
4
9
|
box-shadow: 0px 0px 5px #333333, 2px 2px 5px #222222; }
|
5
10
|
|
6
11
|
.single-box-shadow {
|
7
|
-
-
|
8
|
-
-
|
9
|
-
box-shadow: 0px
|
12
|
+
-moz-box-shadow: 0px 5px #333333;
|
13
|
+
-webkit-box-shadow: 0px 5px #333333;
|
14
|
+
box-shadow: 0px 5px #333333; }
|
10
15
|
|
11
16
|
.multiple-box-shadows {
|
12
|
-
-webkit-box-shadow: 0px 0px 5px #333333, 2px 2px 5px #222222;
|
13
17
|
-moz-box-shadow: 0px 0px 5px #333333, 2px 2px 5px #222222;
|
18
|
+
-webkit-box-shadow: 0px 0px 5px #333333, 2px 2px 5px #222222;
|
14
19
|
box-shadow: 0px 0px 5px #333333, 2px 2px 5px #222222; }
|
20
|
+
|
21
|
+
.legacy-single-box-shadow {
|
22
|
+
-moz-box-shadow: 0px 5px blue;
|
23
|
+
-webkit-box-shadow: 0px 5px blue;
|
24
|
+
box-shadow: 0px 5px blue; }
|
@@ -0,0 +1,14 @@
|
|
1
|
+
.black-is-0-percent {
|
2
|
+
brightness: 0%; }
|
3
|
+
|
4
|
+
.white-is-100-percent {
|
5
|
+
brightness: 100%; }
|
6
|
+
|
7
|
+
.green-is-58-point-7-percent {
|
8
|
+
brightness: 58.7%; }
|
9
|
+
|
10
|
+
.blue-is-11-point-4-percent {
|
11
|
+
brightness: 11.4%; }
|
12
|
+
|
13
|
+
.red-is-29-point-9-percent {
|
14
|
+
brightness: 29.9%; }
|
@@ -0,0 +1,306 @@
|
|
1
|
+
.android {
|
2
|
+
versions: "2.1", "2.2", "2.3", "3", "4", "4.1", "4.2";
|
3
|
+
background-img-opts: -webkit;
|
4
|
+
background-img-opts-unprefixed-at: "3";
|
5
|
+
border-image: -webkit;
|
6
|
+
border-radius: -webkit;
|
7
|
+
border-radius-unprefixed-at: "2.2";
|
8
|
+
css-animation: -webkit;
|
9
|
+
css-boxshadow: -webkit;
|
10
|
+
css-boxshadow-unprefixed-at: "4";
|
11
|
+
css-canvas: -webkit;
|
12
|
+
css-gradients: -webkit;
|
13
|
+
css-masks: -webkit;
|
14
|
+
css-reflections: -webkit;
|
15
|
+
css-repeating-gradients: -webkit;
|
16
|
+
css-transitions: -webkit;
|
17
|
+
css3-boxsizing: -webkit;
|
18
|
+
css3-boxsizing-unprefixed-at: "4";
|
19
|
+
multicolumn: -webkit;
|
20
|
+
text-stroke: -webkit;
|
21
|
+
transforms2d: -webkit;
|
22
|
+
transforms3d: -webkit;
|
23
|
+
user-select-none: -webkit; }
|
24
|
+
|
25
|
+
.android-chrome {
|
26
|
+
versions: "0";
|
27
|
+
css-animation: -webkit;
|
28
|
+
css-canvas: -webkit;
|
29
|
+
css-filters: -webkit;
|
30
|
+
css-masks: -webkit;
|
31
|
+
css-placeholder: -webkit;
|
32
|
+
css-reflections: -webkit;
|
33
|
+
font-feature: -webkit;
|
34
|
+
intrinsic-width: -webkit;
|
35
|
+
multicolumn: -webkit;
|
36
|
+
text-stroke: -webkit;
|
37
|
+
transforms2d: -webkit;
|
38
|
+
transforms3d: -webkit;
|
39
|
+
user-select-none: -webkit; }
|
40
|
+
|
41
|
+
.android-firefox {
|
42
|
+
versions: "0";
|
43
|
+
css-hyphens: -moz;
|
44
|
+
css-repeating-gradients: -moz;
|
45
|
+
css3-boxsizing: -moz;
|
46
|
+
css3-tabsize: -moz;
|
47
|
+
font-feature: -moz;
|
48
|
+
intrinsic-width: -moz;
|
49
|
+
multicolumn: -moz;
|
50
|
+
user-select-none: -moz; }
|
51
|
+
|
52
|
+
.blackberry {
|
53
|
+
versions: "7", "10";
|
54
|
+
border-image: -webkit;
|
55
|
+
border-image-unprefixed-at: "10";
|
56
|
+
calc: -webkit;
|
57
|
+
css-animation: -webkit;
|
58
|
+
css-boxshadow: -webkit;
|
59
|
+
css-boxshadow-unprefixed-at: "10";
|
60
|
+
css-canvas: -webkit;
|
61
|
+
css-filters: -webkit;
|
62
|
+
css-gradients: -webkit;
|
63
|
+
css-masks: -webkit;
|
64
|
+
css-reflections: -webkit;
|
65
|
+
css-repeating-gradients: -webkit;
|
66
|
+
css-transitions: -webkit;
|
67
|
+
css3-boxsizing: -webkit;
|
68
|
+
css3-boxsizing-unprefixed-at: "10";
|
69
|
+
flexbox: -webkit;
|
70
|
+
font-feature: -webkit;
|
71
|
+
intrinsic-width: -webkit;
|
72
|
+
multicolumn: -webkit;
|
73
|
+
text-stroke: -webkit;
|
74
|
+
transforms2d: -webkit;
|
75
|
+
transforms3d: -webkit;
|
76
|
+
user-select-none: -webkit; }
|
77
|
+
|
78
|
+
.chrome {
|
79
|
+
versions: "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";
|
80
|
+
border-image: -webkit;
|
81
|
+
border-image-unprefixed-at: "16";
|
82
|
+
border-radius: -webkit;
|
83
|
+
border-radius-unprefixed-at: "5";
|
84
|
+
calc: -webkit;
|
85
|
+
calc-unprefixed-at: "26";
|
86
|
+
css-animation: -webkit;
|
87
|
+
css-boxshadow: -webkit;
|
88
|
+
css-boxshadow-unprefixed-at: "10";
|
89
|
+
css-canvas: -webkit;
|
90
|
+
css-filters: -webkit;
|
91
|
+
css-gradients: -webkit;
|
92
|
+
css-gradients-unprefixed-at: "26";
|
93
|
+
css-masks: -webkit;
|
94
|
+
css-placeholder: -webkit;
|
95
|
+
css-reflections: -webkit;
|
96
|
+
css-regions: -webkit;
|
97
|
+
css-regions-unprefixed-at: "19";
|
98
|
+
css-repeating-gradients: -webkit;
|
99
|
+
css-repeating-gradients-unprefixed-at: "26";
|
100
|
+
css-transitions: -webkit;
|
101
|
+
css-transitions-unprefixed-at: "26";
|
102
|
+
css3-boxsizing: -webkit;
|
103
|
+
css3-boxsizing-unprefixed-at: "10";
|
104
|
+
flexbox: -webkit;
|
105
|
+
flexbox-unprefixed-at: "29";
|
106
|
+
font-feature: -webkit;
|
107
|
+
intrinsic-width: -webkit;
|
108
|
+
multicolumn: -webkit;
|
109
|
+
text-stroke: -webkit;
|
110
|
+
transforms2d: -webkit;
|
111
|
+
transforms3d: -webkit;
|
112
|
+
user-select-none: -webkit; }
|
113
|
+
|
114
|
+
.firefox {
|
115
|
+
versions: "2", "3", "3.5", "3.6", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25";
|
116
|
+
background-img-opts: -moz;
|
117
|
+
background-img-opts-unprefixed-at: "4";
|
118
|
+
border-image: -moz;
|
119
|
+
border-image-unprefixed-at: "15";
|
120
|
+
border-radius: -moz;
|
121
|
+
border-radius-unprefixed-at: "4";
|
122
|
+
calc: -moz;
|
123
|
+
calc-unprefixed-at: "16";
|
124
|
+
css-animation: -moz;
|
125
|
+
css-animation-unprefixed-at: "16";
|
126
|
+
css-boxshadow: -moz;
|
127
|
+
css-boxshadow-unprefixed-at: "4";
|
128
|
+
css-gradients: -moz;
|
129
|
+
css-gradients-unprefixed-at: "16";
|
130
|
+
css-hyphens: -moz;
|
131
|
+
css-placeholder: -moz;
|
132
|
+
css-repeating-gradients: -moz;
|
133
|
+
css-repeating-gradients-unprefixed-at: "16";
|
134
|
+
css-resize: prefix-no-longer-needed;
|
135
|
+
css-resize-unprefixed-at: "5";
|
136
|
+
css-selection: -moz;
|
137
|
+
css-transitions: -moz;
|
138
|
+
css-transitions-unprefixed-at: "16";
|
139
|
+
css3-boxsizing: -moz;
|
140
|
+
css3-tabsize: -moz;
|
141
|
+
font-feature: -moz;
|
142
|
+
inline-block: prefix-no-longer-needed;
|
143
|
+
inline-block-unprefixed-at: "3";
|
144
|
+
intrinsic-width: -moz;
|
145
|
+
multicolumn: -moz;
|
146
|
+
transforms2d: -moz;
|
147
|
+
transforms2d-unprefixed-at: "16";
|
148
|
+
transforms3d: -moz;
|
149
|
+
transforms3d-unprefixed-at: "16";
|
150
|
+
user-select-none: -moz; }
|
151
|
+
|
152
|
+
.ie {
|
153
|
+
versions: "5.5", "6", "7", "8", "9", "10", "11";
|
154
|
+
css-grid: -ms;
|
155
|
+
css-hyphens: -ms;
|
156
|
+
css-placeholder: -ms;
|
157
|
+
css-regions: -ms;
|
158
|
+
transforms2d: -ms;
|
159
|
+
transforms2d-unprefixed-at: "10";
|
160
|
+
user-select-none: -ms; }
|
161
|
+
|
162
|
+
.ie-mobile {
|
163
|
+
versions: "10";
|
164
|
+
css-grid: -ms;
|
165
|
+
css-placeholder: -ms;
|
166
|
+
css-regions: -ms;
|
167
|
+
user-select-none: -ms; }
|
168
|
+
|
169
|
+
.ios-safari {
|
170
|
+
versions: "3.2", "4.0-4.1", "4.2-4.3", "5.0-5.1", "6.0-6.1", "7.0";
|
171
|
+
border-image: -webkit;
|
172
|
+
border-image-unprefixed-at: "6.0-6.1";
|
173
|
+
border-radius: -webkit;
|
174
|
+
border-radius-unprefixed-at: "4.0-4.1";
|
175
|
+
calc: -webkit;
|
176
|
+
calc-unprefixed-at: "7.0";
|
177
|
+
css-animation: -webkit;
|
178
|
+
css-boxshadow: -webkit;
|
179
|
+
css-boxshadow-unprefixed-at: "5.0-5.1";
|
180
|
+
css-canvas: -webkit;
|
181
|
+
css-filters: -webkit;
|
182
|
+
css-gradients: -webkit;
|
183
|
+
css-gradients-unprefixed-at: "7.0";
|
184
|
+
css-hyphens: -webkit;
|
185
|
+
css-masks: -webkit;
|
186
|
+
css-placeholder: -webkit;
|
187
|
+
css-reflections: -webkit;
|
188
|
+
css-regions: -webkit;
|
189
|
+
css-repeating-gradients: -webkit;
|
190
|
+
css-repeating-gradients-unprefixed-at: "7.0";
|
191
|
+
css-transitions: -webkit;
|
192
|
+
css-transitions-unprefixed-at: "7.0";
|
193
|
+
css3-boxsizing: -webkit;
|
194
|
+
css3-boxsizing-unprefixed-at: "5.0-5.1";
|
195
|
+
flexbox: -webkit;
|
196
|
+
font-feature: -webkit;
|
197
|
+
intrinsic-width: -webkit;
|
198
|
+
multicolumn: -webkit;
|
199
|
+
text-stroke: -webkit;
|
200
|
+
transforms2d: -webkit;
|
201
|
+
transforms3d: -webkit;
|
202
|
+
user-select-none: -webkit; }
|
203
|
+
|
204
|
+
.opera {
|
205
|
+
versions: "9.5-9.6", "10.0-10.1", "10.5", "10.6", "11", "11.1", "11.5", "11.6", "12", "12.1", "15", "16", "17";
|
206
|
+
background-img-opts: prefix-no-longer-needed;
|
207
|
+
background-img-opts-unprefixed-at: "10.5";
|
208
|
+
border-image: -o;
|
209
|
+
border-image-unprefixed-at: "15";
|
210
|
+
css-animation: prefix-no-longer-needed;
|
211
|
+
css-canvas: prefix-no-longer-needed;
|
212
|
+
css-filters: prefix-no-longer-needed;
|
213
|
+
css-gradients: -o;
|
214
|
+
css-gradients-unprefixed-at: "12.1";
|
215
|
+
css-masks: prefix-no-longer-needed;
|
216
|
+
css-placeholder: prefix-no-longer-needed;
|
217
|
+
css-placeholder-unprefixed-at: "16";
|
218
|
+
css-reflections: prefix-no-longer-needed;
|
219
|
+
css-repeating-gradients: -o;
|
220
|
+
css-repeating-gradients-unprefixed-at: "12.1";
|
221
|
+
css-transitions: -o;
|
222
|
+
css-transitions-unprefixed-at: "12.1";
|
223
|
+
css3-tabsize: -o;
|
224
|
+
css3-tabsize-unprefixed-at: "15";
|
225
|
+
flexbox: prefix-no-longer-needed;
|
226
|
+
font-feature: prefix-no-longer-needed;
|
227
|
+
intrinsic-width: prefix-no-longer-needed;
|
228
|
+
multicolumn: prefix-no-longer-needed;
|
229
|
+
object-fit: -o;
|
230
|
+
object-fit-unprefixed-at: "15";
|
231
|
+
text-overflow: -o;
|
232
|
+
text-overflow-unprefixed-at: "11";
|
233
|
+
text-stroke: prefix-no-longer-needed;
|
234
|
+
transforms2d: -o;
|
235
|
+
transforms3d: prefix-no-longer-needed;
|
236
|
+
user-select-none: prefix-no-longer-needed; }
|
237
|
+
|
238
|
+
.opera-mini {
|
239
|
+
versions: "5.0-7.0";
|
240
|
+
text-overflow: -o; }
|
241
|
+
|
242
|
+
.opera-mobile {
|
243
|
+
versions: "10", "11.5", "12", "12.1", "14";
|
244
|
+
border-image: -o;
|
245
|
+
border-image-unprefixed-at: "14";
|
246
|
+
css-animation: prefix-no-longer-needed;
|
247
|
+
css-canvas: prefix-no-longer-needed;
|
248
|
+
css-filters: prefix-no-longer-needed;
|
249
|
+
css-gradients: -o;
|
250
|
+
css-gradients-unprefixed-at: "12.1";
|
251
|
+
css-masks: prefix-no-longer-needed;
|
252
|
+
css-placeholder: prefix-no-longer-needed;
|
253
|
+
css-reflections: prefix-no-longer-needed;
|
254
|
+
css-repeating-gradients: -o;
|
255
|
+
css-repeating-gradients-unprefixed-at: "12.1";
|
256
|
+
css-transitions: -o;
|
257
|
+
css-transitions-unprefixed-at: "12.1";
|
258
|
+
css3-tabsize: -o;
|
259
|
+
css3-tabsize-unprefixed-at: "14";
|
260
|
+
flexbox: prefix-no-longer-needed;
|
261
|
+
font-feature: prefix-no-longer-needed;
|
262
|
+
intrinsic-width: prefix-no-longer-needed;
|
263
|
+
multicolumn: prefix-no-longer-needed;
|
264
|
+
object-fit: -o;
|
265
|
+
object-fit-unprefixed-at: "14";
|
266
|
+
text-overflow: -o;
|
267
|
+
text-overflow-unprefixed-at: "12.1";
|
268
|
+
text-stroke: prefix-no-longer-needed;
|
269
|
+
transforms2d: -o;
|
270
|
+
transforms3d: prefix-no-longer-needed;
|
271
|
+
user-select-none: prefix-no-longer-needed; }
|
272
|
+
|
273
|
+
.safari {
|
274
|
+
versions: "3.1", "3.2", "4", "5", "5.1", "6", "7";
|
275
|
+
border-image: -webkit;
|
276
|
+
border-image-unprefixed-at: "6";
|
277
|
+
border-radius: -webkit;
|
278
|
+
border-radius-unprefixed-at: "5";
|
279
|
+
calc: -webkit;
|
280
|
+
calc-unprefixed-at: "7";
|
281
|
+
css-animation: -webkit;
|
282
|
+
css-boxshadow: -webkit;
|
283
|
+
css-boxshadow-unprefixed-at: "5.1";
|
284
|
+
css-canvas: -webkit;
|
285
|
+
css-filters: -webkit;
|
286
|
+
css-gradients: -webkit;
|
287
|
+
css-gradients-unprefixed-at: "7";
|
288
|
+
css-hyphens: -webkit;
|
289
|
+
css-masks: -webkit;
|
290
|
+
css-placeholder: -webkit;
|
291
|
+
css-reflections: -webkit;
|
292
|
+
css-regions: -webkit;
|
293
|
+
css-repeating-gradients: -webkit;
|
294
|
+
css-repeating-gradients-unprefixed-at: "7";
|
295
|
+
css-transitions: -webkit;
|
296
|
+
css-transitions-unprefixed-at: "7";
|
297
|
+
css3-boxsizing: -webkit;
|
298
|
+
css3-boxsizing-unprefixed-at: "5.1";
|
299
|
+
flexbox: -webkit;
|
300
|
+
font-feature: -webkit;
|
301
|
+
intrinsic-width: -webkit;
|
302
|
+
multicolumn: -webkit;
|
303
|
+
text-stroke: -webkit;
|
304
|
+
transforms2d: -webkit;
|
305
|
+
transforms3d: -webkit;
|
306
|
+
user-select-none: -webkit; }
|
@@ -0,0 +1,18 @@
|
|
1
|
+
.handles-null {
|
2
|
+
content: "there should be no property below this one"; }
|
3
|
+
|
4
|
+
.contrasts-light {
|
5
|
+
background-color: #eeeeee;
|
6
|
+
color: black; }
|
7
|
+
|
8
|
+
.contrasts-dark {
|
9
|
+
background-color: #222222;
|
10
|
+
color: white; }
|
11
|
+
|
12
|
+
.contrasts-light-with-contrast-color-override {
|
13
|
+
background-color: #eeeeee;
|
14
|
+
color: red; }
|
15
|
+
|
16
|
+
.contrasts-dark-with-contrast-color-override {
|
17
|
+
background-color: #222222;
|
18
|
+
color: yellow; }
|