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.
- checksums.yaml +5 -5
- data/.circleci/config.yml +42 -0
- data/.github/ISSUE_TEMPLATE.md +22 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +10 -0
- data/.gitignore +1 -1
- data/.hound.yml +4 -1
- data/.npmignore +7 -4
- data/.stylelintrc.json +3 -0
- data/CHANGELOG.md +450 -0
- data/CODE_OF_CONDUCT.md +6 -0
- data/CONTRIBUTING.md +81 -28
- data/Gemfile +1 -1
- data/LICENSE.md +1 -1
- data/README.md +153 -86
- data/RELEASING.md +32 -0
- data/Rakefile +0 -2
- data/bin/bourbon +1 -2
- data/bourbon.gemspec +31 -24
- data/core/_bourbon.scss +54 -0
- data/core/bourbon/helpers/_buttons-list.scss +14 -0
- data/core/bourbon/helpers/_scales.scss +27 -0
- data/core/bourbon/helpers/_text-inputs-list.scss +26 -0
- data/core/bourbon/library/_border-color.scss +26 -0
- data/core/bourbon/library/_border-radius.scss +85 -0
- data/core/bourbon/library/_border-style.scss +25 -0
- data/core/bourbon/library/_border-width.scss +25 -0
- data/core/bourbon/library/_buttons.scss +84 -0
- data/{app/assets/stylesheets/addons → core/bourbon/library}/_clearfix.scss +5 -5
- data/core/bourbon/library/_contrast-switch.scss +81 -0
- data/{app/assets/stylesheets/addons → core/bourbon/library}/_ellipsis.scss +12 -6
- data/core/bourbon/library/_font-face.scss +65 -0
- data/core/bourbon/library/_font-stacks.scss +248 -0
- data/core/bourbon/library/_hide-text.scss +24 -0
- data/core/bourbon/library/_hide-visually.scss +70 -0
- data/core/bourbon/library/_margin.scss +37 -0
- data/core/bourbon/library/_modular-scale.scss +120 -0
- data/core/bourbon/library/_overflow-wrap.scss +25 -0
- data/core/bourbon/library/_padding.scss +36 -0
- data/core/bourbon/library/_position.scss +62 -0
- data/core/bourbon/library/_prefixer.scss +37 -0
- data/core/bourbon/library/_shade.scss +32 -0
- data/core/bourbon/library/_size.scss +50 -0
- data/core/bourbon/library/_strip-unit.scss +17 -0
- data/core/bourbon/library/_text-inputs.scss +163 -0
- data/core/bourbon/library/_timing-functions.scss +36 -0
- data/core/bourbon/library/_tint.scss +32 -0
- data/core/bourbon/library/_triangle.scss +82 -0
- data/core/bourbon/library/_value-prefixer.scss +37 -0
- data/core/bourbon/settings/_settings.scss +75 -0
- data/core/bourbon/utilities/_assign-inputs.scss +28 -0
- data/core/bourbon/utilities/_compact-shorthand.scss +42 -0
- data/core/bourbon/utilities/_contrast-ratio.scss +31 -0
- data/core/bourbon/utilities/_directional-property.scss +68 -0
- data/core/bourbon/utilities/_fetch-bourbon-setting.scss +16 -0
- data/core/bourbon/utilities/_font-source-declaration.scss +52 -0
- data/core/bourbon/utilities/_gamma.scss +24 -0
- data/core/bourbon/utilities/_lightness.scss +24 -0
- data/{app/assets/stylesheets/functions/_unpack.scss → core/bourbon/utilities/_unpack-shorthand.scss} +8 -6
- data/{app/assets/stylesheets/functions → core/bourbon/validators}/_contains-falsy.scss +6 -6
- data/{app/assets/stylesheets/functions → core/bourbon/validators}/_contains.scss +8 -8
- data/core/bourbon/validators/_is-color.scss +13 -0
- data/core/bourbon/validators/_is-length.scss +20 -0
- data/core/bourbon/validators/_is-number.scss +15 -0
- data/core/bourbon/validators/_is-size.scss +18 -0
- data/eyeglass-exports.js +7 -0
- data/features/install.feature +0 -1
- data/features/step_definitions/bourbon_steps.rb +13 -5
- data/features/update.feature +0 -1
- data/features/version.feature +0 -2
- data/index.js +2 -2
- data/lib/bourbon/generator.rb +11 -10
- data/lib/bourbon/version.rb +1 -1
- data/lib/bourbon.rb +7 -18
- data/package-lock.json +6636 -0
- data/package.json +26 -13
- data/spec/bourbon/{addons → library}/border_color_spec.rb +8 -8
- data/spec/bourbon/{addons → library}/border_radius_spec.rb +1 -1
- data/spec/bourbon/{addons → library}/border_style_spec.rb +1 -1
- data/spec/bourbon/{addons → library}/border_width_spec.rb +1 -1
- data/spec/bourbon/{addons → library}/buttons_spec.rb +4 -4
- data/spec/bourbon/{addons → library}/clearfix_spec.rb +3 -3
- data/spec/bourbon/library/contrast_switch_spec.rb +23 -0
- data/spec/bourbon/{addons → library}/ellipsis_spec.rb +1 -1
- data/spec/bourbon/library/font_face_spec_1.rb +16 -0
- data/spec/bourbon/library/font_face_spec_2.rb +20 -0
- data/spec/bourbon/library/font_face_spec_3.rb +16 -0
- data/spec/bourbon/library/font_stacks_spec.rb +42 -0
- data/spec/bourbon/{addons → library}/hide_text_spec.rb +1 -1
- data/spec/bourbon/library/hide_visually_spec.rb +37 -0
- data/spec/bourbon/{addons → library}/margin_spec.rb +1 -1
- data/spec/bourbon/{functions → library}/modular_scale_spec.rb +6 -6
- data/spec/bourbon/library/overflow_wrap_spec.rb +27 -0
- data/spec/bourbon/{addons → library}/padding_spec.rb +1 -1
- data/spec/bourbon/{addons → library}/position_spec.rb +1 -1
- data/spec/bourbon/library/prefixer_spec.rb +34 -0
- data/spec/bourbon/{functions → library}/shade_spec.rb +1 -1
- data/spec/bourbon/{addons → library}/size_spec.rb +1 -1
- data/spec/bourbon/{functions/strip_units_spec.rb → library/strip_unit_spec.rb} +2 -2
- data/spec/bourbon/{addons → library}/text_inputs_spec.rb +25 -15
- data/spec/bourbon/{functions → library}/tint_spec.rb +1 -1
- data/spec/bourbon/library/triangle_spec.rb +31 -0
- data/spec/bourbon/{functions → utilities}/assign_inputs_spec.rb +8 -8
- data/spec/bourbon/utilities/compact_shorthand_spec.rb +30 -0
- data/spec/bourbon/utilities/contrast_ratio_spec.rb +23 -0
- data/spec/bourbon/utilities/directional_property_spec.rb +28 -0
- data/spec/bourbon/utilities/fetch_bourbon_setting_spec.rb +31 -0
- data/spec/bourbon/utilities/font_source_declaration_spec.rb +23 -0
- data/spec/bourbon/utilities/gamma_spec.rb +23 -0
- data/spec/bourbon/utilities/lightness_spec.rb +31 -0
- data/spec/bourbon/{functions → utilities}/unpack_spec.rb +1 -1
- data/spec/bourbon/{functions → validators}/contains_spec.rb +1 -1
- data/spec/bourbon/{functions → validators}/is_length_spec.rb +13 -1
- data/spec/bourbon/{functions → validators}/is_number_spec.rb +1 -1
- data/spec/bourbon/{functions → validators}/is_size_spec.rb +1 -1
- data/spec/fixtures/_setup.scss +1 -1
- data/spec/fixtures/{addons → library}/border-color.scss +4 -4
- data/spec/fixtures/library/contrast-switch.scss +9 -0
- data/spec/fixtures/library/font-face-1.scss +6 -0
- data/spec/fixtures/library/font-face-2.scss +10 -0
- data/spec/fixtures/library/font-face-3.scss +8 -0
- data/spec/fixtures/library/font-stacks.scss +41 -0
- data/spec/fixtures/library/hide-visually.scss +9 -0
- data/spec/fixtures/library/overflow-wrap.scss +9 -0
- data/spec/fixtures/{addons → library}/position.scss +0 -4
- data/spec/fixtures/library/prefixer.scss +13 -0
- data/spec/fixtures/{functions → library}/shade.scss +1 -1
- data/spec/fixtures/{addons → library}/size.scss +2 -2
- data/spec/fixtures/library/strip-unit.scss +17 -0
- data/spec/fixtures/{addons → library}/text-inputs.scss +4 -0
- data/spec/fixtures/{functions → library}/tint.scss +1 -1
- data/spec/fixtures/library/triangle.scss +9 -0
- data/spec/fixtures/utilities/assign-inputs.scss +19 -0
- data/spec/fixtures/utilities/compact-shorthand.scss +21 -0
- data/spec/fixtures/utilities/contrast-ratio.scss +9 -0
- data/spec/fixtures/utilities/directional-property.scss +17 -0
- data/spec/fixtures/utilities/fetch-bourbon-setting.scss +16 -0
- data/spec/fixtures/utilities/font-source-declaration.scss +11 -0
- data/spec/fixtures/utilities/gamma.scss +9 -0
- data/spec/fixtures/utilities/lightness.scss +13 -0
- data/spec/fixtures/utilities/unpack.scss +17 -0
- data/spec/fixtures/{functions → validators}/contains.scss +1 -1
- data/spec/fixtures/{functions → validators}/is-length.scss +9 -1
- data/spec/fixtures/{functions → validators}/is-number.scss +1 -1
- data/spec/fixtures/{functions → validators}/is-size.scss +1 -1
- data/spec/support/matchers/have_value.rb +1 -1
- data/spec/support/sass_support.rb +2 -2
- metadata +254 -281
- data/.scss-lint.yml +0 -14
- data/.travis.yml +0 -8
- data/app/assets/stylesheets/_bourbon-deprecated-upcoming.scss +0 -411
- data/app/assets/stylesheets/_bourbon.scss +0 -87
- data/app/assets/stylesheets/addons/_border-color.scss +0 -26
- data/app/assets/stylesheets/addons/_border-radius.scss +0 -48
- data/app/assets/stylesheets/addons/_border-style.scss +0 -25
- data/app/assets/stylesheets/addons/_border-width.scss +0 -25
- data/app/assets/stylesheets/addons/_buttons.scss +0 -64
- data/app/assets/stylesheets/addons/_font-stacks.scss +0 -31
- data/app/assets/stylesheets/addons/_hide-text.scss +0 -27
- data/app/assets/stylesheets/addons/_margin.scss +0 -26
- data/app/assets/stylesheets/addons/_padding.scss +0 -26
- data/app/assets/stylesheets/addons/_position.scss +0 -48
- data/app/assets/stylesheets/addons/_prefixer.scss +0 -66
- data/app/assets/stylesheets/addons/_retina-image.scss +0 -25
- data/app/assets/stylesheets/addons/_size.scss +0 -51
- data/app/assets/stylesheets/addons/_text-inputs.scss +0 -113
- data/app/assets/stylesheets/addons/_timing-functions.scss +0 -34
- data/app/assets/stylesheets/addons/_triangle.scss +0 -63
- data/app/assets/stylesheets/addons/_word-wrap.scss +0 -29
- data/app/assets/stylesheets/css3/_animation.scss +0 -43
- data/app/assets/stylesheets/css3/_appearance.scss +0 -3
- data/app/assets/stylesheets/css3/_backface-visibility.scss +0 -3
- data/app/assets/stylesheets/css3/_background-image.scss +0 -42
- data/app/assets/stylesheets/css3/_background.scss +0 -55
- data/app/assets/stylesheets/css3/_border-image.scss +0 -59
- data/app/assets/stylesheets/css3/_calc.scss +0 -4
- data/app/assets/stylesheets/css3/_columns.scss +0 -47
- data/app/assets/stylesheets/css3/_filter.scss +0 -4
- data/app/assets/stylesheets/css3/_flex-box.scss +0 -287
- data/app/assets/stylesheets/css3/_font-face.scss +0 -24
- data/app/assets/stylesheets/css3/_font-feature-settings.scss +0 -4
- data/app/assets/stylesheets/css3/_hidpi-media-query.scss +0 -10
- data/app/assets/stylesheets/css3/_hyphens.scss +0 -4
- data/app/assets/stylesheets/css3/_image-rendering.scss +0 -14
- data/app/assets/stylesheets/css3/_keyframes.scss +0 -36
- data/app/assets/stylesheets/css3/_linear-gradient.scss +0 -38
- data/app/assets/stylesheets/css3/_perspective.scss +0 -8
- data/app/assets/stylesheets/css3/_placeholder.scss +0 -8
- data/app/assets/stylesheets/css3/_radial-gradient.scss +0 -39
- data/app/assets/stylesheets/css3/_selection.scss +0 -42
- data/app/assets/stylesheets/css3/_text-decoration.scss +0 -19
- data/app/assets/stylesheets/css3/_transform.scss +0 -15
- data/app/assets/stylesheets/css3/_transition.scss +0 -71
- data/app/assets/stylesheets/css3/_user-select.scss +0 -3
- data/app/assets/stylesheets/functions/_assign-inputs.scss +0 -11
- data/app/assets/stylesheets/functions/_is-length.scss +0 -11
- data/app/assets/stylesheets/functions/_is-light.scss +0 -21
- data/app/assets/stylesheets/functions/_is-number.scss +0 -11
- data/app/assets/stylesheets/functions/_is-size.scss +0 -13
- data/app/assets/stylesheets/functions/_modular-scale.scss +0 -69
- data/app/assets/stylesheets/functions/_px-to-em.scss +0 -13
- data/app/assets/stylesheets/functions/_px-to-rem.scss +0 -15
- data/app/assets/stylesheets/functions/_shade.scss +0 -24
- data/app/assets/stylesheets/functions/_strip-units.scss +0 -17
- data/app/assets/stylesheets/functions/_tint.scss +0 -24
- data/app/assets/stylesheets/functions/_transition-property-name.scss +0 -22
- data/app/assets/stylesheets/helpers/_convert-units.scss +0 -21
- data/app/assets/stylesheets/helpers/_directional-values.scss +0 -96
- data/app/assets/stylesheets/helpers/_font-source-declaration.scss +0 -43
- data/app/assets/stylesheets/helpers/_gradient-positions-parser.scss +0 -13
- data/app/assets/stylesheets/helpers/_linear-angle-parser.scss +0 -25
- data/app/assets/stylesheets/helpers/_linear-gradient-parser.scss +0 -41
- data/app/assets/stylesheets/helpers/_linear-positions-parser.scss +0 -61
- data/app/assets/stylesheets/helpers/_linear-side-corner-parser.scss +0 -31
- data/app/assets/stylesheets/helpers/_radial-arg-parser.scss +0 -69
- data/app/assets/stylesheets/helpers/_radial-gradient-parser.scss +0 -50
- data/app/assets/stylesheets/helpers/_radial-positions-parser.scss +0 -18
- data/app/assets/stylesheets/helpers/_render-gradients.scss +0 -26
- data/app/assets/stylesheets/helpers/_shape-size-stripper.scss +0 -10
- data/app/assets/stylesheets/helpers/_str-to-num.scss +0 -50
- data/app/assets/stylesheets/settings/_asset-pipeline.scss +0 -7
- data/app/assets/stylesheets/settings/_prefixer.scss +0 -9
- data/app/assets/stylesheets/settings/_px-to-em.scss +0 -1
- data/bower.json +0 -36
- data/lib/bourbon/engine.rb +0 -5
- data/lib/tasks/install.rake +0 -20
- data/sache.json +0 -5
- data/spec/bourbon/addons/font_stacks_spec.rb +0 -25
- data/spec/bourbon/addons/retina_image_spec.rb +0 -57
- data/spec/bourbon/addons/triangle_spec.rb +0 -32
- data/spec/bourbon/addons/word_wrap_spec.rb +0 -29
- data/spec/bourbon/css3/font_face_spec.rb +0 -45
- data/spec/bourbon/css3/hidpi_media_query_spec.rb +0 -23
- data/spec/bourbon/functions/is_light_spec.rb +0 -37
- data/spec/bourbon/functions/px_to_em_spec.rb +0 -31
- data/spec/bourbon/functions/px_to_rem_spec.rb +0 -25
- data/spec/bourbon/helpers/convert_units_spec.rb +0 -31
- data/spec/bourbon/helpers/directional_values_spec.rb +0 -39
- data/spec/bourbon/helpers/font_source_declaration_spec.rb +0 -29
- data/spec/bourbon/helpers/str_to_num_spec.rb +0 -25
- data/spec/fixtures/addons/font-stacks.scss +0 -21
- data/spec/fixtures/addons/retina-image.scss +0 -21
- data/spec/fixtures/addons/triangle.scss +0 -9
- data/spec/fixtures/addons/word-wrap.scss +0 -9
- data/spec/fixtures/css3/font-face.scss +0 -6
- data/spec/fixtures/css3/hidpi-media-query.scss +0 -13
- data/spec/fixtures/functions/assign-inputs.scss +0 -19
- data/spec/fixtures/functions/is-light.scss +0 -29
- data/spec/fixtures/functions/px-to-em.scss +0 -17
- data/spec/fixtures/functions/px-to-rem.scss +0 -15
- data/spec/fixtures/functions/strip-units.scss +0 -17
- data/spec/fixtures/functions/unpack.scss +0 -17
- data/spec/fixtures/helpers/convert-units.scss +0 -17
- data/spec/fixtures/helpers/directional-values.scss +0 -29
- data/spec/fixtures/helpers/font-source-declaration.scss +0 -10
- data/spec/fixtures/helpers/str-to-num.scss +0 -13
- data/spec/support/matchers/be_contained_in.rb +0 -10
- /data/spec/fixtures/{addons → library}/border-radius.scss +0 -0
- /data/spec/fixtures/{addons → library}/border-style.scss +0 -0
- /data/spec/fixtures/{addons → library}/border-width.scss +0 -0
- /data/spec/fixtures/{addons → library}/buttons.scss +0 -0
- /data/spec/fixtures/{addons → library}/clearfix.scss +0 -0
- /data/spec/fixtures/{addons → library}/ellipsis.scss +0 -0
- /data/spec/fixtures/{addons → library}/hide-text.scss +0 -0
- /data/spec/fixtures/{addons → library}/margin.scss +0 -0
- /data/spec/fixtures/{functions → library}/modular-scale.scss +0 -0
- /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("
|
|
5
|
+
ParserSupport.parse_file("utilities/assign-inputs")
|
|
6
6
|
@text_inputs_list = [
|
|
7
|
-
"
|
|
8
|
-
"
|
|
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: #
|
|
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: #
|
|
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: #
|
|
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 "
|
|
44
|
+
list.unshift "[type=\"file\"]"
|
|
45
45
|
list.each do |input|
|
|
46
|
-
expect(input).to have_rule("color: #
|
|
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 "is-length" do
|
|
4
4
|
before(:all) do
|
|
5
|
-
ParserSupport.parse_file("
|
|
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")
|
data/spec/fixtures/_setup.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@import "
|
|
1
|
+
@import "core/bourbon";
|
|
@@ -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,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,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");
|