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,17 +0,0 @@
|
|
1
|
-
.stroke {
|
2
|
-
-webkit-box-shadow: 0 1px 0 black, 0 -1px 0 black, 1px 0 0 black, -1px 0 0 black;
|
3
|
-
-moz-box-shadow: 0 1px 0 black, 0 -1px 0 black, 1px 0 0 black, -1px 0 0 black;
|
4
|
-
box-shadow: 0 1px 0 black, 0 -1px 0 black, 1px 0 0 black, -1px 0 0 black;
|
5
|
-
}
|
6
|
-
|
7
|
-
.stroke-fat {
|
8
|
-
-webkit-box-shadow: 0 10px 0 black, 0 -10px 0 black, 10px 0 0 black, -10px 0 0 black;
|
9
|
-
-moz-box-shadow: 0 10px 0 black, 0 -10px 0 black, 10px 0 0 black, -10px 0 0 black;
|
10
|
-
box-shadow: 0 10px 0 black, 0 -10px 0 black, 10px 0 0 black, -10px 0 0 black;
|
11
|
-
}
|
12
|
-
|
13
|
-
.stroke-colorful {
|
14
|
-
-webkit-box-shadow: 0 10px 0 red, 0 -10px 0 red, 10px 0 0 red, -10px 0 0 red;
|
15
|
-
-moz-box-shadow: 0 10px 0 red, 0 -10px 0 red, 10px 0 0 red, -10px 0 0 red;
|
16
|
-
box-shadow: 0 10px 0 red, 0 -10px 0 red, 10px 0 0 red, -10px 0 0 red;
|
17
|
-
}
|
@@ -1,35 +0,0 @@
|
|
1
|
-
.a {
|
2
|
-
height: 0;
|
3
|
-
width: 0;
|
4
|
-
_font-size: 0;
|
5
|
-
_line-height: 0;
|
6
|
-
border-style: dashed;
|
7
|
-
border-color: transparent;
|
8
|
-
border-width: 1em 0.5em 0;
|
9
|
-
border-top-color: #aaaaaa;
|
10
|
-
border-top-style: solid;
|
11
|
-
}
|
12
|
-
|
13
|
-
.b {
|
14
|
-
height: 0;
|
15
|
-
width: 0;
|
16
|
-
_font-size: 0;
|
17
|
-
_line-height: 0;
|
18
|
-
border-style: dashed;
|
19
|
-
border-color: transparent;
|
20
|
-
border-width: 0 5px 5px;
|
21
|
-
border-bottom-color: black;
|
22
|
-
border-bottom-style: solid;
|
23
|
-
}
|
24
|
-
|
25
|
-
.c {
|
26
|
-
height: 0;
|
27
|
-
width: 0;
|
28
|
-
_font-size: 0;
|
29
|
-
_line-height: 0;
|
30
|
-
border-style: dashed;
|
31
|
-
border-color: transparent;
|
32
|
-
border-width: 0 10px 5px 0;
|
33
|
-
border-bottom-color: black;
|
34
|
-
border-bottom-style: solid;
|
35
|
-
}
|
@@ -1,29 +0,0 @@
|
|
1
|
-
a {
|
2
|
-
padding-left: 20px;
|
3
|
-
padding-right: 20px;
|
4
|
-
margin-left: 20px;
|
5
|
-
margin-right: 20px;
|
6
|
-
}
|
7
|
-
|
8
|
-
b {
|
9
|
-
padding-right: 20px;
|
10
|
-
margin-right: 20px;
|
11
|
-
}
|
12
|
-
|
13
|
-
c {
|
14
|
-
padding-left: 20px;
|
15
|
-
margin-left: 20px;
|
16
|
-
}
|
17
|
-
|
18
|
-
d {
|
19
|
-
padding-right: 15px;
|
20
|
-
padding-right: 13px;
|
21
|
-
margin-right: 13px;
|
22
|
-
}
|
23
|
-
|
24
|
-
e {
|
25
|
-
padding-left: 0px;
|
26
|
-
padding-right: 0px;
|
27
|
-
margin-left: 0px;
|
28
|
-
margin-right: 0px;
|
29
|
-
}
|
@@ -1,29 +0,0 @@
|
|
1
|
-
a {
|
2
|
-
padding-top: 10px;
|
3
|
-
padding-bottom: 10px;
|
4
|
-
margin-top: 10px;
|
5
|
-
margin-bottom: 10px;
|
6
|
-
}
|
7
|
-
|
8
|
-
b {
|
9
|
-
padding-bottom: 10px;
|
10
|
-
margin-bottom: 10px;
|
11
|
-
}
|
12
|
-
|
13
|
-
c {
|
14
|
-
padding-top: 10px;
|
15
|
-
margin-top: 10px;
|
16
|
-
}
|
17
|
-
|
18
|
-
d {
|
19
|
-
padding-bottom: 15px;
|
20
|
-
padding-bottom: 13px;
|
21
|
-
margin-bottom: 13px;
|
22
|
-
}
|
23
|
-
|
24
|
-
e {
|
25
|
-
padding-top: 0px;
|
26
|
-
padding-bottom: 0px;
|
27
|
-
margin-top: 0px;
|
28
|
-
margin-bottom: 0px;
|
29
|
-
}
|
@@ -1,11 +0,0 @@
|
|
1
|
-
a {
|
2
|
-
-webkit-filter: Shadow(Strength=2, Direction=135, Color="#CCCCCC");
|
3
|
-
-moz-filter: Shadow(Strength=2, Direction=135, Color="#CCCCCC");
|
4
|
-
filter: Shadow(Strength=2, Direction=135, Color="#CCCCCC");
|
5
|
-
}
|
6
|
-
|
7
|
-
b {
|
8
|
-
-webkit-filter: gradient(enabled=false);
|
9
|
-
-moz-filter: gradient(enabled=false);
|
10
|
-
filter: gradient(enabled=false);
|
11
|
-
}
|
@@ -1,16 +0,0 @@
|
|
1
|
-
a {
|
2
|
-
font-family: Georgia, serif;
|
3
|
-
}
|
4
|
-
|
5
|
-
b {
|
6
|
-
font-family: sans-serif;
|
7
|
-
}
|
8
|
-
.os-win b {
|
9
|
-
font-family: Arial, sans-serif;
|
10
|
-
}
|
11
|
-
.os-mac b {
|
12
|
-
font-family: Helvetica, Arial, sans-serif;
|
13
|
-
}
|
14
|
-
.os-linux b {
|
15
|
-
font-family: Helvetica, FreeSans, "Liberation Sans", Helmet, Arial, sans-serif;
|
16
|
-
}
|
@@ -1,105 +0,0 @@
|
|
1
|
-
.target-ie-6 {
|
2
|
-
_vertical-align: -5px;
|
3
|
-
_background-position: 6px -2170px;
|
4
|
-
_overflow: hidden;
|
5
|
-
}
|
6
|
-
|
7
|
-
.target-ie-lte-7 {
|
8
|
-
*margin-top: 1px;
|
9
|
-
*padding: 0;
|
10
|
-
*width: 195px;
|
11
|
-
*font-size: 0.01em;
|
12
|
-
*height: 18px;
|
13
|
-
}
|
14
|
-
|
15
|
-
.ie.ie6 .target-ie-6-7, .ie.ie7 .target-ie-6-7 {
|
16
|
-
display: inline;
|
17
|
-
}
|
18
|
-
.ie.ie6 .target-ie-6-7, .ie.ie7 .target-ie-6-7 {
|
19
|
-
zoom: 1;
|
20
|
-
}
|
21
|
-
.ie.ie6 .target-ie-6-7, .ie.ie7 .target-ie-6-7 {
|
22
|
-
margin-left: 0;
|
23
|
-
}
|
24
|
-
|
25
|
-
.ie.ie7 .target-ie-7 {
|
26
|
-
vertical-align: -5px;
|
27
|
-
}
|
28
|
-
.ie.ie7 .target-ie-7 {
|
29
|
-
background-position: 6px -2170px;
|
30
|
-
}
|
31
|
-
.ie.ie7 .target-ie-7 {
|
32
|
-
overflow: hidden;
|
33
|
-
}
|
34
|
-
|
35
|
-
.ie.ie7 .target-ie-7-8, .ie.ie8 .target-ie-7-8 {
|
36
|
-
min-height: 250px !important;
|
37
|
-
height: auto !important;
|
38
|
-
height: 250px !important;
|
39
|
-
}
|
40
|
-
|
41
|
-
.ie.lte8 .target-ie-lte-8 {
|
42
|
-
filter: BasicImage(rotation=3);
|
43
|
-
}
|
44
|
-
.ie.lte8 .target-ie-lte-8 {
|
45
|
-
padding-bottom: 8px;
|
46
|
-
}
|
47
|
-
.ie.lte8 .target-ie-lte-8 {
|
48
|
-
line-height: 1.6;
|
49
|
-
}
|
50
|
-
|
51
|
-
.ie.ie8 .target-ie-8 {
|
52
|
-
margin-top: 2px;
|
53
|
-
}
|
54
|
-
.ie.ie8 .target-ie-8 {
|
55
|
-
min-height: 170px;
|
56
|
-
height: auto !important;
|
57
|
-
height: 170px;
|
58
|
-
}
|
59
|
-
|
60
|
-
.ie.lte9 .target-ie-lte-9 {
|
61
|
-
border-color: #111111;
|
62
|
-
}
|
63
|
-
.ie.lte9 .target-ie-lte-9 {
|
64
|
-
background: #2c2c2b;
|
65
|
-
}
|
66
|
-
|
67
|
-
.ie.ie7 .target-ie-7-8-9, .ie.ie8 .target-ie-7-8-9, .ie.ie9 .target-ie-7-8-9 {
|
68
|
-
width: 250px;
|
69
|
-
}
|
70
|
-
|
71
|
-
.ie.ie9 .target-ie-9 {
|
72
|
-
right: -83px;
|
73
|
-
}
|
74
|
-
.ie.ie9 .target-ie-9 {
|
75
|
-
top: 17px;
|
76
|
-
}
|
77
|
-
|
78
|
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
79
|
-
.target-webkit {
|
80
|
-
line-height: 16px;
|
81
|
-
}
|
82
|
-
}
|
83
|
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
84
|
-
.target-webkit {
|
85
|
-
padding-top: 10px;
|
86
|
-
}
|
87
|
-
}
|
88
|
-
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
89
|
-
.target-webkit {
|
90
|
-
width: 151px;
|
91
|
-
}
|
92
|
-
}
|
93
|
-
|
94
|
-
.target-firefox, .target-firefox x:-moz-any-link {
|
95
|
-
margin-top: 16px;
|
96
|
-
}
|
97
|
-
|
98
|
-
.target-opera, .target-opera x:-o-prefocus {
|
99
|
-
width: 82%;
|
100
|
-
}
|
101
|
-
|
102
|
-
.ie.lte8 .target-with-content-block {
|
103
|
-
/* testing content block */
|
104
|
-
color: red;
|
105
|
-
}
|
@@ -1,55 +0,0 @@
|
|
1
|
-
.os-linux .target-linux {
|
2
|
-
top: -3px;
|
3
|
-
}
|
4
|
-
.os-linux .target-linux {
|
5
|
-
width: 300px;
|
6
|
-
}
|
7
|
-
|
8
|
-
.os-mac .target-apple {
|
9
|
-
top: -3px;
|
10
|
-
}
|
11
|
-
.os-mac .target-apple {
|
12
|
-
width: 300px;
|
13
|
-
}
|
14
|
-
|
15
|
-
.os-mac .target-mac {
|
16
|
-
top: -3px;
|
17
|
-
}
|
18
|
-
.os-mac .target-mac {
|
19
|
-
width: 300px;
|
20
|
-
}
|
21
|
-
|
22
|
-
.os-mac .target-osx {
|
23
|
-
top: -3px;
|
24
|
-
}
|
25
|
-
.os-mac .target-osx {
|
26
|
-
width: 300px;
|
27
|
-
}
|
28
|
-
|
29
|
-
.os-win .target-windows {
|
30
|
-
top: -3px;
|
31
|
-
}
|
32
|
-
.os-win .target-windows {
|
33
|
-
width: 300px;
|
34
|
-
}
|
35
|
-
|
36
|
-
.os-win .target-win {
|
37
|
-
top: -3px;
|
38
|
-
}
|
39
|
-
.os-win .target-win {
|
40
|
-
width: 300px;
|
41
|
-
}
|
42
|
-
|
43
|
-
.os-win .target-winxp {
|
44
|
-
top: -3px;
|
45
|
-
}
|
46
|
-
.os-win .target-winxp {
|
47
|
-
width: 300px;
|
48
|
-
}
|
49
|
-
|
50
|
-
.os-win .target-win7 {
|
51
|
-
top: -3px;
|
52
|
-
}
|
53
|
-
.os-win .target-win7 {
|
54
|
-
width: 300px;
|
55
|
-
}
|
data/test/helpers/diff.rb
DELETED
@@ -1,49 +0,0 @@
|
|
1
|
-
require 'diff/lcs'
|
2
|
-
require 'diff/lcs/hunk'
|
3
|
-
module Compass
|
4
|
-
module Diff
|
5
|
-
#stole this from rspec who stole this from the gem
|
6
|
-
def diff_as_string(data_new, data_old)
|
7
|
-
data_old = data_old.split(/\n/).map! { |e| e.chomp }
|
8
|
-
data_new = data_new.split(/\n/).map! { |e| e.chomp }
|
9
|
-
output = ""
|
10
|
-
diffs = ::Diff::LCS.diff(data_old, data_new)
|
11
|
-
return output if diffs.empty?
|
12
|
-
oldhunk = hunk = nil
|
13
|
-
file_length_difference = 0
|
14
|
-
diffs.each do |piece|
|
15
|
-
begin
|
16
|
-
hunk = ::Diff::LCS::Hunk.new(
|
17
|
-
data_old, data_new, piece, context_lines, file_length_difference
|
18
|
-
)
|
19
|
-
file_length_difference = hunk.file_length_difference
|
20
|
-
next unless oldhunk
|
21
|
-
# Hunks may overlap, which is why we need to be careful when our
|
22
|
-
# diff includes lines of context. Otherwise, we might print
|
23
|
-
# redundant lines.
|
24
|
-
if (context_lines > 0) and hunk.overlaps?(oldhunk)
|
25
|
-
hunk.unshift(oldhunk)
|
26
|
-
else
|
27
|
-
output << oldhunk.diff(format)
|
28
|
-
end
|
29
|
-
ensure
|
30
|
-
oldhunk = hunk
|
31
|
-
output << "\n"
|
32
|
-
end
|
33
|
-
end
|
34
|
-
#Handle the last remaining hunk
|
35
|
-
output << oldhunk.diff(format) << "\n"
|
36
|
-
end
|
37
|
-
|
38
|
-
protected
|
39
|
-
|
40
|
-
def format
|
41
|
-
:unified
|
42
|
-
end
|
43
|
-
|
44
|
-
def context_lines
|
45
|
-
3
|
46
|
-
end
|
47
|
-
|
48
|
-
end
|
49
|
-
end
|
data/test/helpers/io.rb
DELETED
@@ -1,36 +0,0 @@
|
|
1
|
-
module Compass
|
2
|
-
module IoHelper
|
3
|
-
def capture_output
|
4
|
-
real_stdout, $stdout = $stdout, StringIO.new
|
5
|
-
yield
|
6
|
-
$stdout.string
|
7
|
-
ensure
|
8
|
-
$stdout = real_stdout
|
9
|
-
end
|
10
|
-
|
11
|
-
def capture_warning
|
12
|
-
real_stderr, $stderr = $stderr, StringIO.new
|
13
|
-
yield
|
14
|
-
$stderr.string
|
15
|
-
ensure
|
16
|
-
$stderr = real_stderr
|
17
|
-
end
|
18
|
-
|
19
|
-
def capture_pipe(io, options = {})
|
20
|
-
options[:wait] = 0.25
|
21
|
-
options[:timeout] = 1.0
|
22
|
-
output = ""
|
23
|
-
eof_at = nil
|
24
|
-
while !eof_at || (Time.now - eof_at < options[:wait])
|
25
|
-
if io.eof?
|
26
|
-
eof_at ||= Time.now
|
27
|
-
sleep 0.1
|
28
|
-
else
|
29
|
-
eof_at = nil
|
30
|
-
timeout(options[:timeout]) { output << io.readpartial(1024) }
|
31
|
-
end
|
32
|
-
end
|
33
|
-
output
|
34
|
-
end
|
35
|
-
end
|
36
|
-
end
|