bourbon 4.3.4 → 5.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (260) hide show
  1. checksums.yaml +4 -4
  2. data/.github/ISSUE_TEMPLATE.md +22 -0
  3. data/.github/PULL_REQUEST_TEMPLATE.md +10 -0
  4. data/.npmignore +6 -1
  5. data/.ruby-version +1 -0
  6. data/.scss-lint.yml +100 -8
  7. data/CHANGELOG.md +344 -5
  8. data/CODE_OF_CONDUCT.md +6 -0
  9. data/CONTRIBUTING.md +77 -28
  10. data/Gemfile +1 -1
  11. data/LICENSE.md +1 -1
  12. data/README.md +163 -92
  13. data/RELEASING.md +35 -0
  14. data/Rakefile +0 -2
  15. data/bin/bourbon +1 -2
  16. data/bourbon.gemspec +31 -24
  17. data/bower.json +22 -19
  18. data/circle.yml +8 -2
  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 +249 -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 +24 -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/{app/assets/stylesheets/addons → core/bourbon/library}/_timing-functions.scss +7 -3
  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 +39 -0
  52. data/core/bourbon/utilities/_contrast-ratio.scss +31 -0
  53. data/core/bourbon/utilities/_directional-property.scss +70 -0
  54. data/core/bourbon/utilities/_fetch-bourbon-setting.scss +16 -0
  55. data/core/bourbon/utilities/_font-source-declaration.scss +51 -0
  56. data/core/bourbon/utilities/_gamma.scss +21 -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 -11
  59. data/core/bourbon/validators/_contains-falsy.scss +20 -0
  60. data/core/bourbon/validators/_contains.scss +26 -0
  61. data/core/bourbon/validators/_is-color.scss +13 -0
  62. data/{app/assets/stylesheets/functions → core/bourbon/validators}/_is-length.scss +6 -7
  63. data/core/bourbon/validators/_is-number.scss +15 -0
  64. data/core/bourbon/validators/_is-size.scss +18 -0
  65. data/features/step_definitions/bourbon_steps.rb +7 -1
  66. data/index.js +2 -2
  67. data/lib/bourbon.rb +2 -26
  68. data/lib/bourbon/generator.rb +11 -10
  69. data/lib/bourbon/version.rb +1 -1
  70. data/package.json +18 -17
  71. data/spec/bourbon/{addons → library}/border_color_spec.rb +8 -8
  72. data/spec/bourbon/{addons → library}/border_radius_spec.rb +1 -1
  73. data/spec/bourbon/{addons → library}/border_style_spec.rb +1 -1
  74. data/spec/bourbon/{addons → library}/border_width_spec.rb +1 -1
  75. data/spec/bourbon/{addons → library}/buttons_spec.rb +4 -4
  76. data/spec/bourbon/{addons → library}/clearfix_spec.rb +3 -3
  77. data/spec/bourbon/library/contrast_switch_spec.rb +23 -0
  78. data/spec/bourbon/{addons → library}/ellipsis_spec.rb +1 -1
  79. data/spec/bourbon/library/font_face_spec_1.rb +16 -0
  80. data/spec/bourbon/library/font_face_spec_2.rb +21 -0
  81. data/spec/bourbon/library/font_face_spec_3.rb +16 -0
  82. data/spec/bourbon/library/font_face_spec_4.rb +17 -0
  83. data/spec/bourbon/library/font_stacks_spec.rb +42 -0
  84. data/spec/bourbon/{addons → library}/hide_text_spec.rb +1 -1
  85. data/spec/bourbon/library/hide_visually_spec.rb +37 -0
  86. data/spec/bourbon/{addons → library}/margin_spec.rb +1 -1
  87. data/spec/bourbon/{functions → library}/modular_scale_spec.rb +6 -6
  88. data/spec/bourbon/library/overflow_wrap_spec.rb +27 -0
  89. data/spec/bourbon/{addons → library}/padding_spec.rb +1 -1
  90. data/spec/bourbon/{addons → library}/position_spec.rb +1 -1
  91. data/spec/bourbon/library/prefixer_spec.rb +34 -0
  92. data/spec/bourbon/{functions → library}/shade_spec.rb +1 -1
  93. data/spec/bourbon/{addons → library}/size_spec.rb +1 -1
  94. data/spec/bourbon/{functions/strip_units_spec.rb → library/strip_unit_spec.rb} +2 -2
  95. data/spec/bourbon/{addons → library}/text_inputs_spec.rb +25 -15
  96. data/spec/bourbon/{functions → library}/tint_spec.rb +1 -1
  97. data/spec/bourbon/library/triangle_spec.rb +31 -0
  98. data/spec/bourbon/{functions → utilities}/assign_inputs_spec.rb +8 -8
  99. data/spec/bourbon/utilities/compact_shorthand_spec.rb +30 -0
  100. data/spec/bourbon/utilities/contrast_ratio_spec.rb +23 -0
  101. data/spec/bourbon/utilities/directional_property_spec.rb +28 -0
  102. data/spec/bourbon/utilities/fetch_bourbon_setting_spec.rb +31 -0
  103. data/spec/bourbon/{helpers → utilities}/font_source_declaration_spec.rb +1 -1
  104. data/spec/bourbon/utilities/gamma_spec.rb +23 -0
  105. data/spec/bourbon/utilities/lightness_spec.rb +31 -0
  106. data/spec/bourbon/{functions → utilities}/unpack_spec.rb +1 -1
  107. data/spec/bourbon/{functions → validators}/contains_spec.rb +1 -1
  108. data/spec/bourbon/{functions → validators}/is_length_spec.rb +1 -1
  109. data/spec/bourbon/{functions → validators}/is_number_spec.rb +1 -1
  110. data/spec/bourbon/{functions → validators}/is_size_spec.rb +1 -1
  111. data/spec/fixtures/_setup.scss +1 -1
  112. data/spec/fixtures/{addons → library}/border-color.scss +4 -4
  113. data/spec/fixtures/{addons → library}/border-radius.scss +0 -0
  114. data/spec/fixtures/{addons → library}/border-style.scss +0 -0
  115. data/spec/fixtures/{addons → library}/border-width.scss +0 -0
  116. data/spec/fixtures/{addons → library}/buttons.scss +0 -0
  117. data/spec/fixtures/{addons → library}/clearfix.scss +0 -0
  118. data/spec/fixtures/library/contrast-switch.scss +9 -0
  119. data/spec/fixtures/{addons → library}/ellipsis.scss +0 -0
  120. data/spec/fixtures/library/font-face-1.scss +6 -0
  121. data/spec/fixtures/library/font-face-2.scss +10 -0
  122. data/spec/fixtures/library/font-face-3.scss +8 -0
  123. data/spec/fixtures/library/font-face-4.scss +7 -0
  124. data/spec/fixtures/library/font-stacks.scss +41 -0
  125. data/spec/fixtures/{addons → library}/hide-text.scss +0 -0
  126. data/spec/fixtures/library/hide-visually.scss +9 -0
  127. data/spec/fixtures/{addons → library}/margin.scss +0 -0
  128. data/spec/fixtures/{functions → library}/modular-scale.scss +0 -0
  129. data/spec/fixtures/library/overflow-wrap.scss +9 -0
  130. data/spec/fixtures/{addons → library}/padding.scss +0 -0
  131. data/spec/fixtures/{addons → library}/position.scss +0 -4
  132. data/spec/fixtures/library/prefixer.scss +13 -0
  133. data/spec/fixtures/{functions → library}/shade.scss +1 -1
  134. data/spec/fixtures/{addons → library}/size.scss +2 -2
  135. data/spec/fixtures/library/strip-unit.scss +17 -0
  136. data/spec/fixtures/{addons → library}/text-inputs.scss +4 -0
  137. data/spec/fixtures/{functions → library}/tint.scss +1 -1
  138. data/spec/fixtures/library/triangle.scss +9 -0
  139. data/spec/fixtures/utilities/assign-inputs.scss +19 -0
  140. data/spec/fixtures/utilities/compact-shorthand.scss +21 -0
  141. data/spec/fixtures/utilities/contrast-ratio.scss +9 -0
  142. data/spec/fixtures/utilities/directional-property.scss +17 -0
  143. data/spec/fixtures/utilities/fetch-bourbon-setting.scss +16 -0
  144. data/spec/fixtures/utilities/font-source-declaration.scss +11 -0
  145. data/spec/fixtures/utilities/gamma.scss +9 -0
  146. data/spec/fixtures/utilities/lightness.scss +13 -0
  147. data/spec/fixtures/utilities/unpack.scss +17 -0
  148. data/spec/fixtures/{functions → validators}/contains.scss +1 -1
  149. data/spec/fixtures/{functions → validators}/is-length.scss +1 -1
  150. data/spec/fixtures/{functions → validators}/is-number.scss +1 -1
  151. data/spec/fixtures/{functions → validators}/is-size.scss +1 -1
  152. data/spec/support/matchers/have_value.rb +1 -1
  153. metadata +251 -275
  154. data/app/assets/stylesheets/_bourbon-deprecate.scss +0 -19
  155. data/app/assets/stylesheets/_bourbon-deprecated-upcoming.scss +0 -425
  156. data/app/assets/stylesheets/_bourbon.scss +0 -90
  157. data/app/assets/stylesheets/addons/_border-color.scss +0 -29
  158. data/app/assets/stylesheets/addons/_border-radius.scss +0 -48
  159. data/app/assets/stylesheets/addons/_border-style.scss +0 -28
  160. data/app/assets/stylesheets/addons/_border-width.scss +0 -28
  161. data/app/assets/stylesheets/addons/_buttons.scss +0 -69
  162. data/app/assets/stylesheets/addons/_font-stacks.scss +0 -31
  163. data/app/assets/stylesheets/addons/_hide-text.scss +0 -27
  164. data/app/assets/stylesheets/addons/_margin.scss +0 -29
  165. data/app/assets/stylesheets/addons/_padding.scss +0 -29
  166. data/app/assets/stylesheets/addons/_position.scss +0 -51
  167. data/app/assets/stylesheets/addons/_prefixer.scss +0 -66
  168. data/app/assets/stylesheets/addons/_retina-image.scss +0 -27
  169. data/app/assets/stylesheets/addons/_size.scss +0 -56
  170. data/app/assets/stylesheets/addons/_text-inputs.scss +0 -118
  171. data/app/assets/stylesheets/addons/_triangle.scss +0 -63
  172. data/app/assets/stylesheets/addons/_word-wrap.scss +0 -29
  173. data/app/assets/stylesheets/css3/_animation.scss +0 -61
  174. data/app/assets/stylesheets/css3/_appearance.scss +0 -5
  175. data/app/assets/stylesheets/css3/_backface-visibility.scss +0 -5
  176. data/app/assets/stylesheets/css3/_background-image.scss +0 -44
  177. data/app/assets/stylesheets/css3/_background.scss +0 -57
  178. data/app/assets/stylesheets/css3/_border-image.scss +0 -61
  179. data/app/assets/stylesheets/css3/_calc.scss +0 -6
  180. data/app/assets/stylesheets/css3/_columns.scss +0 -67
  181. data/app/assets/stylesheets/css3/_filter.scss +0 -6
  182. data/app/assets/stylesheets/css3/_flex-box.scss +0 -327
  183. data/app/assets/stylesheets/css3/_font-face.scss +0 -29
  184. data/app/assets/stylesheets/css3/_font-feature-settings.scss +0 -6
  185. data/app/assets/stylesheets/css3/_hidpi-media-query.scss +0 -12
  186. data/app/assets/stylesheets/css3/_hyphens.scss +0 -6
  187. data/app/assets/stylesheets/css3/_image-rendering.scss +0 -15
  188. data/app/assets/stylesheets/css3/_keyframes.scss +0 -38
  189. data/app/assets/stylesheets/css3/_linear-gradient.scss +0 -40
  190. data/app/assets/stylesheets/css3/_perspective.scss +0 -12
  191. data/app/assets/stylesheets/css3/_placeholder.scss +0 -10
  192. data/app/assets/stylesheets/css3/_radial-gradient.scss +0 -40
  193. data/app/assets/stylesheets/css3/_selection.scss +0 -44
  194. data/app/assets/stylesheets/css3/_text-decoration.scss +0 -27
  195. data/app/assets/stylesheets/css3/_transform.scss +0 -21
  196. data/app/assets/stylesheets/css3/_transition.scss +0 -81
  197. data/app/assets/stylesheets/css3/_user-select.scss +0 -5
  198. data/app/assets/stylesheets/functions/_assign-inputs.scss +0 -16
  199. data/app/assets/stylesheets/functions/_contains-falsy.scss +0 -25
  200. data/app/assets/stylesheets/functions/_contains.scss +0 -31
  201. data/app/assets/stylesheets/functions/_is-light.scss +0 -26
  202. data/app/assets/stylesheets/functions/_is-number.scss +0 -16
  203. data/app/assets/stylesheets/functions/_is-size.scss +0 -23
  204. data/app/assets/stylesheets/functions/_modular-scale.scss +0 -74
  205. data/app/assets/stylesheets/functions/_px-to-em.scss +0 -24
  206. data/app/assets/stylesheets/functions/_px-to-rem.scss +0 -26
  207. data/app/assets/stylesheets/functions/_shade.scss +0 -24
  208. data/app/assets/stylesheets/functions/_strip-units.scss +0 -22
  209. data/app/assets/stylesheets/functions/_tint.scss +0 -24
  210. data/app/assets/stylesheets/functions/_transition-property-name.scss +0 -37
  211. data/app/assets/stylesheets/helpers/_convert-units.scss +0 -26
  212. data/app/assets/stylesheets/helpers/_directional-values.scss +0 -108
  213. data/app/assets/stylesheets/helpers/_font-source-declaration.scss +0 -53
  214. data/app/assets/stylesheets/helpers/_gradient-positions-parser.scss +0 -24
  215. data/app/assets/stylesheets/helpers/_linear-angle-parser.scss +0 -35
  216. data/app/assets/stylesheets/helpers/_linear-gradient-parser.scss +0 -51
  217. data/app/assets/stylesheets/helpers/_linear-positions-parser.scss +0 -77
  218. data/app/assets/stylesheets/helpers/_linear-side-corner-parser.scss +0 -41
  219. data/app/assets/stylesheets/helpers/_radial-arg-parser.scss +0 -74
  220. data/app/assets/stylesheets/helpers/_radial-gradient-parser.scss +0 -55
  221. data/app/assets/stylesheets/helpers/_radial-positions-parser.scss +0 -28
  222. data/app/assets/stylesheets/helpers/_render-gradients.scss +0 -31
  223. data/app/assets/stylesheets/helpers/_shape-size-stripper.scss +0 -15
  224. data/app/assets/stylesheets/helpers/_str-to-num.scss +0 -55
  225. data/app/assets/stylesheets/settings/_asset-pipeline.scss +0 -7
  226. data/app/assets/stylesheets/settings/_deprecation-warnings.scss +0 -8
  227. data/app/assets/stylesheets/settings/_prefixer.scss +0 -9
  228. data/app/assets/stylesheets/settings/_px-to-em.scss +0 -1
  229. data/lib/bourbon/engine.rb +0 -5
  230. data/lib/tasks/install.rake +0 -20
  231. data/sache.json +0 -5
  232. data/spec/bourbon/addons/font_stacks_spec.rb +0 -25
  233. data/spec/bourbon/addons/retina_image_spec.rb +0 -57
  234. data/spec/bourbon/addons/triangle_spec.rb +0 -32
  235. data/spec/bourbon/addons/word_wrap_spec.rb +0 -29
  236. data/spec/bourbon/css3/font_face_spec.rb +0 -45
  237. data/spec/bourbon/css3/hidpi_media_query_spec.rb +0 -23
  238. data/spec/bourbon/functions/is_light_spec.rb +0 -37
  239. data/spec/bourbon/functions/px_to_em_spec.rb +0 -31
  240. data/spec/bourbon/functions/px_to_rem_spec.rb +0 -25
  241. data/spec/bourbon/helpers/convert_units_spec.rb +0 -31
  242. data/spec/bourbon/helpers/directional_values_spec.rb +0 -39
  243. data/spec/bourbon/helpers/str_to_num_spec.rb +0 -25
  244. data/spec/fixtures/addons/font-stacks.scss +0 -21
  245. data/spec/fixtures/addons/retina-image.scss +0 -21
  246. data/spec/fixtures/addons/triangle.scss +0 -9
  247. data/spec/fixtures/addons/word-wrap.scss +0 -9
  248. data/spec/fixtures/css3/font-face.scss +0 -6
  249. data/spec/fixtures/css3/hidpi-media-query.scss +0 -13
  250. data/spec/fixtures/functions/assign-inputs.scss +0 -19
  251. data/spec/fixtures/functions/is-light.scss +0 -29
  252. data/spec/fixtures/functions/px-to-em.scss +0 -17
  253. data/spec/fixtures/functions/px-to-rem.scss +0 -15
  254. data/spec/fixtures/functions/strip-units.scss +0 -17
  255. data/spec/fixtures/functions/unpack.scss +0 -17
  256. data/spec/fixtures/helpers/convert-units.scss +0 -17
  257. data/spec/fixtures/helpers/directional-values.scss +0 -29
  258. data/spec/fixtures/helpers/font-source-declaration.scss +0 -10
  259. data/spec/fixtures/helpers/str-to-num.scss +0 -13
  260. data/spec/support/matchers/be_contained_in.rb +0 -10
@@ -0,0 +1,25 @@
1
+ @charset "UTF-8";
2
+
3
+ /// Provides a concise, one-line method for setting `border-width` on specific
4
+ /// edges of a box. Use a `null` value to “skip” edges of the box with standard
5
+ /// CSS shorthand.
6
+ ///
7
+ /// @argument {list} $values
8
+ /// List of border widths; accepts CSS shorthand.
9
+ ///
10
+ /// @example scss
11
+ /// .element {
12
+ /// @include border-width(1em null 20px);
13
+ /// }
14
+ ///
15
+ /// // CSS Output
16
+ /// .element {
17
+ /// border-bottom-width: 20px;
18
+ /// border-top-width: 1em;
19
+ /// }
20
+ ///
21
+ /// @require {mixin} _directional-property
22
+
23
+ @mixin border-width($values) {
24
+ @include _directional-property(border, width, $values);
25
+ }
@@ -0,0 +1,84 @@
1
+ @charset "UTF-8";
2
+
3
+ ////
4
+ /// @type list
5
+ ///
6
+ /// @require {function} _assign-inputs
7
+ ///
8
+ /// @require {variable} $_buttons-list
9
+ ////
10
+
11
+ /// A list of all HTML button elements. Please note that you must interpolate
12
+ /// the variable (`#{}`) to use it as a selector.
13
+ ///
14
+ /// @example scss
15
+ /// #{$all-buttons} {
16
+ /// background-color: #f00;
17
+ /// }
18
+ ///
19
+ /// // CSS Output
20
+ /// button,
21
+ /// [type='button'],
22
+ /// [type='reset'],
23
+ /// [type='submit'] {
24
+ /// background-color: #f00;
25
+ /// }
26
+
27
+ $all-buttons: _assign-inputs($_buttons-list);
28
+
29
+ /// A list of all HTML button elements with the `:active` pseudo-class applied.
30
+ /// Please note that you must interpolate the variable (`#{}`) to use it as a
31
+ /// selector.
32
+ ///
33
+ /// @example scss
34
+ /// #{$all-buttons-active} {
35
+ /// background-color: #00f;
36
+ /// }
37
+ ///
38
+ /// // CSS Output
39
+ /// button:active,
40
+ /// [type='button']:active,
41
+ /// [type='reset']:active,
42
+ /// [type='submit']:active {
43
+ /// background-color: #00f;
44
+ /// }
45
+
46
+ $all-buttons-active: _assign-inputs($_buttons-list, active);
47
+
48
+ /// A list of all HTML button elements with the `:focus` pseudo-class applied.
49
+ /// Please note that you must interpolate the variable (`#{}`) to use it as a
50
+ /// selector.
51
+ ///
52
+ /// @example scss
53
+ /// #{$all-buttons-focus} {
54
+ /// background-color: #0f0;
55
+ /// }
56
+ ///
57
+ /// // CSS Output
58
+ /// button:focus,
59
+ /// [type='button']:focus,
60
+ /// [type='reset']:focus,
61
+ /// [type='submit']:focus {
62
+ /// background-color: #0f0;
63
+ /// }
64
+
65
+ $all-buttons-focus: _assign-inputs($_buttons-list, focus);
66
+
67
+ /// A list of all HTML button elements with the `:hover` pseudo-class applied.
68
+ /// Please note that you must interpolate the variable (`#{}`) to use it as a
69
+ /// selector.
70
+ ///
71
+ /// @example scss
72
+ /// #{$all-buttons-hover} {
73
+ /// background-color: #0f0;
74
+ /// }
75
+ ///
76
+ /// // CSS Output
77
+ /// button:hover,
78
+ /// [type='button']:hover,
79
+ /// [type='reset']:hover,
80
+ /// [type='submit']:hover {
81
+ /// background-color: #0f0;
82
+ /// }
83
+
84
+ $all-buttons-hover: _assign-inputs($_buttons-list, hover);
@@ -2,24 +2,24 @@
2
2
 
3
3
  /// Provides an easy way to include a clearfix for containing floats.
4
4
  ///
5
- /// @link http://cssmojo.com/latest_new_clearfix_so_far/
5
+ /// @link https://goo.gl/yP5hiZ
6
6
  ///
7
- /// @example scss - Usage
7
+ /// @example scss
8
8
  /// .element {
9
9
  /// @include clearfix;
10
10
  /// }
11
11
  ///
12
- /// @example css - CSS Output
12
+ /// // CSS Output
13
13
  /// .element::after {
14
14
  /// clear: both;
15
15
  /// content: "";
16
- /// display: table;
16
+ /// display: block;
17
17
  /// }
18
18
 
19
19
  @mixin clearfix {
20
20
  &::after {
21
21
  clear: both;
22
22
  content: "";
23
- display: table;
23
+ display: block;
24
24
  }
25
25
  }
@@ -0,0 +1,81 @@
1
+ @charset "UTF-8";
2
+
3
+ /// Switches between two colors based on the contrast to another color. It’s
4
+ /// like a [ternary operator] for color contrast and can be useful for building
5
+ /// a button system.
6
+ ///
7
+ /// The calculation of the contrast ratio is based on the [WCAG 2.0
8
+ /// specification]. However, we cannot guarantee full compliance, though all of
9
+ /// our manual testing passed.
10
+ ///
11
+ /// [ternary operator]: https://goo.gl/ccfLqi
12
+ /// [WCAG 2.0 specification]: https://goo.gl/zhQuYA
13
+ ///
14
+ /// @argument {color} $base-color
15
+ /// The color to evaluate lightness against.
16
+ ///
17
+ /// @argument {color} $dark-color [#000]
18
+ /// The color to be output when `$base-color` is light. Can also be set
19
+ /// globally using the `contrast-switch-dark-color` key in the
20
+ /// Bourbon settings.
21
+ ///
22
+ /// @argument {color} $light-color [#fff]
23
+ /// The color to be output when `$base-color` is dark. Can also be set
24
+ /// globally using the `contrast-switch-light-color` key in the
25
+ /// Bourbon settings.
26
+ ///
27
+ /// @return {color}
28
+ ///
29
+ /// @example scss
30
+ /// .element {
31
+ /// color: contrast-switch(#bae6e6);
32
+ /// }
33
+ ///
34
+ /// // CSS Output
35
+ /// .element {
36
+ /// color: #000;
37
+ /// }
38
+ ///
39
+ /// @example scss
40
+ /// .element {
41
+ /// $button-color: #2d72d9;
42
+ /// background-color: $button-color;
43
+ /// color: contrast-switch($button-color, #222, #eee);
44
+ /// }
45
+ ///
46
+ /// // CSS Output
47
+ /// .element {
48
+ /// background-color: #2d72d9;
49
+ /// color: #eee;
50
+ /// }
51
+ ///
52
+ /// @require {function} _fetch-bourbon-setting
53
+ ///
54
+ /// @require {function} _is-color
55
+ ///
56
+ /// @require {function} _contrast-ratio
57
+ ///
58
+ /// @since 5.0.0
59
+
60
+ @function contrast-switch(
61
+ $base-color,
62
+ $dark-color: _fetch-bourbon-setting("contrast-switch-dark-color"),
63
+ $light-color: _fetch-bourbon-setting("contrast-switch-light-color")
64
+ ) {
65
+ @if not _is-color($base-color) {
66
+ @error "`#{$base-color}` is not a valid color for the `$base-color` " +
67
+ "argument in the `contrast-switch` function.";
68
+ } @else if not _is-color($dark-color) {
69
+ @error "`#{$dark-color}` is not a valid color for the `$dark-color` " +
70
+ "argument in the `contrast-switch` function.";
71
+ } @else if not _is-color($light-color) {
72
+ @error "`#{$light-color}` is not a valid color for the `$light-color` " +
73
+ "argument in the `contrast-switch` function.";
74
+ } @else {
75
+ $-contrast-to-dark: _contrast-ratio($base-color, $dark-color);
76
+ $-contrast-to-light: _contrast-ratio($base-color, $light-color);
77
+ $-prefer-dark: $-contrast-to-dark >= $-contrast-to-light;
78
+
79
+ @return if($-prefer-dark, $dark-color, $light-color);
80
+ }
81
+ }
@@ -2,15 +2,18 @@
2
2
 
3
3
  /// Truncates text and adds an ellipsis to represent overflow.
4
4
  ///
5
- /// @param {Number} $width [100%]
6
- /// Max-width for the string to respect before being truncated
5
+ /// @argument {number} $width [100%]
6
+ /// The `max-width` for the string to respect before being truncated.
7
7
  ///
8
- /// @example scss - Usage
8
+ /// @argument {string} $display [inline-block]
9
+ /// Sets the display-value of the element.
10
+ ///
11
+ /// @example scss
9
12
  /// .element {
10
13
  /// @include ellipsis;
11
14
  /// }
12
15
  ///
13
- /// @example css - CSS Output
16
+ /// // CSS Output
14
17
  /// .element {
15
18
  /// display: inline-block;
16
19
  /// max-width: 100%;
@@ -20,8 +23,11 @@
20
23
  /// word-wrap: normal;
21
24
  /// }
22
25
 
23
- @mixin ellipsis($width: 100%) {
24
- display: inline-block;
26
+ @mixin ellipsis(
27
+ $width: 100%,
28
+ $display: inline-block
29
+ ) {
30
+ display: $display;
25
31
  max-width: $width;
26
32
  overflow: hidden;
27
33
  text-overflow: ellipsis;
@@ -0,0 +1,65 @@
1
+ @charset "UTF-8";
2
+
3
+ /// Generates an `@font-face` declaration. You can choose the specific file
4
+ /// formats you need to output; the mixin supports `eot`, `ttf`, `svg`, `woff2`
5
+ /// and `woff`. The mixin also supports usage with the Rails Asset Pipeline,
6
+ /// which you can enable per use, or globally in the `$bourbon()` settings.
7
+ ///
8
+ /// @argument {string} $font-family
9
+ ///
10
+ /// @argument {string} $file-path
11
+ ///
12
+ /// @argument {string} $asset-pipeline [false]
13
+ /// Set to `true` if you’re using the Rails Asset Pipeline (place the fonts
14
+ /// in `app/assets/fonts/`). Can also be set globally using the
15
+ /// `rails-asset-pipeline` key in the Bourbon settings.
16
+ ///
17
+ /// @argument {string | list} $file-formats [("ttf", "woff2", "woff")]
18
+ /// List of the font file formats to include. Can also be set globally using
19
+ /// the `global-font-file-formats` key in the Bourbon settings.
20
+ ///
21
+ /// @content
22
+ /// Any additional CSS properties that are included in the `@include`
23
+ /// directive will be output within the `@font-face` declaration, e.g. you can
24
+ /// pass in `font-weight`, `font-style` and/or `unicode-range`.
25
+ ///
26
+ /// @example scss
27
+ /// @include font-face(
28
+ /// "source-sans-pro",
29
+ /// "fonts/source-sans-pro-regular",
30
+ /// ("woff2", "woff")
31
+ /// ) {
32
+ /// font-style: normal;
33
+ /// font-weight: 400;
34
+ /// }
35
+ ///
36
+ /// // CSS Output
37
+ /// @font-face {
38
+ /// font-family: "source-sans-pro";
39
+ /// src: url("fonts/source-sans-pro-regular.woff2") format("woff2"),
40
+ /// url("fonts/source-sans-pro-regular.woff") format("woff");
41
+ /// font-style: normal;
42
+ /// font-weight: 400;
43
+ /// }
44
+ ///
45
+ /// @require {function} _font-source-declaration
46
+ ///
47
+ /// @require {function} _fetch-bourbon-setting
48
+
49
+ @mixin font-face(
50
+ $font-family,
51
+ $file-path,
52
+ $file-formats: _fetch-bourbon-setting("global-font-file-formats"),
53
+ $asset-pipeline: _fetch-bourbon-setting("rails-asset-pipeline")
54
+ ) {
55
+ @font-face {
56
+ font-family: $font-family;
57
+ src: _font-source-declaration(
58
+ $font-family,
59
+ $file-path,
60
+ $asset-pipeline,
61
+ $file-formats
62
+ );
63
+ @content;
64
+ }
65
+ }
@@ -0,0 +1,249 @@
1
+ @charset "UTF-8";
2
+
3
+ /// A variable that outputs a Helvetica font stack.
4
+ ///
5
+ /// @link https://goo.gl/uSJvZe
6
+ ///
7
+ /// @type list
8
+ ///
9
+ /// @example scss
10
+ /// .element {
11
+ /// font-family: $font-stack-helvetica;
12
+ /// }
13
+ ///
14
+ /// // CSS Output
15
+ /// .element {
16
+ /// font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
17
+ /// }
18
+
19
+ $font-stack-helvetica: (
20
+ "Helvetica Neue",
21
+ "Helvetica",
22
+ "Arial",
23
+ sans-serif,
24
+ );
25
+
26
+ /// A variable that outputs a Lucida Grande font stack.
27
+ ///
28
+ /// @link https://goo.gl/R5UyYE
29
+ ///
30
+ /// @type list
31
+ ///
32
+ /// @example scss
33
+ /// .element {
34
+ /// font-family: $font-stack-lucida-grande;
35
+ /// }
36
+ ///
37
+ /// // CSS Output
38
+ /// .element {
39
+ /// font-family: "Lucida Grande", "Lucida Sans Unicode", "Geneva", "Verdana", sans-serif;
40
+ /// }
41
+
42
+ $font-stack-lucida-grande: (
43
+ "Lucida Grande",
44
+ "Lucida Sans Unicode",
45
+ "Geneva",
46
+ "Verdana",
47
+ sans-serif,
48
+ );
49
+
50
+ /// A variable that outputs a Verdana font stack.
51
+ ///
52
+ /// @link https://goo.gl/yGXWSS
53
+ ///
54
+ /// @type list
55
+ ///
56
+ /// @example scss
57
+ /// .element {
58
+ /// font-family: $font-stack-verdana;
59
+ /// }
60
+ ///
61
+ /// // CSS Output
62
+ /// .element {
63
+ /// font-family: "Verdana", "Geneva", sans-serif;
64
+ /// }
65
+
66
+ $font-stack-verdana: (
67
+ "Verdana",
68
+ "Geneva",
69
+ sans-serif,
70
+ );
71
+
72
+ /// A variable that outputs a system font stack.
73
+ ///
74
+ /// @link https://goo.gl/LHRZIf
75
+ ///
76
+ /// @type list
77
+ ///
78
+ /// @example scss
79
+ /// .element {
80
+ /// font-family: $font-stack-system;
81
+ /// }
82
+ ///
83
+ /// // CSS Output
84
+ /// .element {
85
+ /// font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", "Avenir", "Segoe UI", "Lucida Grande", "Helvetica Neue", "Helvetica", "Fira Sans", "Roboto", "Noto", "Droid Sans", "Cantarell", "Oxygen", "Ubuntu", "Franklin Gothic Medium", "Century Gothic", "Liberation Sans", sans-serif;
86
+ /// }
87
+
88
+ $font-stack-system: (
89
+ -apple-system,
90
+ BlinkMacSystemFont,
91
+ "Avenir Next",
92
+ "Avenir",
93
+ "Segoe UI",
94
+ "Lucida Grande",
95
+ "Helvetica Neue",
96
+ "Helvetica",
97
+ "Fira Sans",
98
+ "Roboto",
99
+ "Noto",
100
+ "Droid Sans",
101
+ "Cantarell",
102
+ "Oxygen",
103
+ "Ubuntu",
104
+ "Franklin Gothic Medium",
105
+ "Century Gothic",
106
+ "Liberation Sans",
107
+ sans-serif,
108
+ );
109
+
110
+ /// A variable that outputs a Garamond font stack.
111
+ ///
112
+ /// @link https://goo.gl/QQFEkV
113
+ ///
114
+ /// @type list
115
+ ///
116
+ /// @example scss
117
+ /// .element {
118
+ /// font-family: $font-stack-garamond;
119
+ /// }
120
+ ///
121
+ /// // CSS Output
122
+ /// .element {
123
+ /// font-family: "Garamond", "Baskerville", "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif;
124
+ /// }
125
+
126
+ $font-stack-garamond: (
127
+ "Garamond",
128
+ "Baskerville",
129
+ "Baskerville Old Face",
130
+ "Hoefler Text",
131
+ "Times New Roman",
132
+ serif,
133
+ );
134
+
135
+ /// A variable that outputs a Georgia font stack.
136
+ ///
137
+ /// @link https://goo.gl/wtzVPy
138
+ ///
139
+ /// @type list
140
+ ///
141
+ /// @example scss
142
+ /// .element {
143
+ /// font-family: $font-stack-georgia;
144
+ /// }
145
+ ///
146
+ /// // CSS Output
147
+ /// .element {
148
+ /// font-family: "Georgia", "Times", "Times New Roman", serif;
149
+ /// }
150
+
151
+ $font-stack-georgia: (
152
+ "Georgia",
153
+ "Times",
154
+ "Times New Roman",
155
+ serif,
156
+ );
157
+
158
+ /// A variable that outputs a Hoefler Text font stack.
159
+ ///
160
+ /// @link https://goo.gl/n7U7zx
161
+ ///
162
+ /// @type list
163
+ ///
164
+ /// @example scss
165
+ /// .element {
166
+ /// font-family: $font-stack-hoefler-text;
167
+ /// }
168
+ ///
169
+ /// // CSS Output
170
+ /// .element {
171
+ /// font-family: "Hoefler Text", "Baskerville Old Face", "Garamond", "Times New Roman", serif;
172
+ /// }
173
+
174
+ $font-stack-hoefler-text: (
175
+ "Hoefler Text",
176
+ "Baskerville Old Face",
177
+ "Garamond",
178
+ "Times New Roman",
179
+ serif,
180
+ );
181
+
182
+ /// A variable that outputs a Consolas font stack.
183
+ ///
184
+ /// @link https://goo.gl/iKrtqv
185
+ ///
186
+ /// @type list
187
+ ///
188
+ /// @example scss
189
+ /// .element {
190
+ /// font-family: $font-stack-consolas;
191
+ /// }
192
+ ///
193
+ /// // CSS Output
194
+ /// .element {
195
+ /// font-family: "Consolas", "monaco", monospace;
196
+ /// }
197
+
198
+ $font-stack-consolas: (
199
+ "Consolas",
200
+ "monaco",
201
+ monospace,
202
+ );
203
+
204
+ /// A variable that outputs a Courier New font stack.
205
+ ///
206
+ /// @link https://goo.gl/bHfWMP
207
+ ///
208
+ /// @type list
209
+ ///
210
+ /// @example scss
211
+ /// .element {
212
+ /// font-family: $font-stack-courier-new;
213
+ /// }
214
+ ///
215
+ /// // CSS Output
216
+ /// .element {
217
+ /// font-family: "Courier New", "Courier", "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
218
+ /// }
219
+
220
+ $font-stack-courier-new: (
221
+ "Courier New",
222
+ "Courier",
223
+ "Lucida Sans Typewriter",
224
+ "Lucida Typewriter",
225
+ monospace,
226
+ );
227
+
228
+ /// A variable that outputs a Monaco font stack.
229
+ ///
230
+ /// @link https://goo.gl/9PgKDO
231
+ ///
232
+ /// @type list
233
+ ///
234
+ /// @example scss
235
+ /// .element {
236
+ /// font-family: $font-stack-monaco;
237
+ /// }
238
+ ///
239
+ /// // CSS Output
240
+ /// .element {
241
+ /// font-family: "Monaco", "Consolas", "Lucida Console", monospace;
242
+ /// }
243
+
244
+ $font-stack-monaco: (
245
+ "Monaco",
246
+ "Consolas",
247
+ "Lucida Console",
248
+ monospace,
249
+ );