bourbon 4.2.4 → 7.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (266) hide show
  1. checksums.yaml +5 -5
  2. data/.circleci/config.yml +42 -0
  3. data/.github/ISSUE_TEMPLATE.md +22 -0
  4. data/.github/PULL_REQUEST_TEMPLATE.md +10 -0
  5. data/.gitignore +1 -1
  6. data/.hound.yml +4 -1
  7. data/.npmignore +7 -4
  8. data/.stylelintrc.json +3 -0
  9. data/CHANGELOG.md +450 -0
  10. data/CODE_OF_CONDUCT.md +6 -0
  11. data/CONTRIBUTING.md +81 -28
  12. data/Gemfile +1 -1
  13. data/LICENSE.md +1 -1
  14. data/README.md +153 -86
  15. data/RELEASING.md +32 -0
  16. data/Rakefile +0 -2
  17. data/bin/bourbon +1 -2
  18. data/bourbon.gemspec +31 -24
  19. data/core/_bourbon.scss +54 -0
  20. data/core/bourbon/helpers/_buttons-list.scss +14 -0
  21. data/core/bourbon/helpers/_scales.scss +27 -0
  22. data/core/bourbon/helpers/_text-inputs-list.scss +26 -0
  23. data/core/bourbon/library/_border-color.scss +26 -0
  24. data/core/bourbon/library/_border-radius.scss +85 -0
  25. data/core/bourbon/library/_border-style.scss +25 -0
  26. data/core/bourbon/library/_border-width.scss +25 -0
  27. data/core/bourbon/library/_buttons.scss +84 -0
  28. data/{app/assets/stylesheets/addons → core/bourbon/library}/_clearfix.scss +5 -5
  29. data/core/bourbon/library/_contrast-switch.scss +81 -0
  30. data/{app/assets/stylesheets/addons → core/bourbon/library}/_ellipsis.scss +12 -6
  31. data/core/bourbon/library/_font-face.scss +65 -0
  32. data/core/bourbon/library/_font-stacks.scss +248 -0
  33. data/core/bourbon/library/_hide-text.scss +24 -0
  34. data/core/bourbon/library/_hide-visually.scss +70 -0
  35. data/core/bourbon/library/_margin.scss +37 -0
  36. data/core/bourbon/library/_modular-scale.scss +120 -0
  37. data/core/bourbon/library/_overflow-wrap.scss +25 -0
  38. data/core/bourbon/library/_padding.scss +36 -0
  39. data/core/bourbon/library/_position.scss +62 -0
  40. data/core/bourbon/library/_prefixer.scss +37 -0
  41. data/core/bourbon/library/_shade.scss +32 -0
  42. data/core/bourbon/library/_size.scss +50 -0
  43. data/core/bourbon/library/_strip-unit.scss +17 -0
  44. data/core/bourbon/library/_text-inputs.scss +163 -0
  45. data/core/bourbon/library/_timing-functions.scss +36 -0
  46. data/core/bourbon/library/_tint.scss +32 -0
  47. data/core/bourbon/library/_triangle.scss +82 -0
  48. data/core/bourbon/library/_value-prefixer.scss +37 -0
  49. data/core/bourbon/settings/_settings.scss +75 -0
  50. data/core/bourbon/utilities/_assign-inputs.scss +28 -0
  51. data/core/bourbon/utilities/_compact-shorthand.scss +42 -0
  52. data/core/bourbon/utilities/_contrast-ratio.scss +31 -0
  53. data/core/bourbon/utilities/_directional-property.scss +68 -0
  54. data/core/bourbon/utilities/_fetch-bourbon-setting.scss +16 -0
  55. data/core/bourbon/utilities/_font-source-declaration.scss +52 -0
  56. data/core/bourbon/utilities/_gamma.scss +24 -0
  57. data/core/bourbon/utilities/_lightness.scss +24 -0
  58. data/{app/assets/stylesheets/functions/_unpack.scss → core/bourbon/utilities/_unpack-shorthand.scss} +8 -6
  59. data/{app/assets/stylesheets/functions → core/bourbon/validators}/_contains-falsy.scss +6 -6
  60. data/{app/assets/stylesheets/functions → core/bourbon/validators}/_contains.scss +8 -8
  61. data/core/bourbon/validators/_is-color.scss +13 -0
  62. data/core/bourbon/validators/_is-length.scss +20 -0
  63. data/core/bourbon/validators/_is-number.scss +15 -0
  64. data/core/bourbon/validators/_is-size.scss +18 -0
  65. data/eyeglass-exports.js +7 -0
  66. data/features/install.feature +0 -1
  67. data/features/step_definitions/bourbon_steps.rb +13 -5
  68. data/features/update.feature +0 -1
  69. data/features/version.feature +0 -2
  70. data/index.js +2 -2
  71. data/lib/bourbon/generator.rb +11 -10
  72. data/lib/bourbon/version.rb +1 -1
  73. data/lib/bourbon.rb +7 -18
  74. data/package-lock.json +6636 -0
  75. data/package.json +26 -13
  76. data/spec/bourbon/{addons → library}/border_color_spec.rb +8 -8
  77. data/spec/bourbon/{addons → library}/border_radius_spec.rb +1 -1
  78. data/spec/bourbon/{addons → library}/border_style_spec.rb +1 -1
  79. data/spec/bourbon/{addons → library}/border_width_spec.rb +1 -1
  80. data/spec/bourbon/{addons → library}/buttons_spec.rb +4 -4
  81. data/spec/bourbon/{addons → library}/clearfix_spec.rb +3 -3
  82. data/spec/bourbon/library/contrast_switch_spec.rb +23 -0
  83. data/spec/bourbon/{addons → library}/ellipsis_spec.rb +1 -1
  84. data/spec/bourbon/library/font_face_spec_1.rb +16 -0
  85. data/spec/bourbon/library/font_face_spec_2.rb +20 -0
  86. data/spec/bourbon/library/font_face_spec_3.rb +16 -0
  87. data/spec/bourbon/library/font_stacks_spec.rb +42 -0
  88. data/spec/bourbon/{addons → library}/hide_text_spec.rb +1 -1
  89. data/spec/bourbon/library/hide_visually_spec.rb +37 -0
  90. data/spec/bourbon/{addons → library}/margin_spec.rb +1 -1
  91. data/spec/bourbon/{functions → library}/modular_scale_spec.rb +6 -6
  92. data/spec/bourbon/library/overflow_wrap_spec.rb +27 -0
  93. data/spec/bourbon/{addons → library}/padding_spec.rb +1 -1
  94. data/spec/bourbon/{addons → library}/position_spec.rb +1 -1
  95. data/spec/bourbon/library/prefixer_spec.rb +34 -0
  96. data/spec/bourbon/{functions → library}/shade_spec.rb +1 -1
  97. data/spec/bourbon/{addons → library}/size_spec.rb +1 -1
  98. data/spec/bourbon/{functions/strip_units_spec.rb → library/strip_unit_spec.rb} +2 -2
  99. data/spec/bourbon/{addons → library}/text_inputs_spec.rb +25 -15
  100. data/spec/bourbon/{functions → library}/tint_spec.rb +1 -1
  101. data/spec/bourbon/library/triangle_spec.rb +31 -0
  102. data/spec/bourbon/{functions → utilities}/assign_inputs_spec.rb +8 -8
  103. data/spec/bourbon/utilities/compact_shorthand_spec.rb +30 -0
  104. data/spec/bourbon/utilities/contrast_ratio_spec.rb +23 -0
  105. data/spec/bourbon/utilities/directional_property_spec.rb +28 -0
  106. data/spec/bourbon/utilities/fetch_bourbon_setting_spec.rb +31 -0
  107. data/spec/bourbon/utilities/font_source_declaration_spec.rb +23 -0
  108. data/spec/bourbon/utilities/gamma_spec.rb +23 -0
  109. data/spec/bourbon/utilities/lightness_spec.rb +31 -0
  110. data/spec/bourbon/{functions → utilities}/unpack_spec.rb +1 -1
  111. data/spec/bourbon/{functions → validators}/contains_spec.rb +1 -1
  112. data/spec/bourbon/{functions → validators}/is_length_spec.rb +13 -1
  113. data/spec/bourbon/{functions → validators}/is_number_spec.rb +1 -1
  114. data/spec/bourbon/{functions → validators}/is_size_spec.rb +1 -1
  115. data/spec/fixtures/_setup.scss +1 -1
  116. data/spec/fixtures/{addons → library}/border-color.scss +4 -4
  117. data/spec/fixtures/library/contrast-switch.scss +9 -0
  118. data/spec/fixtures/library/font-face-1.scss +6 -0
  119. data/spec/fixtures/library/font-face-2.scss +10 -0
  120. data/spec/fixtures/library/font-face-3.scss +8 -0
  121. data/spec/fixtures/library/font-stacks.scss +41 -0
  122. data/spec/fixtures/library/hide-visually.scss +9 -0
  123. data/spec/fixtures/library/overflow-wrap.scss +9 -0
  124. data/spec/fixtures/{addons → library}/position.scss +0 -4
  125. data/spec/fixtures/library/prefixer.scss +13 -0
  126. data/spec/fixtures/{functions → library}/shade.scss +1 -1
  127. data/spec/fixtures/{addons → library}/size.scss +2 -2
  128. data/spec/fixtures/library/strip-unit.scss +17 -0
  129. data/spec/fixtures/{addons → library}/text-inputs.scss +4 -0
  130. data/spec/fixtures/{functions → library}/tint.scss +1 -1
  131. data/spec/fixtures/library/triangle.scss +9 -0
  132. data/spec/fixtures/utilities/assign-inputs.scss +19 -0
  133. data/spec/fixtures/utilities/compact-shorthand.scss +21 -0
  134. data/spec/fixtures/utilities/contrast-ratio.scss +9 -0
  135. data/spec/fixtures/utilities/directional-property.scss +17 -0
  136. data/spec/fixtures/utilities/fetch-bourbon-setting.scss +16 -0
  137. data/spec/fixtures/utilities/font-source-declaration.scss +11 -0
  138. data/spec/fixtures/utilities/gamma.scss +9 -0
  139. data/spec/fixtures/utilities/lightness.scss +13 -0
  140. data/spec/fixtures/utilities/unpack.scss +17 -0
  141. data/spec/fixtures/{functions → validators}/contains.scss +1 -1
  142. data/spec/fixtures/{functions → validators}/is-length.scss +9 -1
  143. data/spec/fixtures/{functions → validators}/is-number.scss +1 -1
  144. data/spec/fixtures/{functions → validators}/is-size.scss +1 -1
  145. data/spec/support/matchers/have_value.rb +1 -1
  146. data/spec/support/sass_support.rb +2 -2
  147. metadata +254 -281
  148. data/.scss-lint.yml +0 -14
  149. data/.travis.yml +0 -8
  150. data/app/assets/stylesheets/_bourbon-deprecated-upcoming.scss +0 -411
  151. data/app/assets/stylesheets/_bourbon.scss +0 -87
  152. data/app/assets/stylesheets/addons/_border-color.scss +0 -26
  153. data/app/assets/stylesheets/addons/_border-radius.scss +0 -48
  154. data/app/assets/stylesheets/addons/_border-style.scss +0 -25
  155. data/app/assets/stylesheets/addons/_border-width.scss +0 -25
  156. data/app/assets/stylesheets/addons/_buttons.scss +0 -64
  157. data/app/assets/stylesheets/addons/_font-stacks.scss +0 -31
  158. data/app/assets/stylesheets/addons/_hide-text.scss +0 -27
  159. data/app/assets/stylesheets/addons/_margin.scss +0 -26
  160. data/app/assets/stylesheets/addons/_padding.scss +0 -26
  161. data/app/assets/stylesheets/addons/_position.scss +0 -48
  162. data/app/assets/stylesheets/addons/_prefixer.scss +0 -66
  163. data/app/assets/stylesheets/addons/_retina-image.scss +0 -25
  164. data/app/assets/stylesheets/addons/_size.scss +0 -51
  165. data/app/assets/stylesheets/addons/_text-inputs.scss +0 -113
  166. data/app/assets/stylesheets/addons/_timing-functions.scss +0 -34
  167. data/app/assets/stylesheets/addons/_triangle.scss +0 -63
  168. data/app/assets/stylesheets/addons/_word-wrap.scss +0 -29
  169. data/app/assets/stylesheets/css3/_animation.scss +0 -43
  170. data/app/assets/stylesheets/css3/_appearance.scss +0 -3
  171. data/app/assets/stylesheets/css3/_backface-visibility.scss +0 -3
  172. data/app/assets/stylesheets/css3/_background-image.scss +0 -42
  173. data/app/assets/stylesheets/css3/_background.scss +0 -55
  174. data/app/assets/stylesheets/css3/_border-image.scss +0 -59
  175. data/app/assets/stylesheets/css3/_calc.scss +0 -4
  176. data/app/assets/stylesheets/css3/_columns.scss +0 -47
  177. data/app/assets/stylesheets/css3/_filter.scss +0 -4
  178. data/app/assets/stylesheets/css3/_flex-box.scss +0 -287
  179. data/app/assets/stylesheets/css3/_font-face.scss +0 -24
  180. data/app/assets/stylesheets/css3/_font-feature-settings.scss +0 -4
  181. data/app/assets/stylesheets/css3/_hidpi-media-query.scss +0 -10
  182. data/app/assets/stylesheets/css3/_hyphens.scss +0 -4
  183. data/app/assets/stylesheets/css3/_image-rendering.scss +0 -14
  184. data/app/assets/stylesheets/css3/_keyframes.scss +0 -36
  185. data/app/assets/stylesheets/css3/_linear-gradient.scss +0 -38
  186. data/app/assets/stylesheets/css3/_perspective.scss +0 -8
  187. data/app/assets/stylesheets/css3/_placeholder.scss +0 -8
  188. data/app/assets/stylesheets/css3/_radial-gradient.scss +0 -39
  189. data/app/assets/stylesheets/css3/_selection.scss +0 -42
  190. data/app/assets/stylesheets/css3/_text-decoration.scss +0 -19
  191. data/app/assets/stylesheets/css3/_transform.scss +0 -15
  192. data/app/assets/stylesheets/css3/_transition.scss +0 -71
  193. data/app/assets/stylesheets/css3/_user-select.scss +0 -3
  194. data/app/assets/stylesheets/functions/_assign-inputs.scss +0 -11
  195. data/app/assets/stylesheets/functions/_is-length.scss +0 -11
  196. data/app/assets/stylesheets/functions/_is-light.scss +0 -21
  197. data/app/assets/stylesheets/functions/_is-number.scss +0 -11
  198. data/app/assets/stylesheets/functions/_is-size.scss +0 -13
  199. data/app/assets/stylesheets/functions/_modular-scale.scss +0 -69
  200. data/app/assets/stylesheets/functions/_px-to-em.scss +0 -13
  201. data/app/assets/stylesheets/functions/_px-to-rem.scss +0 -15
  202. data/app/assets/stylesheets/functions/_shade.scss +0 -24
  203. data/app/assets/stylesheets/functions/_strip-units.scss +0 -17
  204. data/app/assets/stylesheets/functions/_tint.scss +0 -24
  205. data/app/assets/stylesheets/functions/_transition-property-name.scss +0 -22
  206. data/app/assets/stylesheets/helpers/_convert-units.scss +0 -21
  207. data/app/assets/stylesheets/helpers/_directional-values.scss +0 -96
  208. data/app/assets/stylesheets/helpers/_font-source-declaration.scss +0 -43
  209. data/app/assets/stylesheets/helpers/_gradient-positions-parser.scss +0 -13
  210. data/app/assets/stylesheets/helpers/_linear-angle-parser.scss +0 -25
  211. data/app/assets/stylesheets/helpers/_linear-gradient-parser.scss +0 -41
  212. data/app/assets/stylesheets/helpers/_linear-positions-parser.scss +0 -61
  213. data/app/assets/stylesheets/helpers/_linear-side-corner-parser.scss +0 -31
  214. data/app/assets/stylesheets/helpers/_radial-arg-parser.scss +0 -69
  215. data/app/assets/stylesheets/helpers/_radial-gradient-parser.scss +0 -50
  216. data/app/assets/stylesheets/helpers/_radial-positions-parser.scss +0 -18
  217. data/app/assets/stylesheets/helpers/_render-gradients.scss +0 -26
  218. data/app/assets/stylesheets/helpers/_shape-size-stripper.scss +0 -10
  219. data/app/assets/stylesheets/helpers/_str-to-num.scss +0 -50
  220. data/app/assets/stylesheets/settings/_asset-pipeline.scss +0 -7
  221. data/app/assets/stylesheets/settings/_prefixer.scss +0 -9
  222. data/app/assets/stylesheets/settings/_px-to-em.scss +0 -1
  223. data/bower.json +0 -36
  224. data/lib/bourbon/engine.rb +0 -5
  225. data/lib/tasks/install.rake +0 -20
  226. data/sache.json +0 -5
  227. data/spec/bourbon/addons/font_stacks_spec.rb +0 -25
  228. data/spec/bourbon/addons/retina_image_spec.rb +0 -57
  229. data/spec/bourbon/addons/triangle_spec.rb +0 -32
  230. data/spec/bourbon/addons/word_wrap_spec.rb +0 -29
  231. data/spec/bourbon/css3/font_face_spec.rb +0 -45
  232. data/spec/bourbon/css3/hidpi_media_query_spec.rb +0 -23
  233. data/spec/bourbon/functions/is_light_spec.rb +0 -37
  234. data/spec/bourbon/functions/px_to_em_spec.rb +0 -31
  235. data/spec/bourbon/functions/px_to_rem_spec.rb +0 -25
  236. data/spec/bourbon/helpers/convert_units_spec.rb +0 -31
  237. data/spec/bourbon/helpers/directional_values_spec.rb +0 -39
  238. data/spec/bourbon/helpers/font_source_declaration_spec.rb +0 -29
  239. data/spec/bourbon/helpers/str_to_num_spec.rb +0 -25
  240. data/spec/fixtures/addons/font-stacks.scss +0 -21
  241. data/spec/fixtures/addons/retina-image.scss +0 -21
  242. data/spec/fixtures/addons/triangle.scss +0 -9
  243. data/spec/fixtures/addons/word-wrap.scss +0 -9
  244. data/spec/fixtures/css3/font-face.scss +0 -6
  245. data/spec/fixtures/css3/hidpi-media-query.scss +0 -13
  246. data/spec/fixtures/functions/assign-inputs.scss +0 -19
  247. data/spec/fixtures/functions/is-light.scss +0 -29
  248. data/spec/fixtures/functions/px-to-em.scss +0 -17
  249. data/spec/fixtures/functions/px-to-rem.scss +0 -15
  250. data/spec/fixtures/functions/strip-units.scss +0 -17
  251. data/spec/fixtures/functions/unpack.scss +0 -17
  252. data/spec/fixtures/helpers/convert-units.scss +0 -17
  253. data/spec/fixtures/helpers/directional-values.scss +0 -29
  254. data/spec/fixtures/helpers/font-source-declaration.scss +0 -10
  255. data/spec/fixtures/helpers/str-to-num.scss +0 -13
  256. data/spec/support/matchers/be_contained_in.rb +0 -10
  257. /data/spec/fixtures/{addons → library}/border-radius.scss +0 -0
  258. /data/spec/fixtures/{addons → library}/border-style.scss +0 -0
  259. /data/spec/fixtures/{addons → library}/border-width.scss +0 -0
  260. /data/spec/fixtures/{addons → library}/buttons.scss +0 -0
  261. /data/spec/fixtures/{addons → library}/clearfix.scss +0 -0
  262. /data/spec/fixtures/{addons → library}/ellipsis.scss +0 -0
  263. /data/spec/fixtures/{addons → library}/hide-text.scss +0 -0
  264. /data/spec/fixtures/{addons → library}/margin.scss +0 -0
  265. /data/spec/fixtures/{functions → library}/modular-scale.scss +0 -0
  266. /data/spec/fixtures/{addons → library}/padding.scss +0 -0
@@ -2,10 +2,10 @@ require "spec_helper"
2
2
 
3
3
  describe "assign-inputs" do
4
4
  before(:all) do
5
- ParserSupport.parse_file("functions/assign-inputs")
5
+ ParserSupport.parse_file("utilities/assign-inputs")
6
6
  @text_inputs_list = [
7
- "input[type=\"password\"]",
8
- "input[type=\"text\"]",
7
+ "[type='password']",
8
+ "[type='text']",
9
9
  "textarea"
10
10
  ]
11
11
  end
@@ -13,7 +13,7 @@ describe "assign-inputs" do
13
13
  context "expands plain text inputs" do
14
14
  it "finds selectors" do
15
15
  @text_inputs_list.each do |input|
16
- expect(input).to have_rule("color: #ff0000")
16
+ expect(input).to have_rule("color: #f00")
17
17
  end
18
18
  end
19
19
  end
@@ -23,7 +23,7 @@ describe "assign-inputs" do
23
23
  list = @text_inputs_list.dup
24
24
  list.map! { |input| input + ":active" }
25
25
  list.each do |input|
26
- expect(input).to have_rule("color: #00ff00")
26
+ expect(input).to have_rule("color: #0f0")
27
27
  end
28
28
  end
29
29
  end
@@ -33,7 +33,7 @@ describe "assign-inputs" do
33
33
  list = @text_inputs_list.dup
34
34
  list.push "select"
35
35
  list.each do |input|
36
- expect(input).to have_rule("color: #0000ff")
36
+ expect(input).to have_rule("color: #00f")
37
37
  end
38
38
  end
39
39
  end
@@ -41,9 +41,9 @@ describe "assign-inputs" do
41
41
  context "expands text inputs when middle of list" do
42
42
  it "finds selectors" do
43
43
  list = @text_inputs_list.dup
44
- list.unshift "input[type=\"file\"]"
44
+ list.unshift "[type=\"file\"]"
45
45
  list.each do |input|
46
- expect(input).to have_rule("color: #ff00ff")
46
+ expect(input).to have_rule("color: #f0f")
47
47
  end
48
48
  end
49
49
  end
@@ -0,0 +1,30 @@
1
+ require "spec_helper"
2
+
3
+ describe "compact-shorthand" do
4
+ before(:all) do
5
+ ParserSupport.parse_file("utilities/compact-shorthand")
6
+ end
7
+
8
+ context "compact-shorthand" do
9
+ it "returns four values unaltered" do
10
+ expect(".four-values-a").to have_rule("padding: 10px 20px 30px 40px")
11
+ end
12
+
13
+ it "returns four values when the left and right values are not equal" do
14
+ expect(".four-values-b").to have_rule("padding: 5px 10px 5px 20px")
15
+ end
16
+
17
+ it "compacts four values to two values when the top/bottom and " +
18
+ "left/right values are equal" do
19
+ expect(".two-values").to have_rule("padding: 50px 100px")
20
+ end
21
+
22
+ it "compacts four values to one value when they all match" do
23
+ expect(".one-value").to have_rule("padding: 10px")
24
+ end
25
+
26
+ it "skips null values" do
27
+ expect(".null-value").to have_rule("padding: 10px 20px")
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,23 @@
1
+ require "spec_helper"
2
+
3
+ describe "contrast-ratio" do
4
+ before(:all) do
5
+ ParserSupport.parse_file("utilities/contrast-ratio")
6
+ end
7
+
8
+ context "calculates between white and black" do
9
+ it "outputs the contrast ratio" do
10
+ rule = "content: 21;"
11
+
12
+ expect(".contrast-ratio-black").to have_ruleset(rule)
13
+ end
14
+ end
15
+
16
+ context "calculates between white and blue" do
17
+ it "outputs the contrast ratio" do
18
+ rule = "content: 8.59247;"
19
+
20
+ expect(".contrast-ratio-blue").to have_ruleset(rule)
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,28 @@
1
+ require "spec_helper"
2
+
3
+ describe "directional-property" do
4
+ before(:all) do
5
+ ParserSupport.parse_file("utilities/directional-property")
6
+ end
7
+
8
+ context "directional-property" do
9
+ it "returns property and values with four distinct lengths" do
10
+ expect(".border-all").to have_rule("border-width: 2px 5px 8px 12px")
11
+ end
12
+
13
+ it "returns property and value with one length" do
14
+ expect(".border-top").to have_rule("border-top: 10px")
15
+ end
16
+
17
+ it "returns property and value with vertical and horizontal values" do
18
+ expect(".border-color").to have_rule("border-color: #fff #000")
19
+ end
20
+
21
+ it "returns properties for top and bottom margin" do
22
+ ruleset = "margin-top: 20px; " +
23
+ "margin-bottom: 10px;"
24
+
25
+ expect(".margin-null").to have_ruleset(ruleset)
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,31 @@
1
+ require "spec_helper"
2
+
3
+ describe "fetch-bourbon-setting" do
4
+ before(:all) do
5
+ ParserSupport.parse_file("utilities/fetch-bourbon-setting")
6
+ end
7
+
8
+ context "fetches the modular-scale-base setting" do
9
+ it "and returns the default value" do
10
+ expect(".test-1").to have_rule("content: 1em")
11
+ end
12
+ end
13
+
14
+ context "fetches the rails-asset-pipeline setting" do
15
+ it "and returns the user-overridden value" do
16
+ expect(".test-2").to have_rule("content: true")
17
+ end
18
+ end
19
+
20
+ context "called from the font-face mixin" do
21
+ it "outputs user-overridden font file formats" do
22
+ ruleset = 'font-family: "source-sans-pro"; ' +
23
+ 'src: font-url("source-sans-pro-regular.woff2") ' +
24
+ 'format("woff2"), ' +
25
+ 'font-url("source-sans-pro-regular.woff") ' +
26
+ 'format("woff");'
27
+
28
+ expect("@font-face").to have_ruleset(ruleset)
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,23 @@
1
+ require "spec_helper"
2
+
3
+ describe "font-source-declaration" do
4
+ before(:all) do
5
+ ParserSupport.parse_file("utilities/font-source-declaration")
6
+ end
7
+
8
+ context "called with pipeline" do
9
+ it "returns pipeline path" do
10
+ rule = 'src: font-url("b.woff2") format("woff2"), ' +
11
+ 'font-url("b.woff") format("woff")'
12
+ expect(".has-pipeline").to have_rule(rule)
13
+ end
14
+ end
15
+
16
+ context "called with no pipeline" do
17
+ it "does not return pipeline path" do
18
+ rule = 'src: url("b.woff2") format("woff2"), ' +
19
+ 'url("b.woff") format("woff")'
20
+ expect(".no-pipeline").to have_rule(rule)
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,23 @@
1
+ require "spec_helper"
2
+
3
+ describe "gamma" do
4
+ before(:all) do
5
+ ParserSupport.parse_file("utilities/gamma")
6
+ end
7
+
8
+ context "called on a color channel" do
9
+ it "outputs a gamma value between 0 and 1" do
10
+ rule = "content: 0.12168;"
11
+
12
+ expect(".gamma").to have_ruleset(rule)
13
+ end
14
+ end
15
+
16
+ context "called on a full color channel" do
17
+ it "outputs a gamma value between 0 and 1" do
18
+ rule = "content: 1;"
19
+
20
+ expect(".gamma-full").to have_ruleset(rule)
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,31 @@
1
+ require "spec_helper"
2
+
3
+ describe "lightness" do
4
+ before(:all) do
5
+ ParserSupport.parse_file("utilities/lightness")
6
+ end
7
+
8
+ context "called on black" do
9
+ it "outputs a number between 0 and 1 to indicate lightness" do
10
+ rule = "content: 0;"
11
+
12
+ expect(".lightness-black").to have_ruleset(rule)
13
+ end
14
+ end
15
+
16
+ context "called on white" do
17
+ it "outputs a number between 0 and 1 to indicate lightness" do
18
+ rule = "content: 1;"
19
+
20
+ expect(".lightness-white").to have_ruleset(rule)
21
+ end
22
+ end
23
+
24
+ context "called on gray" do
25
+ it "outputs a number between 0 and 1 to indicate lightness" do
26
+ rule = "content: 0.20503;"
27
+
28
+ expect(".lightness-gray").to have_ruleset(rule)
29
+ end
30
+ end
31
+ end
@@ -2,7 +2,7 @@ require "spec_helper"
2
2
 
3
3
  describe "unpack" do
4
4
  before(:all) do
5
- ParserSupport.parse_file("functions/unpack")
5
+ ParserSupport.parse_file("utilities/unpack")
6
6
  end
7
7
 
8
8
  context "single" do
@@ -2,7 +2,7 @@ require "spec_helper"
2
2
 
3
3
  describe "contains" do
4
4
  before(:all) do
5
- ParserSupport.parse_file("functions/contains")
5
+ ParserSupport.parse_file("validators/contains")
6
6
  end
7
7
 
8
8
  context "called on array with single item" do
@@ -2,7 +2,7 @@ require "spec_helper"
2
2
 
3
3
  describe "is-length" do
4
4
  before(:all) do
5
- ParserSupport.parse_file("functions/is-length")
5
+ ParserSupport.parse_file("validators/is-length")
6
6
  end
7
7
 
8
8
  context "checks if unitless integer can be represented as a length" do
@@ -35,6 +35,18 @@ describe "is-length" do
35
35
  end
36
36
  end
37
37
 
38
+ context "parses custom properties" do
39
+ it "returns true" do
40
+ expect(".var").to have_rule("color: #fff")
41
+ end
42
+ end
43
+
44
+ context "parses environment variables" do
45
+ it "returns true" do
46
+ expect(".env").to have_rule("color: #fff")
47
+ end
48
+ end
49
+
38
50
  context "checks if strings can be represented as a length" do
39
51
  it "returns false" do
40
52
  expect(".string").not_to have_rule("color: #fff")
@@ -2,7 +2,7 @@ require "spec_helper"
2
2
 
3
3
  describe "is-number" do
4
4
  before(:all) do
5
- ParserSupport.parse_file("functions/is-number")
5
+ ParserSupport.parse_file("validators/is-number")
6
6
  end
7
7
 
8
8
  context "called with integer" do
@@ -2,7 +2,7 @@ require "spec_helper"
2
2
 
3
3
  describe "is-size" do
4
4
  before(:all) do
5
- ParserSupport.parse_file("functions/is-size")
5
+ ParserSupport.parse_file("validators/is-size")
6
6
  end
7
7
 
8
8
  context "called with integer" do
@@ -1 +1 @@
1
- @import "app/assets/stylesheets/bourbon";
1
+ @import "core/bourbon";
@@ -1,9 +1,9 @@
1
1
  @import "setup";
2
2
 
3
- $red: #ff0000;
4
- $blue: #00ff00;
5
- $green: #0000ff;
6
- $purple: #ffff00;
3
+ $red: #f00;
4
+ $blue: #0f0;
5
+ $green: #00f;
6
+ $purple: #ff0;
7
7
 
8
8
  .border-color-all {
9
9
  @include border-color($red);
@@ -0,0 +1,9 @@
1
+ @import "setup";
2
+
3
+ .contrast-switch-light-base {
4
+ color: contrast-switch(#bae6e6);
5
+ }
6
+
7
+ .contrast-switch-dark-base {
8
+ color: contrast-switch(#2d72d9, #222, #eee);
9
+ }
@@ -0,0 +1,6 @@
1
+ @import "setup";
2
+
3
+ @include font-face(
4
+ "source-sans-pro",
5
+ "/fonts/source-sans-pro/source-sans-pro-regular"
6
+ );
@@ -0,0 +1,10 @@
1
+ @import "setup";
2
+
3
+ @include font-face(
4
+ "calibre",
5
+ "fonts/calibre"
6
+ ) {
7
+ font-style: normal;
8
+ font-weight: 600;
9
+ unicode-range: U+26;
10
+ }
@@ -0,0 +1,8 @@
1
+ @import "setup";
2
+
3
+ @include font-face(
4
+ "pitch",
5
+ "/fonts/pitch",
6
+ "woff2",
7
+ $asset-pipeline: true
8
+ );
@@ -0,0 +1,41 @@
1
+ @import "setup";
2
+
3
+ .helvetica {
4
+ content: $font-stack-helvetica;
5
+ }
6
+
7
+ .lucida-grande {
8
+ content: $font-stack-lucida-grande;
9
+ }
10
+
11
+ .verdana {
12
+ content: $font-stack-verdana;
13
+ }
14
+
15
+ .garamond {
16
+ content: $font-stack-garamond;
17
+ }
18
+
19
+ .georgia {
20
+ content: $font-stack-georgia;
21
+ }
22
+
23
+ .hoefler-text {
24
+ content: $font-stack-hoefler-text;
25
+ }
26
+
27
+ .consolas {
28
+ content: $font-stack-consolas;
29
+ }
30
+
31
+ .courier-new {
32
+ content: $font-stack-courier-new;
33
+ }
34
+
35
+ .monaco {
36
+ content: $font-stack-monaco;
37
+ }
38
+
39
+ .system {
40
+ content: $font-stack-system;
41
+ }
@@ -0,0 +1,9 @@
1
+ @import "setup";
2
+
3
+ .hide-visually {
4
+ @include hide-visually;
5
+ }
6
+
7
+ .hide-visually--unhide {
8
+ @include hide-visually("unhide");
9
+ }
@@ -0,0 +1,9 @@
1
+ @import "setup";
2
+
3
+ .overflow-wrap {
4
+ @include overflow-wrap;
5
+ }
6
+
7
+ .overflow-wrap-normal {
8
+ @include overflow-wrap(normal);
9
+ }
@@ -1,9 +1,5 @@
1
1
  @import "setup";
2
2
 
3
- .position-only-type {
4
- @include position(relative);
5
- }
6
-
7
3
  .position-all {
8
4
  @include position(fixed, 1em);
9
5
  }
@@ -0,0 +1,13 @@
1
+ @import "setup";
2
+
3
+ .prefix {
4
+ @include prefixer(appearance, none);
5
+ }
6
+
7
+ .prefix--webkit {
8
+ @include prefixer(appearance, none, ("webkit"));
9
+ }
10
+
11
+ .prefix--moz-ms {
12
+ @include prefixer(appearance, none, ("moz", "ms"));
13
+ }
@@ -9,7 +9,7 @@
9
9
  }
10
10
 
11
11
  .shade-red {
12
- color: shade(#ff0000, 25%);
12
+ color: shade(#f00, 25%);
13
13
  }
14
14
 
15
15
  .shade-gray {
@@ -5,9 +5,9 @@
5
5
  }
6
6
 
7
7
  .size-both {
8
- @include size(1em 2em);
8
+ @include size(1em, 2em);
9
9
  }
10
10
 
11
11
  .size-auto {
12
- @include size(100px auto);
12
+ @include size(100px, auto);
13
13
  }
@@ -0,0 +1,17 @@
1
+ @import "setup";
2
+
3
+ .px {
4
+ width: strip-unit(10px);
5
+ }
6
+
7
+ .em {
8
+ width: strip-unit(2em);
9
+ }
10
+
11
+ .rem {
12
+ width: strip-unit(1.5rem);
13
+ }
14
+
15
+ .percent {
16
+ width: strip-unit(20%);
17
+ }
@@ -15,3 +15,7 @@
15
15
  .all-text-inputs-hover {
16
16
  content: $all-text-inputs-hover;
17
17
  }
18
+
19
+ .all-text-inputs-invalid {
20
+ content: $all-text-inputs-invalid;
21
+ }
@@ -9,7 +9,7 @@
9
9
  }
10
10
 
11
11
  .tint-red {
12
- color: tint(#ff0000, 25%);
12
+ color: tint(#f00, 25%);
13
13
  }
14
14
 
15
15
  .tint-gray {
@@ -0,0 +1,9 @@
1
+ @import "setup";
2
+
3
+ .triangle--up {
4
+ @include triangle("up", 2rem, 1rem, #b25c9c);
5
+ }
6
+
7
+ .triangle--right {
8
+ @include triangle("right", 5px, 12px, #aaa);
9
+ }
@@ -0,0 +1,19 @@
1
+ @import "setup";
2
+
3
+ #{_assign-inputs($_text-inputs-list)} {
4
+ color: #f00;
5
+ }
6
+
7
+ #{_assign-inputs($_text-inputs-list, active)} {
8
+ color: #0f0;
9
+ }
10
+
11
+ #{_assign-inputs($_text-inputs-list)},
12
+ select {
13
+ color: #00f;
14
+ }
15
+
16
+ [type="file"],
17
+ #{_assign-inputs($_text-inputs-list)} {
18
+ color: #f0f;
19
+ }
@@ -0,0 +1,21 @@
1
+ @import "setup";
2
+
3
+ .four-values-a {
4
+ padding: _compact-shorthand(10px 20px 30px 40px);
5
+ }
6
+
7
+ .four-values-b {
8
+ padding: _compact-shorthand(5px 10px 5px 20px);
9
+ }
10
+
11
+ .two-values {
12
+ padding: _compact-shorthand(50px 100px 50px 100px);
13
+ }
14
+
15
+ .one-value {
16
+ padding: _compact-shorthand(10px 10px 10px 10px);
17
+ }
18
+
19
+ .null-value {
20
+ padding: _compact-shorthand(10px null 20px);
21
+ }
@@ -0,0 +1,9 @@
1
+ @import "setup";
2
+
3
+ .contrast-ratio-black {
4
+ content: _contrast-ratio(#fff, #000);
5
+ }
6
+
7
+ .contrast-ratio-blue {
8
+ content: _contrast-ratio(#fff, #00f);
9
+ }
@@ -0,0 +1,17 @@
1
+ @import "setup";
2
+
3
+ .border-all {
4
+ @include _directional-property(border, width, 2px 5px 8px 12px);
5
+ }
6
+
7
+ .border-top {
8
+ @include _directional-property(border, top, 10px);
9
+ }
10
+
11
+ .border-color {
12
+ @include _directional-property(border, color, #fff #000);
13
+ }
14
+
15
+ .margin-null {
16
+ @include _directional-property(margin, null, 20px null 10px);
17
+ }
@@ -0,0 +1,16 @@
1
+ @import "setup";
2
+
3
+ $bourbon: (
4
+ "global-font-file-formats": ("woff2", "woff"),
5
+ "rails-asset-pipeline": true,
6
+ );
7
+
8
+ .test-1 {
9
+ content: _fetch-bourbon-setting("modular-scale-base");
10
+ }
11
+
12
+ .test-2 {
13
+ content: _fetch-bourbon-setting("rails-asset-pipeline");
14
+ }
15
+
16
+ @include font-face("source-sans-pro", "source-sans-pro-regular");
@@ -0,0 +1,11 @@
1
+ @import "setup";
2
+
3
+ $file-formats: ("woff2", "woff");
4
+
5
+ .has-pipeline {
6
+ src: _font-source-declaration("a", "b", true, $file-formats);
7
+ }
8
+
9
+ .no-pipeline {
10
+ src: _font-source-declaration("a", "b", false, $file-formats);
11
+ }
@@ -0,0 +1,9 @@
1
+ @import "setup";
2
+
3
+ .gamma {
4
+ content: _gamma(100 / 255);
5
+ }
6
+
7
+ .gamma-full {
8
+ content: _gamma(255 / 255);
9
+ }
@@ -0,0 +1,13 @@
1
+ @import "setup";
2
+
3
+ .lightness-black {
4
+ content: _lightness(#000);
5
+ }
6
+
7
+ .lightness-white {
8
+ content: _lightness(#fff);
9
+ }
10
+
11
+ .lightness-gray {
12
+ content: _lightness(mix(#000, #fff, 50%));
13
+ }