compass 0.12.7 → 0.13.alpha.4
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.
- data/README.markdown +1 -1
- data/Rakefile +14 -9
- data/VERSION.yml +6 -0
- data/features/command_line.feature +8 -50
- data/features/step_definitions/command_line_steps.rb +3 -2
- data/frameworks/compass/stylesheets/compass/_css3.scss +2 -0
- data/frameworks/compass/stylesheets/compass/_support.scss +4 -4
- data/frameworks/compass/stylesheets/compass/css3/_animation.scss +121 -0
- data/frameworks/compass/stylesheets/compass/css3/_appearance.scss +10 -6
- data/frameworks/compass/stylesheets/compass/css3/_background-clip.scss +32 -36
- data/frameworks/compass/stylesheets/compass/css3/_background-origin.scss +32 -35
- data/frameworks/compass/stylesheets/compass/css3/_background-size.scss +12 -15
- data/frameworks/compass/stylesheets/compass/css3/_border-radius.scss +27 -48
- data/frameworks/compass/stylesheets/compass/css3/_box-shadow.scss +22 -35
- data/frameworks/compass/stylesheets/compass/css3/_box-sizing.scss +12 -8
- data/frameworks/compass/stylesheets/compass/css3/_box.scss +57 -82
- data/frameworks/compass/stylesheets/compass/css3/_columns.scss +104 -71
- data/frameworks/compass/stylesheets/compass/css3/_filter.scss +38 -18
- data/frameworks/compass/stylesheets/compass/css3/_flexbox.scss +294 -0
- data/frameworks/compass/stylesheets/compass/css3/_font-face.scss +4 -4
- data/frameworks/compass/stylesheets/compass/css3/_hyphenation.scss +13 -22
- data/frameworks/compass/stylesheets/compass/css3/_images.scss +45 -48
- data/frameworks/compass/stylesheets/compass/css3/_inline-block.scss +1 -1
- data/frameworks/compass/stylesheets/compass/css3/_regions.scss +12 -8
- data/frameworks/compass/stylesheets/compass/css3/_selection.scss +31 -0
- data/frameworks/compass/stylesheets/compass/css3/_shared.scss +226 -2
- data/frameworks/compass/stylesheets/compass/css3/_text-shadow.scss +21 -26
- data/frameworks/compass/stylesheets/compass/css3/_transform-legacy.scss +3 -3
- data/frameworks/compass/stylesheets/compass/css3/_transform.scss +8 -8
- data/frameworks/compass/stylesheets/compass/css3/_transition.scss +3 -3
- data/frameworks/compass/stylesheets/compass/css3/_user-interface.scss +43 -4
- data/frameworks/compass/stylesheets/compass/typography/_units.scss +152 -0
- data/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss +180 -102
- data/frameworks/compass/stylesheets/compass/typography/lists/_horizontal-list.scss +5 -3
- data/frameworks/compass/stylesheets/compass/typography/lists/_inline-list.scss +6 -3
- data/frameworks/compass/stylesheets/compass/typography/text/_ellipsis.scss +1 -1
- data/frameworks/compass/stylesheets/compass/utilities/general/_float.scss +7 -3
- data/frameworks/compass/stylesheets/compass/utilities/general/_hacks.scss +2 -2
- data/frameworks/compass/stylesheets/compass/utilities/sprites/_base.scss +32 -13
- data/frameworks/compass/stylesheets/compass/utilities/tables/_borders.scss +14 -9
- data/lib/compass/actions.rb +3 -1
- data/lib/compass/commands/update_project.rb +1 -2
- data/lib/compass/commands/watch_project.rb +11 -113
- data/lib/compass/commands.rb +1 -1
- data/lib/compass/compiler.rb +8 -1
- data/lib/compass/configuration/data.rb +1 -1
- data/lib/compass/configuration/helpers.rb +2 -0
- data/lib/compass/exec/project_options_parser.rb +8 -0
- data/lib/compass/logger.rb +2 -0
- data/lib/compass/sass_extensions/functions/cross_browser_support.rb +1 -1
- data/lib/compass/sass_extensions/functions/env.rb +18 -0
- data/lib/compass/sass_extensions/functions/gradient_support.rb +101 -29
- data/lib/compass/sass_extensions/functions/image_size.rb +2 -1
- data/lib/compass/sass_extensions/functions/math.rb +13 -1
- data/lib/compass/sass_extensions/functions/sprites.rb +82 -22
- data/lib/compass/sass_extensions/functions/urls.rb +37 -6
- data/lib/compass/sass_extensions/functions/utility.rb +10 -0
- data/lib/compass/sass_extensions/sprites/engines/chunky_png_engine.rb +11 -9
- data/lib/compass/sass_extensions/sprites/image.rb +7 -2
- data/lib/compass/sass_extensions/sprites/image_methods.rb +5 -1
- data/lib/compass/sass_extensions/sprites/images.rb +29 -0
- data/lib/compass/sass_extensions/sprites/layout/diagonal.rb +42 -0
- data/lib/compass/sass_extensions/sprites/layout/horizontal.rb +66 -0
- data/lib/compass/sass_extensions/sprites/layout/smart.rb +33 -0
- data/lib/compass/sass_extensions/sprites/layout/vertical.rb +68 -0
- data/lib/compass/sass_extensions/sprites/layout.rb +39 -0
- data/lib/compass/sass_extensions/sprites/layout_methods.rb +9 -115
- data/lib/compass/sass_extensions/sprites/sprite_map.rb +5 -1
- data/lib/compass/sass_extensions/sprites/sprite_methods.rb +8 -14
- data/lib/compass/sass_extensions/sprites.rb +2 -0
- data/lib/compass/sprite_importer/content.erb +29 -24
- data/lib/compass/sprite_importer.rb +7 -11
- data/lib/compass/version.rb +10 -13
- data/lib/compass/watcher/compiler.rb +59 -0
- data/lib/compass/watcher/project_watcher.rb +111 -0
- data/lib/compass/watcher/watch.rb +33 -0
- data/lib/compass/watcher.rb +11 -0
- data/lib/compass.rb +2 -2
- data/test/fixtures/sprites/public/images/numeric/200.png +0 -0
- data/test/fixtures/stylesheets/busted_font_urls/config.rb +32 -0
- data/test/fixtures/stylesheets/busted_font_urls/css/screen.css +7 -0
- data/test/fixtures/stylesheets/busted_font_urls/fonts/feed.ttf +0 -0
- data/test/fixtures/stylesheets/busted_font_urls/fonts/grid.ttf +0 -0
- data/test/fixtures/stylesheets/busted_font_urls/fonts/sub/dk.ttf +0 -0
- data/test/fixtures/stylesheets/busted_font_urls/sass/screen.sass +11 -0
- data/test/fixtures/stylesheets/busted_font_urls/tmp/screen.css +7 -0
- data/test/fixtures/stylesheets/busted_image_urls/tmp/screen.css +9 -0
- data/test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css +33 -0
- data/test/fixtures/stylesheets/compass/css/animation.css +33 -0
- data/test/fixtures/stylesheets/compass/css/background-clip.css +5 -0
- data/test/fixtures/stylesheets/compass/css/background-origin.css +15 -0
- data/test/fixtures/stylesheets/compass/css/background-size.css +24 -0
- data/test/fixtures/stylesheets/compass/css/columns.css +27 -63
- data/test/fixtures/stylesheets/compass/css/flexbox.css +121 -0
- data/test/fixtures/stylesheets/compass/css/fonts.css +1 -1
- data/test/fixtures/stylesheets/compass/css/gradients.css +64 -36
- data/test/fixtures/stylesheets/compass/css/grid_background.css +7 -14
- data/test/fixtures/stylesheets/compass/css/hyphenation.css +4 -2
- data/test/fixtures/stylesheets/compass/css/lists.css +5 -5
- data/test/fixtures/stylesheets/compass/css/pie.css +0 -3
- data/test/fixtures/stylesheets/compass/css/regions.css +4 -2
- data/test/fixtures/stylesheets/compass/css/selection.css +13 -0
- data/test/fixtures/stylesheets/compass/css/sprites.css +251 -250
- data/test/fixtures/stylesheets/compass/css/text_shadow.css +6 -6
- data/test/fixtures/stylesheets/compass/css/transition.css +6 -0
- data/test/fixtures/stylesheets/compass/css/units.css +30 -0
- data/test/fixtures/stylesheets/compass/css/user-interface.css +22 -1
- data/test/fixtures/stylesheets/compass/css/utilities.css +15 -0
- data/test/fixtures/stylesheets/compass/css/vertical_rhythm.css +177 -8
- data/test/fixtures/stylesheets/compass/images/flag-s5b4f509715.png +0 -0
- data/test/fixtures/stylesheets/compass/sass/animation-with-legacy-ie.scss +19 -0
- data/test/fixtures/stylesheets/compass/sass/animation.scss +13 -0
- data/test/fixtures/stylesheets/compass/sass/background-clip.scss +4 -2
- data/test/fixtures/stylesheets/compass/sass/background-origin.scss +10 -0
- data/test/fixtures/stylesheets/compass/sass/background-size.scss +12 -0
- data/test/fixtures/stylesheets/compass/sass/columns.scss +9 -9
- data/test/fixtures/stylesheets/compass/sass/flexbox.scss +44 -0
- data/test/fixtures/stylesheets/compass/sass/gradients.sass +31 -0
- data/test/fixtures/stylesheets/compass/sass/selection.scss +13 -0
- data/test/fixtures/stylesheets/compass/sass/transition.scss +1 -1
- data/test/fixtures/stylesheets/compass/sass/units.scss +45 -0
- data/test/fixtures/stylesheets/compass/sass/user-interface.scss +13 -1
- data/test/fixtures/stylesheets/compass/sass/utilities.scss +10 -0
- data/test/fixtures/stylesheets/compass/sass/vertical_rhythm.scss +208 -7
- data/test/fixtures/stylesheets/envtest/css/env.css +8 -0
- data/test/fixtures/stylesheets/envtest/sass/env.scss +16 -0
- data/test/fixtures/stylesheets/envtest/tmp/env.css +14 -0
- data/test/fixtures/stylesheets/valid/css/simple.css +4 -0
- data/test/helpers/diff.rb +1 -1
- data/test/integrations/compass_test.rb +23 -14
- data/test/integrations/sprites_test.rb +305 -63
- data/test/test_helper.rb +5 -15
- data/test/units/command_line_test.rb +0 -2
- data/test/units/compass_module_test.rb +1 -1
- data/test/units/configuration_test.rb +12 -0
- data/test/units/regressions_test.rb +8 -8
- data/test/units/sass_extensions_test.rb +2 -0
- data/test/units/sass_extenstions/gradients_test.rb +33 -0
- data/test/units/sprites/image_test.rb +5 -0
- data/test/units/sprites/images_test.rb +46 -0
- data/test/units/sprites/layout_test.rb +29 -4
- data/test/units/watcher/compiler_test.rb +39 -0
- data/test/units/watcher/project_watcher_test.rb +73 -0
- data/test/units/watcher/watch_test.rb +42 -0
- metadata +171 -236
- checksums.yaml +0 -7
- data/frameworks/blueprint/stylesheets/_blueprint.scss +0 -37
- data/frameworks/blueprint/stylesheets/blueprint/_buttons.scss +0 -101
- data/frameworks/blueprint/stylesheets/blueprint/_colors.scss +0 -36
- data/frameworks/blueprint/stylesheets/blueprint/_debug.scss +0 -28
- data/frameworks/blueprint/stylesheets/blueprint/_fancy-type.scss +0 -88
- data/frameworks/blueprint/stylesheets/blueprint/_form.scss +0 -66
- data/frameworks/blueprint/stylesheets/blueprint/_grid.scss +0 -258
- data/frameworks/blueprint/stylesheets/blueprint/_ie.scss +0 -111
- data/frameworks/blueprint/stylesheets/blueprint/_interaction.scss +0 -66
- data/frameworks/blueprint/stylesheets/blueprint/_link-icons.scss +0 -37
- data/frameworks/blueprint/stylesheets/blueprint/_liquid.scss +0 -152
- data/frameworks/blueprint/stylesheets/blueprint/_print.scss +0 -86
- data/frameworks/blueprint/stylesheets/blueprint/_reset.scss +0 -3
- data/frameworks/blueprint/stylesheets/blueprint/_rtl.scss +0 -121
- data/frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss +0 -52
- data/frameworks/blueprint/stylesheets/blueprint/_typography.scss +0 -90
- data/frameworks/blueprint/stylesheets/blueprint/_utilities.scss +0 -37
- data/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss +0 -83
- data/frameworks/blueprint/templates/basic/grid.png +0 -0
- data/frameworks/blueprint/templates/basic/ie.sass +0 -4
- data/frameworks/blueprint/templates/basic/manifest.rb +0 -30
- data/frameworks/blueprint/templates/basic/partials/_base.sass +0 -10
- data/frameworks/blueprint/templates/basic/print.sass +0 -4
- data/frameworks/blueprint/templates/basic/screen.sass +0 -12
- data/frameworks/blueprint/templates/buttons/buttons/cross.png +0 -0
- data/frameworks/blueprint/templates/buttons/buttons/key.png +0 -0
- data/frameworks/blueprint/templates/buttons/buttons/tick.png +0 -0
- data/frameworks/blueprint/templates/buttons/buttons.sass +0 -49
- data/frameworks/blueprint/templates/buttons/manifest.rb +0 -17
- data/frameworks/blueprint/templates/link_icons/link_icons/doc.png +0 -0
- data/frameworks/blueprint/templates/link_icons/link_icons/email.png +0 -0
- data/frameworks/blueprint/templates/link_icons/link_icons/external.png +0 -0
- data/frameworks/blueprint/templates/link_icons/link_icons/feed.png +0 -0
- data/frameworks/blueprint/templates/link_icons/link_icons/im.png +0 -0
- data/frameworks/blueprint/templates/link_icons/link_icons/pdf.png +0 -0
- data/frameworks/blueprint/templates/link_icons/link_icons/visited.png +0 -0
- data/frameworks/blueprint/templates/link_icons/link_icons/xls.png +0 -0
- data/frameworks/blueprint/templates/link_icons/link_icons.sass +0 -13
- data/frameworks/blueprint/templates/link_icons/manifest.rb +0 -23
- data/frameworks/blueprint/templates/project/grid.png +0 -0
- data/frameworks/blueprint/templates/project/ie.sass +0 -16
- data/frameworks/blueprint/templates/project/manifest.rb +0 -30
- data/frameworks/blueprint/templates/project/partials/_base.sass +0 -11
- data/frameworks/blueprint/templates/project/print.sass +0 -8
- data/frameworks/blueprint/templates/project/screen.sass +0 -46
- data/frameworks/blueprint/templates/semantic/grid.png +0 -0
- data/frameworks/blueprint/templates/semantic/ie.sass +0 -16
- data/frameworks/blueprint/templates/semantic/manifest.rb +0 -33
- data/frameworks/blueprint/templates/semantic/partials/_base.sass +0 -10
- data/frameworks/blueprint/templates/semantic/partials/_form.sass +0 -6
- data/frameworks/blueprint/templates/semantic/partials/_page.sass +0 -17
- data/frameworks/blueprint/templates/semantic/partials/_two_col.sass +0 -38
- data/frameworks/blueprint/templates/semantic/print.sass +0 -5
- data/frameworks/blueprint/templates/semantic/screen.sass +0 -14
- data/lib/compass/commands/generate_grid_background.rb +0 -96
- data/lib/compass/grid_builder.rb +0 -102
- data/test/fixtures/stylesheets/blueprint/config.rb +0 -14
- data/test/fixtures/stylesheets/blueprint/css/ie.css +0 -76
- data/test/fixtures/stylesheets/blueprint/css/print.css +0 -56
- data/test/fixtures/stylesheets/blueprint/css/screen.css +0 -815
- data/test/fixtures/stylesheets/blueprint/css/single-imports/buttons.css +0 -56
- data/test/fixtures/stylesheets/blueprint/css/single-imports/colors.css +0 -80
- data/test/fixtures/stylesheets/blueprint/css/single-imports/debug.css +0 -11
- data/test/fixtures/stylesheets/blueprint/css/single-imports/fancy-type.css +0 -30
- data/test/fixtures/stylesheets/blueprint/css/single-imports/form.css +0 -42
- data/test/fixtures/stylesheets/blueprint/css/single-imports/grid.css +0 -435
- data/test/fixtures/stylesheets/blueprint/css/single-imports/ie.css +0 -76
- data/test/fixtures/stylesheets/blueprint/css/single-imports/interaction.css +0 -46
- data/test/fixtures/stylesheets/blueprint/css/single-imports/link-icons.css +0 -40
- data/test/fixtures/stylesheets/blueprint/css/single-imports/liquid.css +0 -651
- data/test/fixtures/stylesheets/blueprint/css/single-imports/print.css +0 -60
- data/test/fixtures/stylesheets/blueprint/css/single-imports/reset-utilities.css +0 -75
- data/test/fixtures/stylesheets/blueprint/css/single-imports/reset.css +0 -42
- data/test/fixtures/stylesheets/blueprint/css/single-imports/rtl.css +0 -437
- data/test/fixtures/stylesheets/blueprint/css/single-imports/scaffolding.css +0 -45
- data/test/fixtures/stylesheets/blueprint/css/single-imports/typography.css +0 -146
- data/test/fixtures/stylesheets/blueprint/css/single-imports/utilities.css +0 -35
- data/test/fixtures/stylesheets/blueprint/images/grid.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/doc.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/email.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/external.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/feed.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/im.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/pdf.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/visited.png +0 -0
- data/test/fixtures/stylesheets/blueprint/images/link_icons/xls.png +0 -0
- data/test/fixtures/stylesheets/blueprint/sass/ie.sass +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/print.sass +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/screen.sass +0 -18
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/buttons.scss +0 -4
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/colors.scss +0 -34
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/debug.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/fancy-type.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/form.scss +0 -5
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/grid.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/ie.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/interaction.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/link-icons.scss +0 -13
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/liquid.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/print.scss +0 -5
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/reset-utilities.scss +0 -5
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/reset.scss +0 -1
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/rtl.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/scaffolding.scss +0 -5
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/typography.scss +0 -3
- data/test/fixtures/stylesheets/blueprint/sass/single-imports/utilities.scss +0 -3
- data/test/fixtures/stylesheets/compass/images/flag-s4798b5a210.png +0 -0
- data/test/units/compass_png_test.rb +0 -46
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
.showgrid { font-family: url('http://assets3.example.com/fonts/grid-BUSTED.ttf'); }
|
|
2
|
+
|
|
3
|
+
.no-buster { font-family: url('http://assets3.example.com/fonts/grid.ttf'); }
|
|
4
|
+
|
|
5
|
+
.feed { font-family: url('http://assets3.example.com/fonts/feed.ttf?query_string'); }
|
|
6
|
+
|
|
7
|
+
.dk { font-family: url('http://assets1.example.com/fonts/sub/dk.ttf?query_string'); }
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
.showgrid
|
|
2
|
+
font-family: font-url("grid.ttf", $only-path: false, $cache-buster: true)
|
|
3
|
+
|
|
4
|
+
.no-buster
|
|
5
|
+
font-family: font-url("grid.ttf")
|
|
6
|
+
|
|
7
|
+
.feed
|
|
8
|
+
font-family: font-url("feed.ttf", $only-path: false, $cache-buster: true)
|
|
9
|
+
|
|
10
|
+
.dk
|
|
11
|
+
font-family: font-url("sub/dk.ttf", $only-path: false, $cache-buster: true)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
.showgrid { font-family: url('http://assets3.example.com/fonts/grid-BUSTED.ttf'); }
|
|
2
|
+
|
|
3
|
+
.no-buster { font-family: url('http://assets3.example.com/fonts/grid.ttf'); }
|
|
4
|
+
|
|
5
|
+
.feed { font-family: url('http://assets3.example.com/fonts/feed.ttf?query_string'); }
|
|
6
|
+
|
|
7
|
+
.dk { font-family: url('http://assets1.example.com/fonts/sub/dk.ttf?query_string'); }
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
.showgrid { background-image: url('http://assets0.example.com/images/grid-BUSTED.png'); }
|
|
2
|
+
|
|
3
|
+
.inlinegrid { background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAUEAYAAACv1qP4AAAABmJLR0T///////8JWPfcAAAACXBIWXMAAABIAAAASABGyWs+AAAAZ0lEQVRYw+3QwQ2AIBAFUTEUwI3+uzN7gDscsIgxEuO8An52J11X73OudfxMraXkzHfO3Y98nQEhA0IGhAwIGRAyIGRAyICQASEDQgaEDAgZEDIgZEDIgJABoZzSGK3tPuN9ERFP7Nw4fg+c5g8V1wAAAABJRU5ErkJggg=='); }
|
|
4
|
+
|
|
5
|
+
.no-buster { background-image: url('http://assets0.example.com/images/grid.png'); }
|
|
6
|
+
|
|
7
|
+
.feed { background-image: url('http://assets0.example.com/images/feed.png?query_string'); }
|
|
8
|
+
|
|
9
|
+
.dk { background-image: url('http://assets0.example.com/images/flags/dk.png?query_string'); }
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
@-moz-keyframes test {
|
|
2
|
+
0%, 100% {
|
|
3
|
+
opacity: 1; }
|
|
4
|
+
|
|
5
|
+
50% {
|
|
6
|
+
opacity: 0; } }
|
|
7
|
+
|
|
8
|
+
@-webkit-keyframes test {
|
|
9
|
+
0%, 100% {
|
|
10
|
+
opacity: 1; }
|
|
11
|
+
|
|
12
|
+
50% {
|
|
13
|
+
opacity: 0; } }
|
|
14
|
+
|
|
15
|
+
@-o-keyframes test {
|
|
16
|
+
0%, 100% {
|
|
17
|
+
opacity: 1; }
|
|
18
|
+
|
|
19
|
+
50% {
|
|
20
|
+
opacity: 0; } }
|
|
21
|
+
|
|
22
|
+
@keyframes test {
|
|
23
|
+
0%, 100% {
|
|
24
|
+
opacity: 1; }
|
|
25
|
+
|
|
26
|
+
50% {
|
|
27
|
+
opacity: 0; } }
|
|
28
|
+
|
|
29
|
+
.animation {
|
|
30
|
+
-webkit-animation: test;
|
|
31
|
+
-moz-animation: test;
|
|
32
|
+
-o-animation: test;
|
|
33
|
+
animation: test; }
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
@-moz-keyframes test {
|
|
2
|
+
0%, 100% {
|
|
3
|
+
background-color: red; }
|
|
4
|
+
|
|
5
|
+
50% {
|
|
6
|
+
background-color: blue; } }
|
|
7
|
+
|
|
8
|
+
@-webkit-keyframes test {
|
|
9
|
+
0%, 100% {
|
|
10
|
+
background-color: red; }
|
|
11
|
+
|
|
12
|
+
50% {
|
|
13
|
+
background-color: blue; } }
|
|
14
|
+
|
|
15
|
+
@-o-keyframes test {
|
|
16
|
+
0%, 100% {
|
|
17
|
+
background-color: red; }
|
|
18
|
+
|
|
19
|
+
50% {
|
|
20
|
+
background-color: blue; } }
|
|
21
|
+
|
|
22
|
+
@keyframes test {
|
|
23
|
+
0%, 100% {
|
|
24
|
+
background-color: red; }
|
|
25
|
+
|
|
26
|
+
50% {
|
|
27
|
+
background-color: blue; } }
|
|
28
|
+
|
|
29
|
+
.animation {
|
|
30
|
+
-webkit-animation: test;
|
|
31
|
+
-moz-animation: test;
|
|
32
|
+
-o-animation: test;
|
|
33
|
+
animation: test; }
|
|
@@ -3,6 +3,11 @@
|
|
|
3
3
|
-moz-background-clip: border;
|
|
4
4
|
background-clip: border-box; }
|
|
5
5
|
|
|
6
|
+
.background-clip-multiple {
|
|
7
|
+
-webkit-background-clip: border, padding, content;
|
|
8
|
+
-moz-background-clip: border, padding, content;
|
|
9
|
+
background-clip: border-box, padding-box, content-box; }
|
|
10
|
+
|
|
6
11
|
.background-clip-khtml {
|
|
7
12
|
-webkit-background-clip: border;
|
|
8
13
|
-moz-background-clip: border;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
.background-origin {
|
|
2
|
+
-webkit-background-origin: border;
|
|
3
|
+
-moz-background-origin: border;
|
|
4
|
+
background-origin: border-box; }
|
|
5
|
+
|
|
6
|
+
.background-origin-multiple {
|
|
7
|
+
-webkit-background-origin: border, padding, content;
|
|
8
|
+
-moz-background-origin: border, padding, content;
|
|
9
|
+
background-origin: border-box, padding-box, content-box; }
|
|
10
|
+
|
|
11
|
+
.background-origin-khtml {
|
|
12
|
+
-webkit-background-origin: border;
|
|
13
|
+
-moz-background-origin: border;
|
|
14
|
+
-khtml-background-origin: border-box;
|
|
15
|
+
background-origin: border-box; }
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
.background-size-default {
|
|
2
|
+
-webkit-background-size: 100% auto;
|
|
3
|
+
-moz-background-size: 100% auto;
|
|
4
|
+
-o-background-size: 100% auto;
|
|
5
|
+
background-size: 100% auto; }
|
|
6
|
+
|
|
7
|
+
.background-size-single {
|
|
8
|
+
-webkit-background-size: 50% 25%;
|
|
9
|
+
-moz-background-size: 50% 25%;
|
|
10
|
+
-o-background-size: 50% 25%;
|
|
11
|
+
background-size: 50% 25%; }
|
|
12
|
+
|
|
13
|
+
.background-size-multiple {
|
|
14
|
+
-webkit-background-size: 4em 3em, 100% auto, 50%;
|
|
15
|
+
-moz-background-size: 4em 3em, 100% auto, 50%;
|
|
16
|
+
-o-background-size: 4em 3em, 100% auto, 50%;
|
|
17
|
+
background-size: 4em 3em, 100% auto, 50%; }
|
|
18
|
+
|
|
19
|
+
.background-size-khtml {
|
|
20
|
+
-webkit-background-size: 100% auto;
|
|
21
|
+
-khtml-background-size: 100% auto;
|
|
22
|
+
-moz-background-size: 100% auto;
|
|
23
|
+
-o-background-size: 100% auto;
|
|
24
|
+
background-size: 100% auto; }
|
|
@@ -1,161 +1,125 @@
|
|
|
1
1
|
.columns {
|
|
2
2
|
-webkit-columns: 20em 5;
|
|
3
3
|
-moz-columns: 20em 5;
|
|
4
|
-
-ms-columns: 20em 5;
|
|
5
|
-
-o-columns: 20em 5;
|
|
6
4
|
columns: 20em 5; }
|
|
7
5
|
|
|
8
6
|
.column-count {
|
|
9
7
|
-webkit-column-count: 5;
|
|
10
8
|
-moz-column-count: 5;
|
|
11
|
-
-ms-column-count: 5;
|
|
12
|
-
-o-column-count: 5;
|
|
13
9
|
column-count: 5; }
|
|
14
10
|
|
|
15
11
|
.column-gap {
|
|
16
12
|
-webkit-column-gap: 10px;
|
|
17
13
|
-moz-column-gap: 10px;
|
|
18
|
-
-ms-column-gap: 10px;
|
|
19
|
-
-o-column-gap: 10px;
|
|
20
14
|
column-gap: 10px; }
|
|
21
15
|
|
|
22
16
|
.column-width {
|
|
23
17
|
-webkit-column-width: 90px;
|
|
24
18
|
-moz-column-width: 90px;
|
|
25
|
-
-ms-column-width: 90px;
|
|
26
|
-
-o-column-width: 90px;
|
|
27
19
|
column-width: 90px; }
|
|
28
20
|
|
|
29
21
|
.column-span {
|
|
30
22
|
-webkit-column-span: all;
|
|
31
23
|
-moz-column-span: all;
|
|
32
|
-
-ms-column-span: all;
|
|
33
|
-
-o-column-span: all;
|
|
34
24
|
column-span: all; }
|
|
35
25
|
|
|
36
26
|
.column-rule-width {
|
|
37
|
-
-webkit-
|
|
38
|
-
-moz-
|
|
39
|
-
|
|
40
|
-
-o-column-rule-width: 1px;
|
|
41
|
-
column-rule-width: 1px; }
|
|
27
|
+
-webkit-rule-width: 1px;
|
|
28
|
+
-moz-rule-width: 1px;
|
|
29
|
+
rule-width: 1px; }
|
|
42
30
|
|
|
43
31
|
.column-rule-style {
|
|
44
|
-
-webkit-
|
|
45
|
-
-moz-
|
|
46
|
-
|
|
47
|
-
-o-column-rule-style: dotted;
|
|
48
|
-
column-rule-style: dotted; }
|
|
32
|
+
-webkit-rule-style: dotted;
|
|
33
|
+
-moz-rule-style: dotted;
|
|
34
|
+
rule-style: dotted; }
|
|
49
35
|
|
|
50
36
|
.column-rule-color {
|
|
51
|
-
-webkit-
|
|
52
|
-
-moz-
|
|
53
|
-
|
|
54
|
-
-o-column-rule-color: blue;
|
|
55
|
-
column-rule-color: blue; }
|
|
37
|
+
-webkit-rule-color: blue;
|
|
38
|
+
-moz-rule-color: blue;
|
|
39
|
+
rule-color: blue; }
|
|
56
40
|
|
|
57
41
|
.column-rule {
|
|
58
42
|
-webkit-column-rule: 1px solid blue;
|
|
59
43
|
-moz-column-rule: 1px solid blue;
|
|
60
|
-
-ms-column-rule: 1px solid blue;
|
|
61
|
-
-o-column-rule: 1px solid blue;
|
|
62
44
|
column-rule: 1px solid blue; }
|
|
63
45
|
|
|
64
46
|
.column-rule-spaced {
|
|
65
47
|
-webkit-column-rule: 1px solid blue;
|
|
66
48
|
-moz-column-rule: 1px solid blue;
|
|
67
|
-
-ms-column-rule: 1px solid blue;
|
|
68
|
-
-o-column-rule: 1px solid blue;
|
|
69
49
|
column-rule: 1px solid blue; }
|
|
70
50
|
|
|
71
51
|
.column-break-before {
|
|
72
52
|
-webkit-column-break-before: always;
|
|
73
|
-
|
|
53
|
+
break-before: always; }
|
|
74
54
|
|
|
75
55
|
.column-break-after {
|
|
76
56
|
-webkit-column-break-after: always;
|
|
77
|
-
|
|
57
|
+
break-after: always; }
|
|
78
58
|
|
|
79
59
|
.column-break-inside {
|
|
80
60
|
-webkit-column-break-inside: auto;
|
|
81
|
-
|
|
61
|
+
break-inside: auto; }
|
|
82
62
|
|
|
83
63
|
.column-count {
|
|
84
64
|
-webkit-column-count: 5;
|
|
85
65
|
-moz-column-count: 5;
|
|
86
|
-
-ms-column-count: 5;
|
|
87
|
-
-o-column-count: 5;
|
|
88
66
|
column-count: 5; }
|
|
89
67
|
|
|
90
68
|
.column-gap {
|
|
91
69
|
-webkit-column-gap: 10px;
|
|
92
70
|
-moz-column-gap: 10px;
|
|
93
|
-
-ms-column-gap: 10px;
|
|
94
|
-
-o-column-gap: 10px;
|
|
95
71
|
column-gap: 10px; }
|
|
96
72
|
|
|
97
73
|
.column-width {
|
|
98
74
|
-webkit-column-width: 90px;
|
|
99
75
|
-moz-column-width: 90px;
|
|
100
|
-
-ms-column-width: 90px;
|
|
101
|
-
-o-column-width: 90px;
|
|
102
76
|
column-width: 90px; }
|
|
103
77
|
|
|
104
78
|
.column-rule-width {
|
|
105
|
-
-webkit-
|
|
106
|
-
-moz-
|
|
107
|
-
|
|
108
|
-
-o-column-rule-width: 1px;
|
|
109
|
-
column-rule-width: 1px; }
|
|
79
|
+
-webkit-rule-width: 1px;
|
|
80
|
+
-moz-rule-width: 1px;
|
|
81
|
+
rule-width: 1px; }
|
|
110
82
|
|
|
111
83
|
.column-rule-style {
|
|
112
|
-
-webkit-
|
|
113
|
-
-moz-
|
|
114
|
-
|
|
115
|
-
-o-column-rule-style: dotted;
|
|
116
|
-
column-rule-style: dotted; }
|
|
84
|
+
-webkit-rule-style: dotted;
|
|
85
|
+
-moz-rule-style: dotted;
|
|
86
|
+
rule-style: dotted; }
|
|
117
87
|
|
|
118
88
|
.column-rule-color {
|
|
119
|
-
-webkit-
|
|
120
|
-
-moz-
|
|
121
|
-
|
|
122
|
-
-o-column-rule-color: blue;
|
|
123
|
-
column-rule-color: blue; }
|
|
89
|
+
-webkit-rule-color: blue;
|
|
90
|
+
-moz-rule-color: blue;
|
|
91
|
+
rule-color: blue; }
|
|
124
92
|
|
|
125
93
|
.column-rule {
|
|
126
94
|
-webkit-column-rule: 1px solid blue;
|
|
127
95
|
-moz-column-rule: 1px solid blue;
|
|
128
|
-
-ms-column-rule: 1px solid blue;
|
|
129
|
-
-o-column-rule: 1px solid blue;
|
|
130
96
|
column-rule: 1px solid blue; }
|
|
131
97
|
|
|
132
98
|
.column-rule-spaced {
|
|
133
99
|
-webkit-column-rule: 1px solid blue;
|
|
134
100
|
-moz-column-rule: 1px solid blue;
|
|
135
|
-
-ms-column-rule: 1px solid blue;
|
|
136
|
-
-o-column-rule: 1px solid blue;
|
|
137
101
|
column-rule: 1px solid blue; }
|
|
138
102
|
|
|
139
103
|
.column-break-before {
|
|
140
104
|
-webkit-column-break-before: always;
|
|
141
|
-
|
|
105
|
+
break-before: always; }
|
|
142
106
|
|
|
143
107
|
.column-break-after {
|
|
144
108
|
-webkit-column-break-after: always;
|
|
145
|
-
|
|
109
|
+
break-after: always; }
|
|
146
110
|
|
|
147
111
|
.column-break-inside {
|
|
148
112
|
-webkit-column-break-inside: auto;
|
|
149
|
-
|
|
113
|
+
break-inside: auto; }
|
|
150
114
|
|
|
151
115
|
.column-break-before-shortcut {
|
|
152
116
|
-webkit-column-break-before: always;
|
|
153
|
-
|
|
117
|
+
break-before: always; }
|
|
154
118
|
|
|
155
119
|
.column-break-after-shortcut {
|
|
156
120
|
-webkit-column-break-after: always;
|
|
157
|
-
|
|
121
|
+
break-after: always; }
|
|
158
122
|
|
|
159
123
|
.column-break-inside-shortcut {
|
|
160
124
|
-webkit-column-break-inside: auto;
|
|
161
|
-
|
|
125
|
+
break-inside: auto; }
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
.flex {
|
|
2
|
+
display: -webkit-flexbox;
|
|
3
|
+
display: -ms-flexbox;
|
|
4
|
+
display: -webkit-flex;
|
|
5
|
+
display: flex;
|
|
6
|
+
-webkit-flex-flow: column nowrap;
|
|
7
|
+
-ms-flex-flow: column nowrap;
|
|
8
|
+
flex-flow: column nowrap;
|
|
9
|
+
-webkit-flex-pack: justify;
|
|
10
|
+
-ms-flex-pack: justify;
|
|
11
|
+
-webkit-justify-content: space-between;
|
|
12
|
+
justify-content: space-between;
|
|
13
|
+
-webkit-flex-line-pack: center;
|
|
14
|
+
-ms-flex-line-pack: center;
|
|
15
|
+
-webkit-align-content: center;
|
|
16
|
+
align-content: center;
|
|
17
|
+
-webkit-flex-align: end;
|
|
18
|
+
-ms-flex-align: end;
|
|
19
|
+
-webkit-align-items: flex-end;
|
|
20
|
+
align-items: flex-end; }
|
|
21
|
+
|
|
22
|
+
.flex-item {
|
|
23
|
+
-webkit-flex: 1 1 auto;
|
|
24
|
+
-ms-flex: 1 1 auto;
|
|
25
|
+
flex: 1 1 auto;
|
|
26
|
+
-webkit-flex-item-align: start;
|
|
27
|
+
-ms-flex-item-align: start;
|
|
28
|
+
-webkit-align-self: flex-start;
|
|
29
|
+
align-self: flex-start;
|
|
30
|
+
-webkit-flex-order: 2;
|
|
31
|
+
-ms-flex-order: 2;
|
|
32
|
+
-webkit-order: 2;
|
|
33
|
+
order: 2; }
|
|
34
|
+
|
|
35
|
+
.flex-legacy {
|
|
36
|
+
display: -webkit-box;
|
|
37
|
+
display: -moz-box;
|
|
38
|
+
display: -webkit-flexbox;
|
|
39
|
+
display: -ms-flexbox;
|
|
40
|
+
display: -webkit-flex;
|
|
41
|
+
display: flex;
|
|
42
|
+
-webkit-box-orient: horizontal;
|
|
43
|
+
-moz-box-orient: horizontal;
|
|
44
|
+
-webkit-box-direction: normal;
|
|
45
|
+
-moz-box-direction: normal;
|
|
46
|
+
-webkit-box-lines: single;
|
|
47
|
+
-moz-box-lines: single;
|
|
48
|
+
-webkit-flex-flow: row nowrap;
|
|
49
|
+
-ms-flex-flow: row nowrap;
|
|
50
|
+
flex-flow: row nowrap;
|
|
51
|
+
-webkit-box-pack: end;
|
|
52
|
+
-moz-box-pack: end;
|
|
53
|
+
-webkit-flex-pack: end;
|
|
54
|
+
-ms-flex-pack: end;
|
|
55
|
+
-webkit-justify-content: flex-end;
|
|
56
|
+
justify-content: flex-end;
|
|
57
|
+
-webkit-box-align: start;
|
|
58
|
+
-moz-box-align: start;
|
|
59
|
+
-webkit-flex-line-pack: start;
|
|
60
|
+
-ms-flex-line-pack: start;
|
|
61
|
+
-webkit-align-content: flex-start;
|
|
62
|
+
align-content: flex-start;
|
|
63
|
+
-webkit-flex-align: baseline;
|
|
64
|
+
-ms-flex-align: baseline;
|
|
65
|
+
-webkit-align-items: baseline;
|
|
66
|
+
align-items: baseline; }
|
|
67
|
+
|
|
68
|
+
.flex-item-legacy {
|
|
69
|
+
-webkit-box-flex: 2;
|
|
70
|
+
-moz-box-flex: 2;
|
|
71
|
+
-webkit-flex: 2 1 20em;
|
|
72
|
+
-ms-flex: 2 1 20em;
|
|
73
|
+
flex: 2 1 20em;
|
|
74
|
+
-webkit-flex-item-align: stretch;
|
|
75
|
+
-ms-flex-item-align: stretch;
|
|
76
|
+
-webkit-align-self: stretch;
|
|
77
|
+
align-self: stretch;
|
|
78
|
+
-webkit-box-ordinal-group: 4;
|
|
79
|
+
-moz-box-ordinal-group: 4;
|
|
80
|
+
-webkit-flex-order: 3;
|
|
81
|
+
-ms-flex-order: 3;
|
|
82
|
+
-webkit-order: 3;
|
|
83
|
+
order: 3; }
|
|
84
|
+
|
|
85
|
+
.flex-legacy {
|
|
86
|
+
display: -webkit-flexbox;
|
|
87
|
+
display: -ms-flexbox;
|
|
88
|
+
display: -webkit-flex;
|
|
89
|
+
-webkit-flex-flow: row wrap;
|
|
90
|
+
-ms-flex-flow: row wrap;
|
|
91
|
+
flex-flow: row wrap;
|
|
92
|
+
-webkit-flex-pack: distribute;
|
|
93
|
+
-ms-flex-pack: distribute;
|
|
94
|
+
-webkit-justify-content: space-around;
|
|
95
|
+
justify-content: space-around;
|
|
96
|
+
-webkit-flex-line-pack: stretch;
|
|
97
|
+
-ms-flex-line-pack: stretch;
|
|
98
|
+
-webkit-align-content: stretch;
|
|
99
|
+
align-content: stretch;
|
|
100
|
+
-webkit-flex-align: start;
|
|
101
|
+
-ms-flex-align: start;
|
|
102
|
+
-webkit-align-items: flex-start;
|
|
103
|
+
align-items: flex-start; }
|
|
104
|
+
@supports (flex-wrap: wrap) {
|
|
105
|
+
.flex-legacy {
|
|
106
|
+
display: flex; } }
|
|
107
|
+
|
|
108
|
+
.flex-item-legacy {
|
|
109
|
+
-webkit-box-flex: 1;
|
|
110
|
+
-moz-box-flex: 1;
|
|
111
|
+
-webkit-flex: 1 2 50%;
|
|
112
|
+
-ms-flex: 1 2 50%;
|
|
113
|
+
flex: 1 2 50%;
|
|
114
|
+
-webkit-flex-item-align: start;
|
|
115
|
+
-ms-flex-item-align: start;
|
|
116
|
+
-webkit-align-self: flex-start;
|
|
117
|
+
align-self: flex-start;
|
|
118
|
+
-webkit-flex-order: 1;
|
|
119
|
+
-ms-flex-order: 1;
|
|
120
|
+
-webkit-order: 1;
|
|
121
|
+
order: 1; }
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: "font1";
|
|
3
3
|
src: url('/tmp/fonts/font1.eot');
|
|
4
|
-
src: url('/tmp/fonts/font1.eot?#iefix') format('
|
|
4
|
+
src: url('/tmp/fonts/font1.eot?#iefix') format('eot'), url('/tmp/fonts/font1.woff') format('woff'); }
|