archetype 0.0.1.pre.13 → 1.0.0.alpha.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +97 -24
- data/README.md +11 -5
- data/VERSION +1 -0
- data/lib/archetype.rb +30 -18
- data/lib/archetype/actions/migrate.rb +152 -0
- data/lib/archetype/actions/theme.rb +6 -7
- data/lib/archetype/executor.rb +21 -7
- data/lib/archetype/extensions.rb +57 -0
- data/lib/archetype/functions.rb +2 -3
- data/lib/archetype/functions/css.rb +70 -0
- data/lib/archetype/functions/css/constants.rb +247 -0
- data/lib/archetype/functions/css/helpers.rb +265 -0
- data/lib/archetype/functions/css/routers.rb +28 -0
- data/lib/archetype/functions/css/routers/animation.rb +55 -0
- data/lib/archetype/functions/css/routers/background.rb +38 -0
- data/lib/archetype/functions/css/routers/border.rb +151 -0
- data/lib/archetype/functions/css/routers/list.rb +63 -0
- data/lib/archetype/functions/css/routers/margin_padding.rb +40 -0
- data/lib/archetype/functions/css/routers/outline.rb +56 -0
- data/lib/archetype/functions/css/routers/overflow.rb +11 -0
- data/lib/archetype/functions/css/routers/target.rb +38 -0
- data/lib/archetype/functions/css/routers/transition.rb +48 -0
- data/lib/archetype/functions/css/shorthands.rb +43 -0
- data/lib/archetype/functions/css/shorthands/animation.rb +18 -0
- data/lib/archetype/functions/css/shorthands/background.rb +68 -0
- data/lib/archetype/functions/css/shorthands/border.rb +102 -0
- data/lib/archetype/functions/hash.rb +3 -149
- data/lib/archetype/functions/hash/extend.rb +74 -0
- data/lib/archetype/functions/hash/shim.rb +48 -0
- data/lib/archetype/functions/helpers.rb +231 -22
- data/lib/archetype/functions/styleguide_memoizer.rb +18 -1
- data/lib/archetype/sass_extensions.rb +1 -3
- data/lib/archetype/sass_extensions/functions.rb +15 -1
- data/lib/archetype/sass_extensions/functions/environment.rb +152 -1
- data/lib/archetype/sass_extensions/functions/lists.rb +95 -45
- data/lib/archetype/sass_extensions/functions/locale.rb +107 -28
- data/lib/archetype/sass_extensions/functions/numbers.rb +118 -4
- data/lib/archetype/sass_extensions/functions/strings.rb +53 -0
- data/lib/archetype/sass_extensions/functions/styleguide.rb +43 -375
- data/lib/archetype/sass_extensions/functions/styleguide/components.rb +25 -0
- data/lib/archetype/sass_extensions/functions/styleguide/constants.rb +27 -0
- data/lib/archetype/sass_extensions/functions/styleguide/grammar.rb +80 -0
- data/lib/archetype/sass_extensions/functions/styleguide/helpers.rb +36 -0
- data/lib/archetype/sass_extensions/functions/styleguide/resolve.rb +159 -0
- data/lib/archetype/sass_extensions/functions/styleguide/styles.rb +146 -0
- data/lib/archetype/sass_extensions/functions/styleguide/themes.rb +40 -0
- data/lib/archetype/sass_extensions/functions/ui.rb +7 -57
- data/lib/archetype/sass_extensions/functions/ui/glyphs.rb +118 -0
- data/lib/archetype/sass_extensions/functions/ui/scopes.rb +96 -0
- data/lib/archetype/sass_extensions/functions/util.rb +14 -0
- data/lib/archetype/sass_extensions/functions/util/debug.rb +22 -0
- data/lib/archetype/sass_extensions/functions/util/hacks.rb +44 -0
- data/lib/archetype/sass_extensions/functions/util/images.rb +132 -0
- data/lib/archetype/sass_extensions/functions/util/misc.rb +220 -0
- data/lib/archetype/sass_extensions/functions/util/spacing.rb +83 -0
- data/lib/archetype/sass_extensions/functions/version.rb +12 -17
- data/lib/archetype/version.rb +1 -1
- data/stylesheets/archetype/_config.scss +1 -389
- data/stylesheets/archetype/_core.scss +15 -0
- data/stylesheets/archetype/_hacks.scss +4 -120
- data/stylesheets/archetype/_init.scss +4 -22
- data/stylesheets/archetype/_required.scss +3 -0
- data/stylesheets/archetype/_reset.scss +3 -0
- data/stylesheets/archetype/_styleguide.scss +2 -6
- data/stylesheets/archetype/_ui.scss +2 -358
- data/stylesheets/archetype/_util.scss +3 -10
- data/stylesheets/archetype/config/_core.scss +14 -0
- data/stylesheets/archetype/config/_environment.scss +19 -0
- data/stylesheets/archetype/config/_formatting.scss +63 -0
- data/stylesheets/archetype/config/_glyphs.scss +252 -0
- data/stylesheets/archetype/config/_resets.scss +7 -0
- data/stylesheets/archetype/config/_resolution.scss +3 -0
- data/stylesheets/archetype/config/_spacing.scss +5 -0
- data/stylesheets/archetype/config/_targeting.scss +18 -0
- data/stylesheets/archetype/config/_theme.scss +3 -0
- data/stylesheets/archetype/config/_typography.scss +56 -0
- data/stylesheets/archetype/config/_units.scss +2 -0
- data/stylesheets/archetype/config/_vars.scss +10 -0
- data/stylesheets/archetype/hacks/_core.scss +4 -0
- data/stylesheets/archetype/hacks/_hacks.scss +160 -0
- data/stylesheets/archetype/hacks/_init.scss +2 -0
- data/stylesheets/archetype/styleguide/_core.scss +4 -0
- data/stylesheets/archetype/styleguide/_init.scss +1 -0
- data/stylesheets/archetype/styleguide/_styleguide.scss +41 -18
- data/stylesheets/archetype/ui/_accessibility.scss +41 -0
- data/stylesheets/archetype/ui/_breakpoints.scss +19 -0
- data/stylesheets/archetype/ui/_core.scss +10 -0
- data/stylesheets/archetype/ui/_elements.scss +98 -0
- data/stylesheets/archetype/ui/_glyphs.scss +244 -0
- data/stylesheets/archetype/ui/_init.scss +5 -0
- data/stylesheets/archetype/ui/_layout.scss +37 -0
- data/stylesheets/archetype/ui/_locale.scss +12 -0
- data/stylesheets/archetype/ui/_scopes.scss +42 -0
- data/stylesheets/archetype/util/_core.scss +8 -0
- data/stylesheets/archetype/util/_debug.scss +9 -21
- data/stylesheets/archetype/util/_init.scss +1 -0
- data/stylesheets/archetype/util/_misc.scss +21 -86
- data/stylesheets/archetype/util/_spacing.scss +9 -40
- data/stylesheets/archetype/util/_styles.scss +189 -178
- data/stylesheets/archetype/util/_targeting.scss +51 -68
- data/templates/example/manifest.rb +2 -2
- data/templates/example/screen.scss +0 -1
- data/templates/project/manifest.rb +3 -8
- metadata +93 -263
- data/bin/archetype +0 -3
- data/lib/archetype/sass_extensions/monkey_patches.rb +0 -3
- data/lib/archetype/sass_extensions/monkey_patches/handle_include_loop.rb +0 -13
- data/stylesheets/archetype/_base.scss +0 -54
- data/stylesheets/archetype/_grid.scss +0 -3
- data/stylesheets/archetype/base/_h5bp.scss +0 -307
- data/stylesheets/archetype/base/_hybrid.scss +0 -25
- data/stylesheets/archetype/base/_normalize.scss +0 -634
- data/stylesheets/archetype/base/_reset.scss +0 -72
- data/stylesheets/archetype/grid/_config.scss +0 -14
- data/stylesheets/archetype/grid/_grid.scss +0 -391
- data/stylesheets/archetype/styleguide/_components.scss +0 -25
- data/stylesheets/archetype/styleguide/_helpers.scss +0 -215
- data/stylesheets/archetype/styleguide/_primitives.scss +0 -10
- data/stylesheets/archetype/styleguide/components/_alerts.scss +0 -59
- data/stylesheets/archetype/styleguide/components/_annotations.scss +0 -27
- data/stylesheets/archetype/styleguide/components/_bristol.scss +0 -15
- data/stylesheets/archetype/styleguide/components/_button_groups.scss +0 -47
- data/stylesheets/archetype/styleguide/components/_button_toolbars.scss +0 -17
- data/stylesheets/archetype/styleguide/components/_buttons.scss +0 -339
- data/stylesheets/archetype/styleguide/components/_canvas.scss +0 -15
- data/stylesheets/archetype/styleguide/components/_carets.scss +0 -336
- data/stylesheets/archetype/styleguide/components/_closes.scss +0 -63
- data/stylesheets/archetype/styleguide/components/_container.scss +0 -27
- data/stylesheets/archetype/styleguide/components/_copy.scss +0 -85
- data/stylesheets/archetype/styleguide/components/_flyouts.scss +0 -52
- data/stylesheets/archetype/styleguide/components/_headings.scss +0 -33
- data/stylesheets/archetype/styleguide/components/_headlines.scss +0 -64
- data/stylesheets/archetype/styleguide/components/_hovercards.scss +0 -27
- data/stylesheets/archetype/styleguide/components/_icons.scss +0 -17
- data/stylesheets/archetype/styleguide/components/_identities.scss +0 -34
- data/stylesheets/archetype/styleguide/components/_links.scss +0 -68
- data/stylesheets/archetype/styleguide/components/_loaders.scss +0 -154
- data/stylesheets/archetype/styleguide/components/_menu_items.scss +0 -31
- data/stylesheets/archetype/styleguide/components/_module.scss +0 -15
- data/stylesheets/archetype/styleguide/components/_pullquotes.scss +0 -29
- data/stylesheets/archetype/styleguide/components/_punchcut.scss +0 -18
- data/stylesheets/archetype/styleguide/components/_tooltips.scss +0 -28
- data/stylesheets/archetype/styleguide/primitives/_animations.scss +0 -17
- data/stylesheets/archetype/styleguide/primitives/_dimensions.scss +0 -50
- data/stylesheets/archetype/styleguide/primitives/_glyphs.scss +0 -11
- data/stylesheets/archetype/styleguide/primitives/_misc.scss +0 -8
- data/stylesheets/archetype/styleguide/primitives/_palettes.scss +0 -94
- data/stylesheets/archetype/styleguide/primitives/_shadows.scss +0 -23
- data/stylesheets/archetype/styleguide/primitives/_sprites.scss +0 -46
- data/stylesheets/archetype/styleguide/primitives/_textures.scss +0 -10
- data/stylesheets/archetype/styleguide/primitives/_typography.scss +0 -56
- data/stylesheets/archetype/util/_lists.scss +0 -57
- data/stylesheets/archetype/util/_rtl.scss +0 -279
- data/stylesheets/archetype/util/_units.scss +0 -18
- data/templates/project/screen.scss +0 -1
- data/templates/project/vendor/archetype/animations/loaders/large/large.png +0 -0
- data/templates/project/vendor/archetype/animations/loaders/large/large_dark.png +0 -0
- data/templates/project/vendor/archetype/animations/loaders/large/large_dark_static.png +0 -0
- data/templates/project/vendor/archetype/animations/loaders/large/large_static.png +0 -0
- data/templates/project/vendor/archetype/animations/loaders/medium/medium.png +0 -0
- data/templates/project/vendor/archetype/animations/loaders/medium/medium_dark.png +0 -0
- data/templates/project/vendor/archetype/animations/loaders/medium/medium_dark_static.png +0 -0
- data/templates/project/vendor/archetype/animations/loaders/medium/medium_static.png +0 -0
- data/templates/project/vendor/archetype/animations/loaders/small/small.png +0 -0
- data/templates/project/vendor/archetype/animations/loaders/small/small_dark.png +0 -0
- data/templates/project/vendor/archetype/animations/loaders/small/small_dark_static.png +0 -0
- data/templates/project/vendor/archetype/animations/loaders/small/small_static.png +0 -0
- data/templates/project/vendor/archetype/fontawesome-webfont.eot +0 -0
- data/templates/project/vendor/archetype/fontawesome-webfont.svg +0 -255
- data/templates/project/vendor/archetype/fontawesome-webfont.ttf +0 -0
- data/templates/project/vendor/archetype/fontawesome-webfont.woff +0 -0
- data/test/fixtures/stylesheets/archetype/assets/fonts/fontawesome-webfont.eot +0 -0
- data/test/fixtures/stylesheets/archetype/assets/fonts/fontawesome-webfont.svg +0 -255
- data/test/fixtures/stylesheets/archetype/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/test/fixtures/stylesheets/archetype/assets/fonts/fontawesome-webfont.woff +0 -0
- data/test/fixtures/stylesheets/archetype/assets/images/vendor/archetype/animations/loaders-s7889ccc8c1.png +0 -0
- data/test/fixtures/stylesheets/archetype/assets/images/vendor/archetype/animations/loaders/large/large.png +0 -0
- data/test/fixtures/stylesheets/archetype/assets/images/vendor/archetype/animations/loaders/large/large_dark.png +0 -0
- data/test/fixtures/stylesheets/archetype/assets/images/vendor/archetype/animations/loaders/large/large_dark_static.png +0 -0
- data/test/fixtures/stylesheets/archetype/assets/images/vendor/archetype/animations/loaders/large/large_static.png +0 -0
- data/test/fixtures/stylesheets/archetype/assets/images/vendor/archetype/animations/loaders/medium/medium.png +0 -0
- data/test/fixtures/stylesheets/archetype/assets/images/vendor/archetype/animations/loaders/medium/medium_dark.png +0 -0
- data/test/fixtures/stylesheets/archetype/assets/images/vendor/archetype/animations/loaders/medium/medium_dark_static.png +0 -0
- data/test/fixtures/stylesheets/archetype/assets/images/vendor/archetype/animations/loaders/medium/medium_static.png +0 -0
- data/test/fixtures/stylesheets/archetype/assets/images/vendor/archetype/animations/loaders/small/small.png +0 -0
- data/test/fixtures/stylesheets/archetype/assets/images/vendor/archetype/animations/loaders/small/small_dark.png +0 -0
- data/test/fixtures/stylesheets/archetype/assets/images/vendor/archetype/animations/loaders/small/small_dark_static.png +0 -0
- data/test/fixtures/stylesheets/archetype/assets/images/vendor/archetype/animations/loaders/small/small_static.png +0 -0
- data/test/fixtures/stylesheets/archetype/assets/images/vendor/archetype/sprites/hovercard_tip.png +0 -0
- data/test/fixtures/stylesheets/archetype/config.rb +0 -21
- data/test/fixtures/stylesheets/archetype/source/b.scss +0 -9
- data/test/fixtures/stylesheets/archetype/source/base.scss +0 -3
- data/test/fixtures/stylesheets/archetype/source/hacks/ie_pseudo.scss +0 -13
- data/test/fixtures/stylesheets/archetype/source/hacks/transparent_focusable.scss +0 -5
- data/test/fixtures/stylesheets/archetype/source/locale.scss +0 -43
- data/test/fixtures/stylesheets/archetype/source/styleguide/alerts.scss +0 -21
- data/test/fixtures/stylesheets/archetype/source/styleguide/buttons.scss +0 -18
- data/test/fixtures/stylesheets/archetype/source/styleguide/drop.scss +0 -101
- data/test/fixtures/stylesheets/archetype/source/styleguide/extend.scss +0 -24
- data/test/fixtures/stylesheets/archetype/source/styleguide/fallback_styles.scss +0 -23
- data/test/fixtures/stylesheets/archetype/source/styleguide/invalid_structures.scss +0 -85
- data/test/fixtures/stylesheets/archetype/source/styleguide/multi_value.scss +0 -18
- data/test/fixtures/stylesheets/archetype/source/styleguide/nested_styleguides.scss +0 -40
- data/test/fixtures/stylesheets/archetype/source/styleguide/selective_state.scss +0 -22
- data/test/fixtures/stylesheets/archetype/source/ui/glyph_icon.scss +0 -35
- data/test/fixtures/stylesheets/archetype/source/ui/hide_element.scss +0 -5
- data/test/fixtures/stylesheets/archetype/source/ui/stroke.scss +0 -13
- data/test/fixtures/stylesheets/archetype/source/ui/triangle.scss +0 -13
- data/test/fixtures/stylesheets/archetype/source/utilities/associative.scss +0 -24
- data/test/fixtures/stylesheets/archetype/source/utilities/custom_output_styler.scss +0 -22
- data/test/fixtures/stylesheets/archetype/source/utilities/if-set.scss +0 -16
- data/test/fixtures/stylesheets/archetype/source/utilities/spacing/horizontal-spacing.scss +0 -27
- data/test/fixtures/stylesheets/archetype/source/utilities/spacing/vertical-spacing.scss +0 -27
- data/test/fixtures/stylesheets/archetype/source/utilities/styles/filter.scss +0 -9
- data/test/fixtures/stylesheets/archetype/source/utilities/styles/font-family.scss +0 -9
- data/test/fixtures/stylesheets/archetype/source/utilities/styles/z-index.scss +0 -18
- data/test/fixtures/stylesheets/archetype/source/utilities/targeting/target-browser.scss +0 -77
- data/test/fixtures/stylesheets/archetype/source/utilities/targeting/target-os.scss +0 -42
- data/test/fixtures/stylesheets/archetype/tmp/b.css +0 -14
- data/test/fixtures/stylesheets/archetype/tmp/base.css +0 -349
- data/test/fixtures/stylesheets/archetype/tmp/hacks/ie_pseudo.css +0 -11
- data/test/fixtures/stylesheets/archetype/tmp/hacks/transparent_focusable.css +0 -4
- data/test/fixtures/stylesheets/archetype/tmp/locale.css +0 -23
- data/test/fixtures/stylesheets/archetype/tmp/styleguide/alerts.css +0 -711
- data/test/fixtures/stylesheets/archetype/tmp/styleguide/buttons.css +0 -2119
- data/test/fixtures/stylesheets/archetype/tmp/styleguide/drop.css +0 -63
- data/test/fixtures/stylesheets/archetype/tmp/styleguide/extend.css +0 -11
- data/test/fixtures/stylesheets/archetype/tmp/styleguide/fallback_styles.css +0 -10
- data/test/fixtures/stylesheets/archetype/tmp/styleguide/invalid_structures.css +0 -21
- data/test/fixtures/stylesheets/archetype/tmp/styleguide/multi_value.css +0 -13
- data/test/fixtures/stylesheets/archetype/tmp/styleguide/nested_styleguides.css +0 -28
- data/test/fixtures/stylesheets/archetype/tmp/styleguide/selective_state.css +0 -177
- data/test/fixtures/stylesheets/archetype/tmp/ui/glyph_icon.css +0 -127
- data/test/fixtures/stylesheets/archetype/tmp/ui/hide_element.css +0 -8
- data/test/fixtures/stylesheets/archetype/tmp/ui/stroke.css +0 -17
- data/test/fixtures/stylesheets/archetype/tmp/ui/triangle.css +0 -35
- data/test/fixtures/stylesheets/archetype/tmp/utilities/associative.css +0 -9
- data/test/fixtures/stylesheets/archetype/tmp/utilities/custom_output_styler.css +0 -8
- data/test/fixtures/stylesheets/archetype/tmp/utilities/if-set.css +0 -9
- data/test/fixtures/stylesheets/archetype/tmp/utilities/spacing/horizontal-spacing.css +0 -29
- data/test/fixtures/stylesheets/archetype/tmp/utilities/spacing/vertical-spacing.css +0 -29
- data/test/fixtures/stylesheets/archetype/tmp/utilities/styles/filter.css +0 -11
- data/test/fixtures/stylesheets/archetype/tmp/utilities/styles/font-family.css +0 -16
- data/test/fixtures/stylesheets/archetype/tmp/utilities/styles/z-index.css +0 -15
- data/test/fixtures/stylesheets/archetype/tmp/utilities/targeting/target-browser.css +0 -105
- data/test/fixtures/stylesheets/archetype/tmp/utilities/targeting/target-os.css +0 -55
- data/test/helpers/diff.rb +0 -49
- data/test/helpers/io.rb +0 -36
- data/test/helpers/test_case.rb +0 -62
- data/test/integrations/archetype_test.rb +0 -126
- data/test/test_helper.rb +0 -26
- data/test/units/sass_extensions_test.rb +0 -200
@@ -1,24 +0,0 @@
|
|
1
|
-
@import "archetype";
|
2
|
-
|
3
|
-
.some-extend-class {
|
4
|
-
color: red;
|
5
|
-
}
|
6
|
-
|
7
|
-
%some-extend-placeholder {
|
8
|
-
background: green;
|
9
|
-
}
|
10
|
-
|
11
|
-
@if not styleguide-component-exists(extend-styleguide-test, $CONFIG_THEME) {
|
12
|
-
$a-blackhole: styleguide-add-component(extend-styleguide-test, (), (
|
13
|
-
(default, (
|
14
|
-
extend '.some-extend-class',
|
15
|
-
extend '%some-extend-placeholder',
|
16
|
-
content $CONTENT_PLACEHOLDER
|
17
|
-
)),
|
18
|
-
nil
|
19
|
-
), $CONFIG_THEME);
|
20
|
-
}
|
21
|
-
|
22
|
-
.extend-styleguide-test {
|
23
|
-
@include styleguide(extend-styleguide-test);
|
24
|
-
}
|
@@ -1,23 +0,0 @@
|
|
1
|
-
// this case verifies that you can define `fallback` css properties
|
2
|
-
|
3
|
-
@import "archetype";
|
4
|
-
|
5
|
-
@if not styleguide-component-exists(fallback-styleguide-test, $CONFIG_THEME) {
|
6
|
-
$a-blackhole: styleguide-add-component(fallback-styleguide-test, (), (
|
7
|
-
(default, (
|
8
|
-
background (transparent url(/some/img.png) repeat),
|
9
|
-
background rbga(255, 0, 0, 0.9),
|
10
|
-
white-space pre-wrap,
|
11
|
-
white-space -moz-pre-wrap,
|
12
|
-
white-space -pre-wrap,
|
13
|
-
white-space -o-pre-wrap,
|
14
|
-
something invalid,
|
15
|
-
something valid,
|
16
|
-
content $CONTENT_PLACEHOLDER
|
17
|
-
)),
|
18
|
-
nil
|
19
|
-
), $CONFIG_THEME);
|
20
|
-
}
|
21
|
-
.fallback-styleguide-test {
|
22
|
-
@include styleguide(fallback-styleguide-test);
|
23
|
-
}
|
@@ -1,85 +0,0 @@
|
|
1
|
-
@import "archetype";
|
2
|
-
|
3
|
-
// this should throw a warning because we can't retrieve the key-value pairs for the top level
|
4
|
-
@if not styleguide-component-exists(test-missing-nil, $CONFIG_THEME) {
|
5
|
-
$a-blackhole: styleguide-add-component(test-missing-nil, (), (
|
6
|
-
(default, (
|
7
|
-
color red,
|
8
|
-
nil
|
9
|
-
))
|
10
|
-
// missing nil
|
11
|
-
), $CONFIG_THEME);
|
12
|
-
}
|
13
|
-
|
14
|
-
// this should still throw a warning because we can't retrieve the key-value pairs for the properties
|
15
|
-
@if not styleguide-component-exists(test-missing-nil-2, $CONFIG_THEME) {
|
16
|
-
$a-blackhole: styleguide-add-component(test-missing-nil-2, (), (
|
17
|
-
(default, (
|
18
|
-
color yellow
|
19
|
-
// missing nil
|
20
|
-
)),
|
21
|
-
nil
|
22
|
-
), $CONFIG_THEME);
|
23
|
-
}
|
24
|
-
|
25
|
-
// this should still throw a warning because we can't retrieve the key-value pairs for the properties
|
26
|
-
@if not styleguide-component-exists(test-missing-comma, $CONFIG_THEME) {
|
27
|
-
$a-blackhole: styleguide-add-component(test-missing-nil-3, (), (
|
28
|
-
(default, (
|
29
|
-
color blue,
|
30
|
-
(states, (
|
31
|
-
(hover, (
|
32
|
-
color black,
|
33
|
-
background green,
|
34
|
-
font-weight bold
|
35
|
-
))
|
36
|
-
))
|
37
|
-
)),
|
38
|
-
nil
|
39
|
-
), $CONFIG_THEME);
|
40
|
-
}
|
41
|
-
|
42
|
-
// this should throw a warning because we probably forgot a comma somewhere
|
43
|
-
@if not styleguide-component-exists(test-missing-comma, $CONFIG_THEME) {
|
44
|
-
$a-blackhole: styleguide-add-component(test-missing-comma, (), (
|
45
|
-
(default, (
|
46
|
-
color white,
|
47
|
-
background green // missing comma
|
48
|
-
(states, (
|
49
|
-
(hover, (
|
50
|
-
color black,
|
51
|
-
background green,
|
52
|
-
font-weight bold
|
53
|
-
)),
|
54
|
-
nil
|
55
|
-
))
|
56
|
-
)),
|
57
|
-
nil
|
58
|
-
), $CONFIG_THEME);
|
59
|
-
}
|
60
|
-
|
61
|
-
// this should throw a warning because we used an empty value for a property
|
62
|
-
@if not styleguide-component-exists(test-empty-value, $CONFIG_THEME) {
|
63
|
-
$a-blackhole: styleguide-add-component(test-empty-value, (), (
|
64
|
-
(default, (
|
65
|
-
color // this is ambiguous, but shouldn't cause an error
|
66
|
-
)),
|
67
|
-
nil
|
68
|
-
), $CONFIG_THEME);
|
69
|
-
}
|
70
|
-
|
71
|
-
.test-missing-nil {
|
72
|
-
@include styleguide(test-missing-nil);
|
73
|
-
}
|
74
|
-
.test-missing-nil-2 {
|
75
|
-
@include styleguide(test-missing-nil-2);
|
76
|
-
}
|
77
|
-
.test-missing-nil-3 {
|
78
|
-
@include styleguide(test-missing-nil-3);
|
79
|
-
}
|
80
|
-
.test-missing-comma {
|
81
|
-
@include styleguide(test-missing-comma);
|
82
|
-
}
|
83
|
-
.test-empty-value {
|
84
|
-
@include styleguide(test-empty-value);
|
85
|
-
}
|
@@ -1,18 +0,0 @@
|
|
1
|
-
@import "archetype";
|
2
|
-
|
3
|
-
@if not styleguide-component-exists(multi-value-styleguide-test, $CONFIG_THEME) {
|
4
|
-
$a-blackhole: styleguide-add-component(multi-value-styleguide-test, (), (
|
5
|
-
(default, (
|
6
|
-
color gray,
|
7
|
-
color rgba(0,0,0, 0.7),
|
8
|
-
background white,
|
9
|
-
background transparent,
|
10
|
-
target-browser (ie lte 7, color, blue),
|
11
|
-
target-browser (ie 8, color, red),
|
12
|
-
target-browser (firefox, color, pink)
|
13
|
-
))
|
14
|
-
), $CONFIG_THEME);
|
15
|
-
}
|
16
|
-
.multi-value-styleguide-test {
|
17
|
-
@include styleguide(multi-value-styleguide-test);
|
18
|
-
}
|
@@ -1,40 +0,0 @@
|
|
1
|
-
// this case will test a couple of things, including
|
2
|
-
// - nested `styleguide` calls
|
3
|
-
// - nested selectors
|
4
|
-
// - nested `styleguide` calls in nested selectors
|
5
|
-
|
6
|
-
@import "archetype";
|
7
|
-
|
8
|
-
@if not styleguide-component-exists(nested-styleguide-test, $CONFIG_THEME) {
|
9
|
-
$a-blackhole: styleguide-add-component(nested-styleguide-test, (), (
|
10
|
-
(default, (
|
11
|
-
display block,
|
12
|
-
color red,
|
13
|
-
styleguide (muted link without an underline),
|
14
|
-
background green,
|
15
|
-
(states, (
|
16
|
-
(hover, (
|
17
|
-
styleguide module,
|
18
|
-
nil
|
19
|
-
)),
|
20
|
-
nil
|
21
|
-
)),
|
22
|
-
(selectors, (
|
23
|
-
('h3', (
|
24
|
-
styleguide (large headline),
|
25
|
-
styleguide (link without an underline),
|
26
|
-
nil
|
27
|
-
)),
|
28
|
-
('&:after', (
|
29
|
-
color red,
|
30
|
-
nil
|
31
|
-
))
|
32
|
-
)),
|
33
|
-
nil
|
34
|
-
)),
|
35
|
-
nil
|
36
|
-
), $CONFIG_THEME);
|
37
|
-
}
|
38
|
-
.nested-styleguide-test {
|
39
|
-
@include styleguide(nested-styleguide-test);
|
40
|
-
}
|
@@ -1,22 +0,0 @@
|
|
1
|
-
@import "archetype";
|
2
|
-
|
3
|
-
.simple-button {
|
4
|
-
&.disabled {
|
5
|
-
@include styleguide(small primary button, $state: disabled);
|
6
|
-
}
|
7
|
-
&.my-custom-hover {
|
8
|
-
@include styleguide(small primary button, $state: hover);
|
9
|
-
}
|
10
|
-
&.normal {
|
11
|
-
@include styleguide(small primary button, $state: false);
|
12
|
-
}
|
13
|
-
}
|
14
|
-
|
15
|
-
.anchor {
|
16
|
-
&.missing {
|
17
|
-
@include styleguide(link, $state: missing);
|
18
|
-
}
|
19
|
-
&.my-custom-hover {
|
20
|
-
@include styleguide(link, $state: hover);
|
21
|
-
}
|
22
|
-
}
|
@@ -1,35 +0,0 @@
|
|
1
|
-
@import "archetype";
|
2
|
-
|
3
|
-
@include base-glyph();
|
4
|
-
|
5
|
-
.simple {
|
6
|
-
@include glyph-icon(caret-down);
|
7
|
-
}
|
8
|
-
|
9
|
-
.false {
|
10
|
-
@include glyph-icon(false, $placement: inline);
|
11
|
-
}
|
12
|
-
|
13
|
-
.size {
|
14
|
-
@include glyph-icon(caret-down, $size: 20px);
|
15
|
-
}
|
16
|
-
|
17
|
-
$CONFIG_GENERATED_TAG_INLINE: false;
|
18
|
-
.not-inline {
|
19
|
-
@include glyph-icon(caret-down);
|
20
|
-
}
|
21
|
-
|
22
|
-
.ie-uid {
|
23
|
-
@include glyph-icon(caret-down, $ie-uid: my-custom-id);
|
24
|
-
#{$archetype-glyph-selector} {
|
25
|
-
color: pink;
|
26
|
-
}
|
27
|
-
}
|
28
|
-
|
29
|
-
.content-block {
|
30
|
-
@include glyph-icon(caret-down) {
|
31
|
-
position: absolute;
|
32
|
-
top: 10px;
|
33
|
-
left: 10px;
|
34
|
-
}
|
35
|
-
}
|
@@ -1,24 +0,0 @@
|
|
1
|
-
@import "archetype";
|
2
|
-
|
3
|
-
$test: (
|
4
|
-
(one, (
|
5
|
-
'1',
|
6
|
-
'2',
|
7
|
-
'3'
|
8
|
-
)),
|
9
|
-
(two, (
|
10
|
-
'4',
|
11
|
-
'5',
|
12
|
-
'6'
|
13
|
-
))
|
14
|
-
);
|
15
|
-
|
16
|
-
.test {
|
17
|
-
a: nth(associative($test, one), 1); // 1
|
18
|
-
b: nth(associative($test, one), 2); // 2
|
19
|
-
c: nth(associative($test, two), 2); // 5
|
20
|
-
d: nth(associative($test, two), 3); // 6
|
21
|
-
e: nth(associative($test, 'two'), 2); // 5
|
22
|
-
f: nth(associative($test, 'two'), 3); // 6
|
23
|
-
g: nth(associative($test, three), 1); // 1
|
24
|
-
}
|
@@ -1,22 +0,0 @@
|
|
1
|
-
@import "archetype";
|
2
|
-
|
3
|
-
// define the test function
|
4
|
-
@function has-custom-output-styler($property, $value, $method: pre) {
|
5
|
-
@if $property == color {
|
6
|
-
@return true;
|
7
|
-
}
|
8
|
-
// only if it's a post processing all values
|
9
|
-
@else if $property == line-height and $method == post {
|
10
|
-
@return true;
|
11
|
-
}
|
12
|
-
@return false;
|
13
|
-
}
|
14
|
-
|
15
|
-
// define the custom styler
|
16
|
-
@mixin custom-output-styler($property, $value, $method: pre) {
|
17
|
-
#{$property}: $value; /* #{$method} override */
|
18
|
-
}
|
19
|
-
|
20
|
-
.test {
|
21
|
-
@include styleguide(copy);
|
22
|
-
}
|
@@ -1,16 +0,0 @@
|
|
1
|
-
@import "archetype";
|
2
|
-
|
3
|
-
a {
|
4
|
-
@include if-set(margin, 5px);
|
5
|
-
@include if-set(border, 1px solid #ccc);
|
6
|
-
}
|
7
|
-
|
8
|
-
b {
|
9
|
-
@include if-set(margin, 5px, $ignore: (10px 20px));
|
10
|
-
@include if-set(border, 1px solid #ccc, $ignore: (1px solid #ddd, 1px solid #eee));
|
11
|
-
}
|
12
|
-
|
13
|
-
c {
|
14
|
-
@include if-set(margin, 5px, $ignore: (5px 10px 20px));
|
15
|
-
@include if-set(border, 1px solid #ccc, $ignore: (1px solid #ccc, 1px solid #ddd, 1px solid #eee));
|
16
|
-
}
|
@@ -1,27 +0,0 @@
|
|
1
|
-
@import "archetype";
|
2
|
-
|
3
|
-
a {
|
4
|
-
@include horizontal-spacing(4);
|
5
|
-
@include horizontal-spacing(4, $method: margin);
|
6
|
-
}
|
7
|
-
|
8
|
-
b {
|
9
|
-
@include horizontal-spacing(nil 4);
|
10
|
-
@include horizontal-spacing(nil 4, $method: margin);
|
11
|
-
}
|
12
|
-
|
13
|
-
c {
|
14
|
-
@include horizontal-spacing(4 nil);
|
15
|
-
@include horizontal-spacing(4 nil, $method: margin);
|
16
|
-
}
|
17
|
-
|
18
|
-
d {
|
19
|
-
@include horizontal-spacing(nil 2.6);
|
20
|
-
@include horizontal-spacing(nil 2.6, $abuse: true);
|
21
|
-
@include horizontal-spacing(nil 2.6, $abuse: true, $method: margin);
|
22
|
-
}
|
23
|
-
|
24
|
-
e {
|
25
|
-
@include horizontal-spacing($left: 0, $right: 0);
|
26
|
-
@include horizontal-spacing($left: 0, $right: 0, $method: margin);
|
27
|
-
}
|
@@ -1,27 +0,0 @@
|
|
1
|
-
@import "archetype";
|
2
|
-
|
3
|
-
a {
|
4
|
-
@include vertical-spacing(2);
|
5
|
-
@include vertical-spacing(2, $method: margin);
|
6
|
-
}
|
7
|
-
|
8
|
-
b {
|
9
|
-
@include vertical-spacing(nil 2);
|
10
|
-
@include vertical-spacing(nil 2, $method: margin);
|
11
|
-
}
|
12
|
-
|
13
|
-
c {
|
14
|
-
@include vertical-spacing(2 nil);
|
15
|
-
@include vertical-spacing(2 nil, $method: margin);
|
16
|
-
}
|
17
|
-
|
18
|
-
d {
|
19
|
-
@include vertical-spacing(nil 2.6);
|
20
|
-
@include vertical-spacing(nil 2.6, $abuse: true);
|
21
|
-
@include vertical-spacing(nil 2.6, $abuse: true, $method: margin);
|
22
|
-
}
|
23
|
-
|
24
|
-
e {
|
25
|
-
@include vertical-spacing($top: 0, $bottom: 0);
|
26
|
-
@include vertical-spacing($top: 0, $bottom: 0, $method: margin);
|
27
|
-
}
|