compass 0.13.alpha.7 → 0.13.alpha.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (68) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION.yml +1 -1
  3. data/frameworks/compass/stylesheets/compass/_support.scss +136 -62
  4. data/frameworks/compass/stylesheets/compass/css3/_box-shadow.scss +1 -1
  5. data/frameworks/compass/stylesheets/compass/css3/_flexbox.scss +11 -2
  6. data/frameworks/compass/stylesheets/compass/css3/_inline-block.scss +2 -2
  7. data/frameworks/compass/stylesheets/compass/css3/_opacity.scss +1 -1
  8. data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +1 -1
  9. data/frameworks/compass/stylesheets/compass/typography/lists/_horizontal-list.scss +2 -2
  10. data/frameworks/compass/stylesheets/compass/typography/lists/_inline-list.scss +1 -1
  11. data/frameworks/compass/stylesheets/compass/utilities/general/_float.scss +3 -3
  12. data/frameworks/compass/stylesheets/compass/utilities/general/_hacks.scss +6 -6
  13. data/lib/compass/browser_support.rb +2 -2
  14. data/lib/compass/caniuse.rb +55 -19
  15. data/lib/compass/sass_extensions/functions/cross_browser_support.rb +34 -10
  16. data/test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css +0 -3
  17. data/test/fixtures/stylesheets/compass/css/animation.css +0 -3
  18. data/test/fixtures/stylesheets/compass/css/filters.css +30 -6
  19. data/test/fixtures/stylesheets/compass/css/gradients.css +7 -2
  20. data/test/fixtures/stylesheets/compass/css/support.css +23 -16
  21. data/test/fixtures/stylesheets/compass/sass/support.scss +45 -8
  22. data/test/fixtures/stylesheets/envtest/tmp/env.css +3 -3
  23. data/test/units/caniuse_test.rb +29 -10
  24. metadata +3 -91
  25. data/test/fixtures/stylesheets/compass/tmp/animation-with-legacy-ie.css +0 -22
  26. data/test/fixtures/stylesheets/compass/tmp/animation.css +0 -22
  27. data/test/fixtures/stylesheets/compass/tmp/appearance.css +0 -3
  28. data/test/fixtures/stylesheets/compass/tmp/background-clip.css +0 -11
  29. data/test/fixtures/stylesheets/compass/tmp/background-origin.css +0 -11
  30. data/test/fixtures/stylesheets/compass/tmp/background-size.css +0 -17
  31. data/test/fixtures/stylesheets/compass/tmp/border_radius.css +0 -14
  32. data/test/fixtures/stylesheets/compass/tmp/box-sizing.css +0 -9
  33. data/test/fixtures/stylesheets/compass/tmp/box.css +0 -103
  34. data/test/fixtures/stylesheets/compass/tmp/box_shadow.css +0 -24
  35. data/test/fixtures/stylesheets/compass/tmp/brightness.css +0 -14
  36. data/test/fixtures/stylesheets/compass/tmp/browser-support.css +0 -306
  37. data/test/fixtures/stylesheets/compass/tmp/color.css +0 -18
  38. data/test/fixtures/stylesheets/compass/tmp/columns.css +0 -134
  39. data/test/fixtures/stylesheets/compass/tmp/filters.css +0 -29
  40. data/test/fixtures/stylesheets/compass/tmp/flexbox.css +0 -94
  41. data/test/fixtures/stylesheets/compass/tmp/fonts.css +0 -4
  42. data/test/fixtures/stylesheets/compass/tmp/force-wrap.css +0 -9
  43. data/test/fixtures/stylesheets/compass/tmp/gradients.css +0 -230
  44. data/test/fixtures/stylesheets/compass/tmp/grid_background.css +0 -64
  45. data/test/fixtures/stylesheets/compass/tmp/hyphenation.css +0 -16
  46. data/test/fixtures/stylesheets/compass/tmp/image_size.css +0 -15
  47. data/test/fixtures/stylesheets/compass/tmp/images.css +0 -8
  48. data/test/fixtures/stylesheets/compass/tmp/layout.css +0 -16
  49. data/test/fixtures/stylesheets/compass/tmp/legacy_clearfix.css +0 -26
  50. data/test/fixtures/stylesheets/compass/tmp/lists.css +0 -145
  51. data/test/fixtures/stylesheets/compass/tmp/opacity.css +0 -3
  52. data/test/fixtures/stylesheets/compass/tmp/print.css +0 -11
  53. data/test/fixtures/stylesheets/compass/tmp/regions.css +0 -9
  54. data/test/fixtures/stylesheets/compass/tmp/replacement.css +0 -59
  55. data/test/fixtures/stylesheets/compass/tmp/reset.css +0 -59
  56. data/test/fixtures/stylesheets/compass/tmp/selection.css +0 -50
  57. data/test/fixtures/stylesheets/compass/tmp/sprites.css +0 -1263
  58. data/test/fixtures/stylesheets/compass/tmp/sprites_with_explicit_separator.css +0 -16
  59. data/test/fixtures/stylesheets/compass/tmp/stretching.css +0 -66
  60. data/test/fixtures/stylesheets/compass/tmp/support.css +0 -59
  61. data/test/fixtures/stylesheets/compass/tmp/text_shadow.css +0 -29
  62. data/test/fixtures/stylesheets/compass/tmp/transform.css +0 -369
  63. data/test/fixtures/stylesheets/compass/tmp/transition.css +0 -116
  64. data/test/fixtures/stylesheets/compass/tmp/typography/links/hover-link.css +0 -4
  65. data/test/fixtures/stylesheets/compass/tmp/units.css +0 -30
  66. data/test/fixtures/stylesheets/compass/tmp/user-interface.css +0 -52
  67. data/test/fixtures/stylesheets/compass/tmp/utilities.css +0 -71
  68. data/test/fixtures/stylesheets/compass/tmp/vertical_rhythm.css +0 -211
@@ -1,11 +1,11 @@
1
1
  .env {
2
- env: development; }
2
+ env: production; }
3
3
 
4
4
  .time {
5
- time: 2013-10-12; }
5
+ time: 2013-10-21; }
6
6
 
7
7
  .date {
8
- date: 2013-10-12; }
8
+ date: 2013-10-21; }
9
9
 
10
10
  .filename {
11
11
  file: env.scss; }
@@ -87,23 +87,34 @@ class CanIUseTest < Test::Unit::TestCase
87
87
  assert_equal "-webkit", caniuse.requires_prefix("opera", "16", "css-filters", DEFAULT_CAPABILITY_OPTIONS)
88
88
  end
89
89
 
90
- def test_browser_minimums
91
- mins = caniuse.browser_minimums("css-filters", "-webkit")
90
+ def test_browser_ranges_only_prefixed
91
+ mins = caniuse.browser_ranges("border-radius", "-webkit", false)
92
92
  expected = {
93
- "android-chrome"=>"0",
94
- "blackberry"=>"10",
95
- "chrome"=>"18",
96
- "ios-safari"=>"6.0-6.1",
97
- "opera"=>"15",
98
- "opera-mobile"=>"14",
99
- "safari"=>"6"
93
+ "android"=>["2.1", "2.1"],
94
+ "chrome"=>["4", "4"],
95
+ "ios-safari"=>["3.2", "3.2"],
96
+ "safari"=>["3.1", "4"]
100
97
  }
101
98
  assert_equal(expected, mins)
102
- mins = caniuse.browser_minimums("css-filters", "-o")
99
+ end
100
+
101
+ def test_ranges_are_empty_when_prefix_doesnt_exit
102
+ mins = caniuse.browser_ranges("css-filters", "-o")
103
103
  expected = {}
104
104
  assert_equal(expected, mins)
105
105
  end
106
106
 
107
+ def test_browser_ranges_including_unprefixed
108
+ mins = caniuse.browser_ranges("border-radius", "-webkit")
109
+ expected = {
110
+ "android"=>["2.1", "4.2"],
111
+ "chrome"=>["4", "31"],
112
+ "ios-safari"=>["3.2", "7.0"],
113
+ "safari"=>["3.1", "7"]
114
+ }
115
+ assert_equal(expected, mins)
116
+ end
117
+
107
118
  def test_capability_matches
108
119
  assert caniuse.capability_matches(
109
120
  caniuse.browser_support("chrome", "10", "flexbox"),
@@ -112,4 +123,12 @@ class CanIUseTest < Test::Unit::TestCase
112
123
  caniuse.browser_support("chrome", "10", "flexbox"),
113
124
  [{:full_support => true}, {:partial_support => true, :spec_versions => [3]}])
114
125
  end
126
+
127
+ def test_omitted_usage
128
+ assert_equal 0, caniuse.omitted_usage("chrome", "4")
129
+ assert_equal caniuse.usage("chrome", "4"), caniuse.omitted_usage("chrome", "5")
130
+ assert_equal caniuse.usage("chrome", "4"), caniuse.omitted_usage("chrome", "4", "4")
131
+ assert_equal caniuse.usage("chrome", "4") + caniuse.usage("chrome", "5"),
132
+ caniuse.omitted_usage("chrome", "4", "5")
133
+ end
115
134
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: compass
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.alpha.7
4
+ version: 0.13.alpha.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Eppstein
@@ -13,7 +13,7 @@ authors:
13
13
  autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
- date: 2013-10-12 00:00:00.000000000 Z
16
+ date: 2013-10-21 00:00:00.000000000 Z
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
19
19
  name: sass
@@ -1077,50 +1077,6 @@ files:
1077
1077
  - test/fixtures/stylesheets/compass/sass/user-interface.scss
1078
1078
  - test/fixtures/stylesheets/compass/sass/utilities.scss
1079
1079
  - test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss
1080
- - test/fixtures/stylesheets/compass/tmp/animation-with-legacy-ie.css
1081
- - test/fixtures/stylesheets/compass/tmp/animation.css
1082
- - test/fixtures/stylesheets/compass/tmp/appearance.css
1083
- - test/fixtures/stylesheets/compass/tmp/background-clip.css
1084
- - test/fixtures/stylesheets/compass/tmp/background-origin.css
1085
- - test/fixtures/stylesheets/compass/tmp/background-size.css
1086
- - test/fixtures/stylesheets/compass/tmp/border_radius.css
1087
- - test/fixtures/stylesheets/compass/tmp/box-sizing.css
1088
- - test/fixtures/stylesheets/compass/tmp/box.css
1089
- - test/fixtures/stylesheets/compass/tmp/box_shadow.css
1090
- - test/fixtures/stylesheets/compass/tmp/brightness.css
1091
- - test/fixtures/stylesheets/compass/tmp/browser-support.css
1092
- - test/fixtures/stylesheets/compass/tmp/color.css
1093
- - test/fixtures/stylesheets/compass/tmp/columns.css
1094
- - test/fixtures/stylesheets/compass/tmp/filters.css
1095
- - test/fixtures/stylesheets/compass/tmp/flexbox.css
1096
- - test/fixtures/stylesheets/compass/tmp/fonts.css
1097
- - test/fixtures/stylesheets/compass/tmp/force-wrap.css
1098
- - test/fixtures/stylesheets/compass/tmp/gradients.css
1099
- - test/fixtures/stylesheets/compass/tmp/grid_background.css
1100
- - test/fixtures/stylesheets/compass/tmp/hyphenation.css
1101
- - test/fixtures/stylesheets/compass/tmp/image_size.css
1102
- - test/fixtures/stylesheets/compass/tmp/images.css
1103
- - test/fixtures/stylesheets/compass/tmp/layout.css
1104
- - test/fixtures/stylesheets/compass/tmp/legacy_clearfix.css
1105
- - test/fixtures/stylesheets/compass/tmp/lists.css
1106
- - test/fixtures/stylesheets/compass/tmp/opacity.css
1107
- - test/fixtures/stylesheets/compass/tmp/print.css
1108
- - test/fixtures/stylesheets/compass/tmp/regions.css
1109
- - test/fixtures/stylesheets/compass/tmp/replacement.css
1110
- - test/fixtures/stylesheets/compass/tmp/reset.css
1111
- - test/fixtures/stylesheets/compass/tmp/selection.css
1112
- - test/fixtures/stylesheets/compass/tmp/sprites.css
1113
- - test/fixtures/stylesheets/compass/tmp/sprites_with_explicit_separator.css
1114
- - test/fixtures/stylesheets/compass/tmp/stretching.css
1115
- - test/fixtures/stylesheets/compass/tmp/support.css
1116
- - test/fixtures/stylesheets/compass/tmp/text_shadow.css
1117
- - test/fixtures/stylesheets/compass/tmp/transform.css
1118
- - test/fixtures/stylesheets/compass/tmp/transition.css
1119
- - test/fixtures/stylesheets/compass/tmp/typography/links/hover-link.css
1120
- - test/fixtures/stylesheets/compass/tmp/units.css
1121
- - test/fixtures/stylesheets/compass/tmp/user-interface.css
1122
- - test/fixtures/stylesheets/compass/tmp/utilities.css
1123
- - test/fixtures/stylesheets/compass/tmp/vertical_rhythm.css
1124
1080
  - test/fixtures/stylesheets/envtest/config.rb
1125
1081
  - test/fixtures/stylesheets/envtest/css/env.css
1126
1082
  - test/fixtures/stylesheets/envtest/sass/env.scss
@@ -1202,7 +1158,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1202
1158
  version: 1.3.1
1203
1159
  requirements: []
1204
1160
  rubyforge_project:
1205
- rubygems_version: 2.0.3
1161
+ rubygems_version: 2.0.0.rc.2
1206
1162
  signing_key:
1207
1163
  specification_version: 4
1208
1164
  summary: A Real Stylesheet Framework
@@ -1607,50 +1563,6 @@ test_files:
1607
1563
  - test/fixtures/stylesheets/compass/sass/user-interface.scss
1608
1564
  - test/fixtures/stylesheets/compass/sass/utilities.scss
1609
1565
  - test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss
1610
- - test/fixtures/stylesheets/compass/tmp/animation-with-legacy-ie.css
1611
- - test/fixtures/stylesheets/compass/tmp/animation.css
1612
- - test/fixtures/stylesheets/compass/tmp/appearance.css
1613
- - test/fixtures/stylesheets/compass/tmp/background-clip.css
1614
- - test/fixtures/stylesheets/compass/tmp/background-origin.css
1615
- - test/fixtures/stylesheets/compass/tmp/background-size.css
1616
- - test/fixtures/stylesheets/compass/tmp/border_radius.css
1617
- - test/fixtures/stylesheets/compass/tmp/box-sizing.css
1618
- - test/fixtures/stylesheets/compass/tmp/box.css
1619
- - test/fixtures/stylesheets/compass/tmp/box_shadow.css
1620
- - test/fixtures/stylesheets/compass/tmp/brightness.css
1621
- - test/fixtures/stylesheets/compass/tmp/browser-support.css
1622
- - test/fixtures/stylesheets/compass/tmp/color.css
1623
- - test/fixtures/stylesheets/compass/tmp/columns.css
1624
- - test/fixtures/stylesheets/compass/tmp/filters.css
1625
- - test/fixtures/stylesheets/compass/tmp/flexbox.css
1626
- - test/fixtures/stylesheets/compass/tmp/fonts.css
1627
- - test/fixtures/stylesheets/compass/tmp/force-wrap.css
1628
- - test/fixtures/stylesheets/compass/tmp/gradients.css
1629
- - test/fixtures/stylesheets/compass/tmp/grid_background.css
1630
- - test/fixtures/stylesheets/compass/tmp/hyphenation.css
1631
- - test/fixtures/stylesheets/compass/tmp/image_size.css
1632
- - test/fixtures/stylesheets/compass/tmp/images.css
1633
- - test/fixtures/stylesheets/compass/tmp/layout.css
1634
- - test/fixtures/stylesheets/compass/tmp/legacy_clearfix.css
1635
- - test/fixtures/stylesheets/compass/tmp/lists.css
1636
- - test/fixtures/stylesheets/compass/tmp/opacity.css
1637
- - test/fixtures/stylesheets/compass/tmp/print.css
1638
- - test/fixtures/stylesheets/compass/tmp/regions.css
1639
- - test/fixtures/stylesheets/compass/tmp/replacement.css
1640
- - test/fixtures/stylesheets/compass/tmp/reset.css
1641
- - test/fixtures/stylesheets/compass/tmp/selection.css
1642
- - test/fixtures/stylesheets/compass/tmp/sprites.css
1643
- - test/fixtures/stylesheets/compass/tmp/sprites_with_explicit_separator.css
1644
- - test/fixtures/stylesheets/compass/tmp/stretching.css
1645
- - test/fixtures/stylesheets/compass/tmp/support.css
1646
- - test/fixtures/stylesheets/compass/tmp/text_shadow.css
1647
- - test/fixtures/stylesheets/compass/tmp/transform.css
1648
- - test/fixtures/stylesheets/compass/tmp/transition.css
1649
- - test/fixtures/stylesheets/compass/tmp/typography/links/hover-link.css
1650
- - test/fixtures/stylesheets/compass/tmp/units.css
1651
- - test/fixtures/stylesheets/compass/tmp/user-interface.css
1652
- - test/fixtures/stylesheets/compass/tmp/utilities.css
1653
- - test/fixtures/stylesheets/compass/tmp/vertical_rhythm.css
1654
1566
  - test/fixtures/stylesheets/envtest/config.rb
1655
1567
  - test/fixtures/stylesheets/envtest/css/env.css
1656
1568
  - test/fixtures/stylesheets/envtest/sass/env.scss
@@ -1,22 +0,0 @@
1
- @-moz-keyframes test {
2
- 0%, 100% {
3
- opacity: 1; }
4
-
5
- 50% {
6
- opacity: 0; } }
7
- @-webkit-keyframes test {
8
- 0%, 100% {
9
- opacity: 1; }
10
-
11
- 50% {
12
- opacity: 0; } }
13
- @keyframes test {
14
- 0%, 100% {
15
- opacity: 1; }
16
-
17
- 50% {
18
- opacity: 0; } }
19
- .animation {
20
- -moz-animation: test;
21
- -webkit-animation: test;
22
- animation: test; }
@@ -1,22 +0,0 @@
1
- @-moz-keyframes test {
2
- 0%, 100% {
3
- background-color: red; }
4
-
5
- 50% {
6
- background-color: blue; } }
7
- @-webkit-keyframes test {
8
- 0%, 100% {
9
- background-color: red; }
10
-
11
- 50% {
12
- background-color: blue; } }
13
- @keyframes test {
14
- 0%, 100% {
15
- background-color: red; }
16
-
17
- 50% {
18
- background-color: blue; } }
19
- .animation {
20
- -moz-animation: test;
21
- -webkit-animation: test;
22
- animation: test; }
@@ -1,3 +0,0 @@
1
- .searchfield {
2
- -moz-appearance: searchfield;
3
- -webkit-appearance: searchfield; }
@@ -1,11 +0,0 @@
1
- .background-clip {
2
- -moz-background-clip: border;
3
- -o-background-clip: border-box;
4
- -webkit-background-clip: border;
5
- background-clip: border-box; }
6
-
7
- .background-clip-multiple {
8
- -moz-background-clip: border, padding, content;
9
- -o-background-clip: border-box, padding-box, content-box;
10
- -webkit-background-clip: border, padding, content;
11
- background-clip: border-box, padding-box, content-box; }
@@ -1,11 +0,0 @@
1
- .background-origin {
2
- -moz-background-origin: border;
3
- -o-background-origin: border-box;
4
- -webkit-background-origin: border;
5
- background-origin: border-box; }
6
-
7
- .background-origin-multiple {
8
- -moz-background-origin: border, padding, content;
9
- -o-background-origin: border-box, padding-box, content-box;
10
- -webkit-background-origin: border, padding, content;
11
- background-origin: border-box, padding-box, content-box; }
@@ -1,17 +0,0 @@
1
- .background-size-default {
2
- -moz-background-size: 100% auto;
3
- -o-background-size: 100% auto;
4
- -webkit-background-size: 100% auto;
5
- background-size: 100% auto; }
6
-
7
- .background-size-single {
8
- -moz-background-size: 50% 25%;
9
- -o-background-size: 50% 25%;
10
- -webkit-background-size: 50% 25%;
11
- background-size: 50% 25%; }
12
-
13
- .background-size-multiple {
14
- -moz-background-size: 4em 3em, 100% auto, 50%;
15
- -o-background-size: 4em 3em, 100% auto, 50%;
16
- -webkit-background-size: 4em 3em, 100% auto, 50%;
17
- background-size: 4em 3em, 100% auto, 50%; }
@@ -1,14 +0,0 @@
1
- .simple {
2
- -moz-border-radius: 4px / 4px;
3
- -webkit-border-radius: 4px 4px;
4
- border-radius: 4px / 4px; }
5
-
6
- .compound {
7
- -moz-border-radius: 2px 5px / 3px 6px;
8
- -webkit-border-radius: 2px 3px;
9
- border-radius: 2px 5px / 3px 6px; }
10
-
11
- .crazy {
12
- -moz-border-radius: 1px 3px 5px 7px / 2px 4px 6px 8px;
13
- -webkit-border-radius: 1px 2px;
14
- border-radius: 1px 3px 5px 7px / 2px 4px 6px 8px; }
@@ -1,9 +0,0 @@
1
- .div {
2
- -moz-box-sizing: content-box;
3
- -webkit-box-sizing: content-box;
4
- box-sizing: content-box; }
5
-
6
- .div {
7
- -moz-box-sizing: border-box;
8
- -webkit-box-sizing: border-box;
9
- box-sizing: border-box; }
@@ -1,103 +0,0 @@
1
- .hbox {
2
- display: -webkit-box;
3
- display: -moz-box;
4
- display: -ms-box;
5
- display: box;
6
- -webkit-box-orient: horizontal;
7
- -moz-box-orient: horizontal;
8
- -ms-box-orient: horizontal;
9
- box-orient: horizontal;
10
- -webkit-box-align: stretch;
11
- -moz-box-align: stretch;
12
- -ms-box-align: stretch;
13
- box-align: stretch; }
14
- .hbox > * {
15
- -webkit-box-flex: 0;
16
- -moz-box-flex: 0;
17
- -ms-box-flex: 0;
18
- box-flex: 0; }
19
-
20
- .vbox {
21
- display: -webkit-box;
22
- display: -moz-box;
23
- display: -ms-box;
24
- display: box;
25
- -webkit-box-orient: vertical;
26
- -moz-box-orient: vertical;
27
- -ms-box-orient: vertical;
28
- box-orient: vertical;
29
- -webkit-box-align: stretch;
30
- -moz-box-align: stretch;
31
- -ms-box-align: stretch;
32
- box-align: stretch; }
33
- .vbox > * {
34
- -webkit-box-flex: 0;
35
- -moz-box-flex: 0;
36
- -ms-box-flex: 0;
37
- box-flex: 0; }
38
-
39
- .spacer {
40
- -webkit-box-flex: 1;
41
- -moz-box-flex: 1;
42
- -ms-box-flex: 1;
43
- box-flex: 1; }
44
-
45
- .reverse {
46
- -webkit-box-direction: reverse;
47
- -moz-box-direction: reverse;
48
- -ms-box-direction: reverse;
49
- box-direction: reverse; }
50
-
51
- .box-flex-0 {
52
- -webkit-box-flex: 0;
53
- -moz-box-flex: 0;
54
- -ms-box-flex: 0;
55
- box-flex: 0; }
56
-
57
- .box-flex-1 {
58
- -webkit-box-flex: 1;
59
- -moz-box-flex: 1;
60
- -ms-box-flex: 1;
61
- box-flex: 1; }
62
-
63
- .box-flex-2 {
64
- -webkit-box-flex: 2;
65
- -moz-box-flex: 2;
66
- -ms-box-flex: 2;
67
- box-flex: 2; }
68
-
69
- .box-flex-group-0 {
70
- -webkit-box-flex-group: 0;
71
- -moz-box-flex-group: 0;
72
- -ms-box-flex-group: 0;
73
- box-flex-group: 0; }
74
-
75
- .box-flex-group-1 {
76
- -webkit-box-flex-group: 1;
77
- -moz-box-flex-group: 1;
78
- -ms-box-flex-group: 1;
79
- box-flex-group: 1; }
80
-
81
- .box-flex-group-2 {
82
- -webkit-box-flex-group: 2;
83
- -moz-box-flex-group: 2;
84
- -ms-box-flex-group: 2;
85
- box-flex-group: 2; }
86
-
87
- .start {
88
- -webkit-box-pack: start;
89
- -moz-box-pack: start;
90
- -ms-box-pack: start;
91
- box-pack: start; }
92
-
93
- .end {
94
- -webkit-box-pack: end;
95
- -moz-box-pack: end;
96
- -ms-box-pack: end;
97
- box-pack: end; }
98
-
99
- .center {
100
- -webkit-box-pack: center;
101
- -moz-box-pack: center;
102
- -ms-box-pack: center;
103
- box-pack: center; }
@@ -1,24 +0,0 @@
1
- .no-box-shadow {
2
- -moz-box-shadow: none;
3
- -webkit-box-shadow: none;
4
- box-shadow: none; }
5
-
6
- .box-shadow {
7
- -moz-box-shadow: 0px 0px 5px #333333, 2px 2px 5px #222222;
8
- -webkit-box-shadow: 0px 0px 5px #333333, 2px 2px 5px #222222;
9
- box-shadow: 0px 0px 5px #333333, 2px 2px 5px #222222; }
10
-
11
- .single-box-shadow {
12
- -moz-box-shadow: 0px 5px #333333;
13
- -webkit-box-shadow: 0px 5px #333333;
14
- box-shadow: 0px 5px #333333; }
15
-
16
- .multiple-box-shadows {
17
- -moz-box-shadow: 0px 0px 5px #333333, 2px 2px 5px #222222;
18
- -webkit-box-shadow: 0px 0px 5px #333333, 2px 2px 5px #222222;
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; }