bourbon 4.3.4 → 5.0.0.alpha.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (164) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -1
  3. data/.npmignore +1 -0
  4. data/.scss-lint.yml +2 -143
  5. data/.travis.yml +8 -0
  6. data/LICENSE.md +1 -1
  7. data/README.md +5 -19
  8. data/bourbon.gemspec +2 -2
  9. data/bower.json +7 -6
  10. data/core/_bourbon.scss +47 -0
  11. data/core/bourbon/_bourbon-deprecated.scss +1 -0
  12. data/core/bourbon/addons/_border-color.scss +26 -0
  13. data/{app/assets/stylesheets → core/bourbon}/addons/_border-radius.scss +19 -18
  14. data/core/bourbon/addons/_border-style.scss +25 -0
  15. data/core/bourbon/addons/_border-width.scss +25 -0
  16. data/core/bourbon/addons/_buttons.scss +61 -0
  17. data/core/bourbon/addons/_clearfix.scss +25 -0
  18. data/core/bourbon/addons/_ellipsis.scss +30 -0
  19. data/core/bourbon/addons/_font-stacks.scss +19 -0
  20. data/core/bourbon/addons/_hide-text.scss +23 -0
  21. data/core/bourbon/addons/_margin.scss +26 -0
  22. data/core/bourbon/addons/_padding.scss +26 -0
  23. data/core/bourbon/addons/_position.scss +49 -0
  24. data/core/bourbon/addons/_prefixer.scss +33 -0
  25. data/core/bourbon/addons/_size.scss +43 -0
  26. data/core/bourbon/addons/_text-inputs.scss +123 -0
  27. data/{app/assets/stylesheets → core/bourbon}/addons/_timing-functions.scss +7 -3
  28. data/core/bourbon/addons/_word-wrap.scss +29 -0
  29. data/core/bourbon/css3/_font-face.scss +50 -0
  30. data/core/bourbon/functions/_assign-inputs.scss +25 -0
  31. data/core/bourbon/functions/_contains-falsy.scss +20 -0
  32. data/core/bourbon/functions/_contains.scss +23 -0
  33. data/{app/assets/stylesheets → core/bourbon}/functions/_is-length.scss +3 -6
  34. data/{app/assets/stylesheets → core/bourbon}/functions/_is-light.scss +5 -10
  35. data/{app/assets/stylesheets → core/bourbon}/functions/_is-number.scss +3 -6
  36. data/core/bourbon/functions/_is-size.scss +16 -0
  37. data/core/bourbon/functions/_modular-scale.scss +101 -0
  38. data/core/bourbon/functions/_shade.scss +24 -0
  39. data/core/bourbon/functions/_strip-unit.scss +17 -0
  40. data/core/bourbon/functions/_tint.scss +24 -0
  41. data/{app/assets/stylesheets → core/bourbon}/functions/_unpack.scss +11 -14
  42. data/{app/assets/stylesheets → core/bourbon}/helpers/_directional-values.scss +26 -36
  43. data/{app/assets/stylesheets → core/bourbon}/helpers/_font-source-declaration.scss +0 -10
  44. data/{app/assets/stylesheets → core/bourbon}/settings/_asset-pipeline.scss +1 -1
  45. data/core/bourbon/settings/_global-font-file-formats.scss +12 -0
  46. data/core/bourbon/settings/_modular-scale.scss +17 -0
  47. data/core/bourbon/settings/_scales.scss +27 -0
  48. data/features/step_definitions/bourbon_steps.rb +1 -1
  49. data/index.js +1 -1
  50. data/lib/bourbon/engine.rb +1 -1
  51. data/lib/bourbon/generator.rb +1 -1
  52. data/lib/bourbon/version.rb +1 -1
  53. data/package.json +1 -6
  54. data/spec/bourbon/addons/buttons_spec.rb +3 -3
  55. data/spec/bourbon/addons/font_stacks_spec.rb +21 -11
  56. data/spec/bourbon/addons/text_inputs_spec.rb +14 -14
  57. data/spec/bourbon/css3/font_face_spec_1.rb +18 -0
  58. data/spec/bourbon/css3/font_face_spec_2.rb +19 -0
  59. data/spec/bourbon/css3/font_face_spec_3.rb +18 -0
  60. data/spec/bourbon/css3/font_face_spec_4.rb +19 -0
  61. data/spec/bourbon/functions/assign_inputs_spec.rb +3 -3
  62. data/spec/bourbon/functions/{strip_units_spec.rb → strip_unit_spec.rb} +2 -2
  63. data/spec/fixtures/_setup.scss +1 -1
  64. data/spec/fixtures/addons/font-stacks.scss +24 -8
  65. data/spec/fixtures/addons/size.scss +2 -2
  66. data/spec/fixtures/css3/font-face-1.scss +3 -0
  67. data/spec/fixtures/css3/font-face-2.scss +3 -0
  68. data/spec/fixtures/css3/font-face-3.scss +3 -0
  69. data/spec/fixtures/css3/font-face-4.scss +3 -0
  70. data/spec/fixtures/functions/assign-inputs.scss +1 -1
  71. data/spec/fixtures/functions/strip-unit.scss +17 -0
  72. metadata +72 -129
  73. data/CHANGELOG.md +0 -47
  74. data/app/assets/stylesheets/_bourbon-deprecate.scss +0 -19
  75. data/app/assets/stylesheets/_bourbon-deprecated-upcoming.scss +0 -425
  76. data/app/assets/stylesheets/_bourbon.scss +0 -90
  77. data/app/assets/stylesheets/addons/_border-color.scss +0 -29
  78. data/app/assets/stylesheets/addons/_border-style.scss +0 -28
  79. data/app/assets/stylesheets/addons/_border-width.scss +0 -28
  80. data/app/assets/stylesheets/addons/_buttons.scss +0 -69
  81. data/app/assets/stylesheets/addons/_clearfix.scss +0 -25
  82. data/app/assets/stylesheets/addons/_ellipsis.scss +0 -30
  83. data/app/assets/stylesheets/addons/_font-stacks.scss +0 -31
  84. data/app/assets/stylesheets/addons/_hide-text.scss +0 -27
  85. data/app/assets/stylesheets/addons/_margin.scss +0 -29
  86. data/app/assets/stylesheets/addons/_padding.scss +0 -29
  87. data/app/assets/stylesheets/addons/_position.scss +0 -51
  88. data/app/assets/stylesheets/addons/_prefixer.scss +0 -66
  89. data/app/assets/stylesheets/addons/_retina-image.scss +0 -27
  90. data/app/assets/stylesheets/addons/_size.scss +0 -56
  91. data/app/assets/stylesheets/addons/_text-inputs.scss +0 -118
  92. data/app/assets/stylesheets/addons/_triangle.scss +0 -63
  93. data/app/assets/stylesheets/addons/_word-wrap.scss +0 -29
  94. data/app/assets/stylesheets/css3/_animation.scss +0 -61
  95. data/app/assets/stylesheets/css3/_appearance.scss +0 -5
  96. data/app/assets/stylesheets/css3/_backface-visibility.scss +0 -5
  97. data/app/assets/stylesheets/css3/_background-image.scss +0 -44
  98. data/app/assets/stylesheets/css3/_background.scss +0 -57
  99. data/app/assets/stylesheets/css3/_border-image.scss +0 -61
  100. data/app/assets/stylesheets/css3/_calc.scss +0 -6
  101. data/app/assets/stylesheets/css3/_columns.scss +0 -67
  102. data/app/assets/stylesheets/css3/_filter.scss +0 -6
  103. data/app/assets/stylesheets/css3/_flex-box.scss +0 -327
  104. data/app/assets/stylesheets/css3/_font-face.scss +0 -29
  105. data/app/assets/stylesheets/css3/_font-feature-settings.scss +0 -6
  106. data/app/assets/stylesheets/css3/_hidpi-media-query.scss +0 -12
  107. data/app/assets/stylesheets/css3/_hyphens.scss +0 -6
  108. data/app/assets/stylesheets/css3/_image-rendering.scss +0 -15
  109. data/app/assets/stylesheets/css3/_keyframes.scss +0 -38
  110. data/app/assets/stylesheets/css3/_linear-gradient.scss +0 -40
  111. data/app/assets/stylesheets/css3/_perspective.scss +0 -12
  112. data/app/assets/stylesheets/css3/_placeholder.scss +0 -10
  113. data/app/assets/stylesheets/css3/_radial-gradient.scss +0 -40
  114. data/app/assets/stylesheets/css3/_selection.scss +0 -44
  115. data/app/assets/stylesheets/css3/_text-decoration.scss +0 -27
  116. data/app/assets/stylesheets/css3/_transform.scss +0 -21
  117. data/app/assets/stylesheets/css3/_transition.scss +0 -81
  118. data/app/assets/stylesheets/css3/_user-select.scss +0 -5
  119. data/app/assets/stylesheets/functions/_assign-inputs.scss +0 -16
  120. data/app/assets/stylesheets/functions/_contains-falsy.scss +0 -25
  121. data/app/assets/stylesheets/functions/_contains.scss +0 -31
  122. data/app/assets/stylesheets/functions/_is-size.scss +0 -23
  123. data/app/assets/stylesheets/functions/_modular-scale.scss +0 -74
  124. data/app/assets/stylesheets/functions/_px-to-em.scss +0 -24
  125. data/app/assets/stylesheets/functions/_px-to-rem.scss +0 -26
  126. data/app/assets/stylesheets/functions/_shade.scss +0 -24
  127. data/app/assets/stylesheets/functions/_strip-units.scss +0 -22
  128. data/app/assets/stylesheets/functions/_tint.scss +0 -24
  129. data/app/assets/stylesheets/functions/_transition-property-name.scss +0 -37
  130. data/app/assets/stylesheets/helpers/_convert-units.scss +0 -26
  131. data/app/assets/stylesheets/helpers/_gradient-positions-parser.scss +0 -24
  132. data/app/assets/stylesheets/helpers/_linear-angle-parser.scss +0 -35
  133. data/app/assets/stylesheets/helpers/_linear-gradient-parser.scss +0 -51
  134. data/app/assets/stylesheets/helpers/_linear-positions-parser.scss +0 -77
  135. data/app/assets/stylesheets/helpers/_linear-side-corner-parser.scss +0 -41
  136. data/app/assets/stylesheets/helpers/_radial-arg-parser.scss +0 -74
  137. data/app/assets/stylesheets/helpers/_radial-gradient-parser.scss +0 -55
  138. data/app/assets/stylesheets/helpers/_radial-positions-parser.scss +0 -28
  139. data/app/assets/stylesheets/helpers/_render-gradients.scss +0 -31
  140. data/app/assets/stylesheets/helpers/_shape-size-stripper.scss +0 -15
  141. data/app/assets/stylesheets/helpers/_str-to-num.scss +0 -55
  142. data/app/assets/stylesheets/settings/_deprecation-warnings.scss +0 -8
  143. data/app/assets/stylesheets/settings/_prefixer.scss +0 -9
  144. data/app/assets/stylesheets/settings/_px-to-em.scss +0 -1
  145. data/circle.yml +0 -10
  146. data/eyeglass-exports.js +0 -7
  147. data/sache.json +0 -5
  148. data/spec/bourbon/addons/retina_image_spec.rb +0 -57
  149. data/spec/bourbon/addons/triangle_spec.rb +0 -32
  150. data/spec/bourbon/css3/font_face_spec.rb +0 -45
  151. data/spec/bourbon/css3/hidpi_media_query_spec.rb +0 -23
  152. data/spec/bourbon/functions/px_to_em_spec.rb +0 -31
  153. data/spec/bourbon/functions/px_to_rem_spec.rb +0 -25
  154. data/spec/bourbon/helpers/convert_units_spec.rb +0 -31
  155. data/spec/bourbon/helpers/str_to_num_spec.rb +0 -25
  156. data/spec/fixtures/addons/retina-image.scss +0 -21
  157. data/spec/fixtures/addons/triangle.scss +0 -9
  158. data/spec/fixtures/css3/font-face.scss +0 -6
  159. data/spec/fixtures/css3/hidpi-media-query.scss +0 -13
  160. data/spec/fixtures/functions/px-to-em.scss +0 -17
  161. data/spec/fixtures/functions/px-to-rem.scss +0 -15
  162. data/spec/fixtures/functions/strip-units.scss +0 -17
  163. data/spec/fixtures/helpers/convert-units.scss +0 -17
  164. data/spec/fixtures/helpers/str-to-num.scss +0 -13
@@ -1,90 +0,0 @@
1
- // Bourbon 4.3.4
2
- // http://bourbon.io
3
- // Copyright 2011-2017 thoughtbot, inc.
4
- // MIT License
5
-
6
- @import "settings/deprecation-warnings";
7
- @import "settings/prefixer";
8
- @import "settings/px-to-em";
9
- @import "settings/asset-pipeline";
10
-
11
- @import "bourbon-deprecate";
12
-
13
- @import "functions/assign-inputs";
14
- @import "functions/contains";
15
- @import "functions/contains-falsy";
16
- @import "functions/is-length";
17
- @import "functions/is-light";
18
- @import "functions/is-number";
19
- @import "functions/is-size";
20
- @import "functions/px-to-em";
21
- @import "functions/px-to-rem";
22
- @import "functions/shade";
23
- @import "functions/strip-units";
24
- @import "functions/tint";
25
- @import "functions/transition-property-name";
26
- @import "functions/unpack";
27
- @import "functions/modular-scale";
28
-
29
- @import "helpers/convert-units";
30
- @import "helpers/directional-values";
31
- @import "helpers/font-source-declaration";
32
- @import "helpers/gradient-positions-parser";
33
- @import "helpers/linear-angle-parser";
34
- @import "helpers/linear-gradient-parser";
35
- @import "helpers/linear-positions-parser";
36
- @import "helpers/linear-side-corner-parser";
37
- @import "helpers/radial-arg-parser";
38
- @import "helpers/radial-positions-parser";
39
- @import "helpers/radial-gradient-parser";
40
- @import "helpers/render-gradients";
41
- @import "helpers/shape-size-stripper";
42
- @import "helpers/str-to-num";
43
-
44
- @import "css3/animation";
45
- @import "css3/appearance";
46
- @import "css3/backface-visibility";
47
- @import "css3/background";
48
- @import "css3/background-image";
49
- @import "css3/border-image";
50
- @import "css3/calc";
51
- @import "css3/columns";
52
- @import "css3/filter";
53
- @import "css3/flex-box";
54
- @import "css3/font-face";
55
- @import "css3/font-feature-settings";
56
- @import "css3/hidpi-media-query";
57
- @import "css3/hyphens";
58
- @import "css3/image-rendering";
59
- @import "css3/keyframes";
60
- @import "css3/linear-gradient";
61
- @import "css3/perspective";
62
- @import "css3/placeholder";
63
- @import "css3/radial-gradient";
64
- @import "css3/selection";
65
- @import "css3/text-decoration";
66
- @import "css3/transform";
67
- @import "css3/transition";
68
- @import "css3/user-select";
69
-
70
- @import "addons/border-color";
71
- @import "addons/border-radius";
72
- @import "addons/border-style";
73
- @import "addons/border-width";
74
- @import "addons/buttons";
75
- @import "addons/clearfix";
76
- @import "addons/ellipsis";
77
- @import "addons/font-stacks";
78
- @import "addons/hide-text";
79
- @import "addons/margin";
80
- @import "addons/padding";
81
- @import "addons/position";
82
- @import "addons/prefixer";
83
- @import "addons/retina-image";
84
- @import "addons/size";
85
- @import "addons/text-inputs";
86
- @import "addons/timing-functions";
87
- @import "addons/triangle";
88
- @import "addons/word-wrap";
89
-
90
- @import "bourbon-deprecated-upcoming";
@@ -1,29 +0,0 @@
1
- @charset "UTF-8";
2
-
3
- /// Provides a quick method for targeting `border-color` on specific sides of a box. Use a `null` value to “skip” a side.
4
- ///
5
- /// @param {Arglist} $vals
6
- /// List of arguments
7
- ///
8
- /// @example scss - Usage
9
- /// .element {
10
- /// @include border-color(#a60b55 #76cd9c null #e8ae1a);
11
- /// }
12
- ///
13
- /// @example css - CSS Output
14
- /// .element {
15
- /// border-left-color: #e8ae1a;
16
- /// border-right-color: #76cd9c;
17
- /// border-top-color: #a60b55;
18
- /// }
19
- ///
20
- /// @require {mixin} directional-property
21
- ///
22
- /// @output `border-color`
23
-
24
- @mixin border-color($vals...) {
25
- $user-deprecation-warnings-setting: $output-bourbon-deprecation-warnings;
26
- $output-bourbon-deprecation-warnings: false !global;
27
- @include directional-property(border, color, $vals...);
28
- $output-bourbon-deprecation-warnings: $user-deprecation-warnings-setting !global;
29
- }
@@ -1,28 +0,0 @@
1
- @charset "UTF-8";
2
-
3
- /// Provides a quick method for targeting `border-style` on specific sides of a box. Use a `null` value to “skip” a side.
4
- ///
5
- /// @param {Arglist} $vals
6
- /// List of arguments
7
- ///
8
- /// @example scss - Usage
9
- /// .element {
10
- /// @include border-style(dashed null solid);
11
- /// }
12
- ///
13
- /// @example css - CSS Output
14
- /// .element {
15
- /// border-bottom-style: solid;
16
- /// border-top-style: dashed;
17
- /// }
18
- ///
19
- /// @require {mixin} directional-property
20
- ///
21
- /// @output `border-style`
22
-
23
- @mixin border-style($vals...) {
24
- $user-deprecation-warnings-setting: $output-bourbon-deprecation-warnings;
25
- $output-bourbon-deprecation-warnings: false !global;
26
- @include directional-property(border, style, $vals...);
27
- $output-bourbon-deprecation-warnings: $user-deprecation-warnings-setting !global;
28
- }
@@ -1,28 +0,0 @@
1
- @charset "UTF-8";
2
-
3
- /// Provides a quick method for targeting `border-width` on specific sides of a box. Use a `null` value to “skip” a side.
4
- ///
5
- /// @param {Arglist} $vals
6
- /// List of arguments
7
- ///
8
- /// @example scss - Usage
9
- /// .element {
10
- /// @include border-width(1em null 20px);
11
- /// }
12
- ///
13
- /// @example css - CSS Output
14
- /// .element {
15
- /// border-bottom-width: 20px;
16
- /// border-top-width: 1em;
17
- /// }
18
- ///
19
- /// @require {mixin} directional-property
20
- ///
21
- /// @output `border-width`
22
-
23
- @mixin border-width($vals...) {
24
- $user-deprecation-warnings-setting: $output-bourbon-deprecation-warnings;
25
- $output-bourbon-deprecation-warnings: false !global;
26
- @include directional-property(border, width, $vals...);
27
- $output-bourbon-deprecation-warnings: $user-deprecation-warnings-setting !global;
28
- }
@@ -1,69 +0,0 @@
1
- @charset "UTF-8";
2
-
3
- /// Generates variables for all buttons. Please note that you must use interpolation on the variable: `#{$all-buttons}`.
4
- ///
5
- /// @example scss - Usage
6
- /// #{$all-buttons} {
7
- /// background-color: #f00;
8
- /// }
9
- ///
10
- /// #{$all-buttons-focus},
11
- /// #{$all-buttons-hover} {
12
- /// background-color: #0f0;
13
- /// }
14
- ///
15
- /// #{$all-buttons-active} {
16
- /// background-color: #00f;
17
- /// }
18
- ///
19
- /// @example css - CSS Output
20
- /// button,
21
- /// input[type="button"],
22
- /// input[type="reset"],
23
- /// input[type="submit"] {
24
- /// background-color: #f00;
25
- /// }
26
- ///
27
- /// button:focus,
28
- /// input[type="button"]:focus,
29
- /// input[type="reset"]:focus,
30
- /// input[type="submit"]:focus,
31
- /// button:hover,
32
- /// input[type="button"]:hover,
33
- /// input[type="reset"]:hover,
34
- /// input[type="submit"]:hover {
35
- /// background-color: #0f0;
36
- /// }
37
- ///
38
- /// button:active,
39
- /// input[type="button"]:active,
40
- /// input[type="reset"]:active,
41
- /// input[type="submit"]:active {
42
- /// background-color: #00f;
43
- /// }
44
- ///
45
- /// @require assign-inputs
46
- ///
47
- /// @type List
48
- ///
49
- /// @todo Remove double assigned variables (Lines 59–62) in v5.0.0
50
-
51
- $buttons-list: 'button',
52
- 'input[type="button"]',
53
- 'input[type="reset"]',
54
- 'input[type="submit"]';
55
-
56
- $user-output-deprecation-warnings-setting: $output-bourbon-deprecation-warnings;
57
- $output-bourbon-deprecation-warnings: false;
58
-
59
- $all-buttons: assign-inputs($buttons-list);
60
- $all-buttons-active: assign-inputs($buttons-list, active);
61
- $all-buttons-focus: assign-inputs($buttons-list, focus);
62
- $all-buttons-hover: assign-inputs($buttons-list, hover);
63
-
64
- $output-bourbon-deprecation-warnings: $user-output-deprecation-warnings-setting;
65
-
66
- $all-button-inputs: $all-buttons;
67
- $all-button-inputs-active: $all-buttons-active;
68
- $all-button-inputs-focus: $all-buttons-focus;
69
- $all-button-inputs-hover: $all-buttons-hover;
@@ -1,25 +0,0 @@
1
- @charset "UTF-8";
2
-
3
- /// Provides an easy way to include a clearfix for containing floats.
4
- ///
5
- /// @link http://cssmojo.com/latest_new_clearfix_so_far/
6
- ///
7
- /// @example scss - Usage
8
- /// .element {
9
- /// @include clearfix;
10
- /// }
11
- ///
12
- /// @example css - CSS Output
13
- /// .element::after {
14
- /// clear: both;
15
- /// content: "";
16
- /// display: table;
17
- /// }
18
-
19
- @mixin clearfix {
20
- &::after {
21
- clear: both;
22
- content: "";
23
- display: table;
24
- }
25
- }
@@ -1,30 +0,0 @@
1
- @charset "UTF-8";
2
-
3
- /// Truncates text and adds an ellipsis to represent overflow.
4
- ///
5
- /// @param {Number} $width [100%]
6
- /// Max-width for the string to respect before being truncated
7
- ///
8
- /// @example scss - Usage
9
- /// .element {
10
- /// @include ellipsis;
11
- /// }
12
- ///
13
- /// @example css - CSS Output
14
- /// .element {
15
- /// display: inline-block;
16
- /// max-width: 100%;
17
- /// overflow: hidden;
18
- /// text-overflow: ellipsis;
19
- /// white-space: nowrap;
20
- /// word-wrap: normal;
21
- /// }
22
-
23
- @mixin ellipsis($width: 100%) {
24
- display: inline-block;
25
- max-width: $width;
26
- overflow: hidden;
27
- text-overflow: ellipsis;
28
- white-space: nowrap;
29
- word-wrap: normal;
30
- }
@@ -1,31 +0,0 @@
1
- @charset "UTF-8";
2
-
3
- /// Georgia font stack.
4
- ///
5
- /// @type List
6
-
7
- $georgia: "Georgia", "Cambria", "Times New Roman", "Times", serif;
8
-
9
- /// Helvetica font stack.
10
- ///
11
- /// @type List
12
-
13
- $helvetica: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
14
-
15
- /// Lucida Grande font stack.
16
- ///
17
- /// @type List
18
-
19
- $lucida-grande: "Lucida Grande", "Tahoma", "Verdana", "Arial", sans-serif;
20
-
21
- /// Monospace font stack.
22
- ///
23
- /// @type List
24
-
25
- $monospace: "Bitstream Vera Sans Mono", "Consolas", "Courier", monospace;
26
-
27
- /// Verdana font stack.
28
- ///
29
- /// @type List
30
-
31
- $verdana: "Verdana", "Geneva", sans-serif;
@@ -1,27 +0,0 @@
1
- /// Hides the text in an element, commonly used to show an image. Some elements will need block-level styles applied.
2
- ///
3
- /// @link http://zeldman.com/2012/03/01/replacing-the-9999px-hack-new-image-replacement
4
- ///
5
- /// @example scss - Usage
6
- /// .element {
7
- /// @include hide-text;
8
- /// }
9
- ///
10
- /// @example css - CSS Output
11
- /// .element {
12
- /// overflow: hidden;
13
- /// text-indent: 101%;
14
- /// white-space: nowrap;
15
- /// }
16
- ///
17
- /// @todo Remove height argument in v5.0.0
18
-
19
- @mixin hide-text($height: null) {
20
- overflow: hidden;
21
- text-indent: 101%;
22
- white-space: nowrap;
23
-
24
- @if $height {
25
- @warn "The `hide-text` mixin has changed and no longer requires a height. The height argument will no longer be accepted in v5.0.0";
26
- }
27
- }
@@ -1,29 +0,0 @@
1
- @charset "UTF-8";
2
-
3
- /// Provides a quick method for targeting `margin` on specific sides of a box. Use a `null` value to “skip” a side.
4
- ///
5
- /// @param {Arglist} $vals
6
- /// List of arguments
7
- ///
8
- /// @example scss - Usage
9
- /// .element {
10
- /// @include margin(null 10px 3em 20vh);
11
- /// }
12
- ///
13
- /// @example css - CSS Output
14
- /// .element {
15
- /// margin-bottom: 3em;
16
- /// margin-left: 20vh;
17
- /// margin-right: 10px;
18
- /// }
19
- ///
20
- /// @require {mixin} directional-property
21
- ///
22
- /// @output `margin`
23
-
24
- @mixin margin($vals...) {
25
- $user-deprecation-warnings-setting: $output-bourbon-deprecation-warnings;
26
- $output-bourbon-deprecation-warnings: false !global;
27
- @include directional-property(margin, false, $vals...);
28
- $output-bourbon-deprecation-warnings: $user-deprecation-warnings-setting !global;
29
- }
@@ -1,29 +0,0 @@
1
- @charset "UTF-8";
2
-
3
- /// Provides a quick method for targeting `padding` on specific sides of a box. Use a `null` value to “skip” a side.
4
- ///
5
- /// @param {Arglist} $vals
6
- /// List of arguments
7
- ///
8
- /// @example scss - Usage
9
- /// .element {
10
- /// @include padding(12vh null 10px 5%);
11
- /// }
12
- ///
13
- /// @example css - CSS Output
14
- /// .element {
15
- /// padding-bottom: 10px;
16
- /// padding-left: 5%;
17
- /// padding-top: 12vh;
18
- /// }
19
- ///
20
- /// @require {mixin} directional-property
21
- ///
22
- /// @output `padding`
23
-
24
- @mixin padding($vals...) {
25
- $user-deprecation-warnings-setting: $output-bourbon-deprecation-warnings;
26
- $output-bourbon-deprecation-warnings: false !global;
27
- @include directional-property(padding, false, $vals...);
28
- $output-bourbon-deprecation-warnings: $user-deprecation-warnings-setting !global;
29
- }
@@ -1,51 +0,0 @@
1
- @charset "UTF-8";
2
-
3
- /// Provides a quick method for setting an element’s position. Use a `null` value to “skip” a side.
4
- ///
5
- /// @param {Position} $position [relative]
6
- /// A CSS position value
7
- ///
8
- /// @param {Arglist} $coordinates [null null null null]
9
- /// List of values that correspond to the 4-value syntax for the edges of a box
10
- ///
11
- /// @example scss - Usage
12
- /// .element {
13
- /// @include position(absolute, 0 null null 10em);
14
- /// }
15
- ///
16
- /// @example css - CSS Output
17
- /// .element {
18
- /// left: 10em;
19
- /// position: absolute;
20
- /// top: 0;
21
- /// }
22
- ///
23
- /// @require {function} is-length
24
- /// @require {function} unpack
25
-
26
- @mixin position($position: relative, $coordinates: null null null null) {
27
- @if type-of($position) == list {
28
- $coordinates: $position;
29
- $position: relative;
30
- }
31
-
32
- $user-deprecation-warnings-setting: $output-bourbon-deprecation-warnings;
33
- $output-bourbon-deprecation-warnings: false !global;
34
- $coordinates: unpack($coordinates);
35
-
36
- $offsets: (
37
- top: nth($coordinates, 1),
38
- right: nth($coordinates, 2),
39
- bottom: nth($coordinates, 3),
40
- left: nth($coordinates, 4)
41
- );
42
-
43
- position: $position;
44
-
45
- @each $offset, $value in $offsets {
46
- @if is-length($value) {
47
- #{$offset}: $value;
48
- }
49
- }
50
- $output-bourbon-deprecation-warnings: $user-deprecation-warnings-setting !global;
51
- }