compass 0.8.17 → 0.10.0.pre1
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/CHANGELOG.markdown +165 -0
- data/README.markdown +15 -3
- data/Rakefile +46 -7
- data/VERSION.yml +3 -2
- data/bin/compass +22 -4
- data/examples/blueprint_default/index.html.haml +3 -3
- data/examples/blueprint_default/parts/forms.html.haml +2 -0
- data/examples/blueprint_default/src/screen.sass +1 -1
- data/examples/blueprint_plugins/index.html.haml +6 -6
- data/examples/blueprint_plugins/src/buttons.sass +2 -2
- data/examples/blueprint_plugins/src/link_icons.sass +1 -1
- data/examples/blueprint_plugins/src/rtl_screen.sass +3 -3
- data/examples/blueprint_plugins/src/screen.sass +2 -2
- data/examples/blueprint_scoped/src/ie.sass +2 -1
- data/examples/blueprint_scoped/src/print.sass +2 -1
- data/examples/blueprint_scoped/src/screen.sass +2 -1
- data/examples/blueprint_semantic/parts/fancy_type.html.haml +1 -1
- data/examples/blueprint_semantic/src/liquid.sass +5 -6
- data/examples/blueprint_semantic/src/screen.sass +4 -5
- data/examples/compass/bootstrap.rb +3 -0
- data/{frameworks → examples/compass/extensions}/yui/stylesheets/_yui.sass +0 -0
- data/examples/compass/extensions/yui/stylesheets/yui/modules/_base.sass +70 -0
- data/{frameworks → examples/compass/extensions}/yui/stylesheets/yui/modules/_fonts.sass +8 -1
- data/{frameworks → examples/compass/extensions}/yui/stylesheets/yui/modules/_grids.sass +174 -130
- data/{frameworks → examples/compass/extensions}/yui/stylesheets/yui/modules/_reset.sass +0 -0
- data/{frameworks → examples/compass/extensions}/yui/templates/project/manifest.rb +0 -0
- data/{frameworks → examples/compass/extensions}/yui/templates/project/screen.sass +0 -0
- data/examples/compass/src/utilities.sass +2 -2
- data/examples/css3/config.rb +6 -0
- data/examples/css3/extensions/fancy-fonts/templates/project/Vtks Revolt.ttf +0 -0
- data/examples/css3/extensions/fancy-fonts/templates/project/angelina.ttf +0 -0
- data/examples/css3/extensions/fancy-fonts/templates/project/fancy-fonts.sass +7 -0
- data/examples/css3/extensions/fancy-fonts/templates/project/manifest.rb +5 -0
- data/examples/css3/images/fresh-peas.jpg +0 -0
- data/examples/css3/index.html.haml +55 -0
- data/examples/css3/src/_base.sass +14 -0
- data/examples/css3/src/fancy-fonts.sass +7 -0
- data/examples/css3/src/gradient.sass +10 -0
- data/examples/css3/src/main.sass +80 -0
- data/examples/css3/stylesheets/fonts/Vtks Revolt.ttf +0 -0
- data/examples/css3/stylesheets/fonts/angelina.ttf +0 -0
- data/examples/downloader.rb +57 -0
- data/examples/ninesixty/bootstrap.rb +4 -0
- data/examples/ninesixty/config.rb +9 -0
- data/examples/ninesixty/extensions/ninesixty/README.mkdn +56 -0
- data/examples/ninesixty/extensions/ninesixty/compass-960-plugin.gemspec +36 -0
- data/examples/ninesixty/extensions/ninesixty/lib/ninesixty.rb +1 -0
- data/examples/ninesixty/extensions/ninesixty/lib/ninesixty/compass_plugin.rb +5 -0
- data/examples/ninesixty/extensions/ninesixty/sass/960/_grid.sass +64 -0
- data/examples/ninesixty/extensions/ninesixty/sass/960/_text.sass +59 -0
- data/examples/ninesixty/extensions/ninesixty/templates/project/grid.sass +34 -0
- data/examples/ninesixty/extensions/ninesixty/templates/project/manifest.rb +2 -0
- data/examples/ninesixty/extensions/ninesixty/templates/project/text.sass +10 -0
- data/examples/ninesixty/src/grid.sass +16 -0
- data/examples/ninesixty/src/text.sass +10 -0
- data/examples/susy/bootstrap.rb +3 -0
- data/examples/susy/config.rb +9 -0
- data/examples/susy/extensions/susy/LICENSE.txt +28 -0
- data/examples/susy/extensions/susy/README.mkdn +235 -0
- data/examples/susy/extensions/susy/compass-susy-plugin.gemspec +35 -0
- data/examples/susy/extensions/susy/docs/tutorial/build.sh +141 -0
- data/examples/susy/extensions/susy/docs/tutorial/code/01_target/src/_defaults.sass +100 -0
- data/examples/susy/extensions/susy/docs/tutorial/code/01_target/src/screen.sass +98 -0
- data/examples/susy/extensions/susy/docs/tutorial/code/02_container/src/_defaults.sass +147 -0
- data/examples/susy/extensions/susy/docs/tutorial/code/02_container/src/screen.sass +19 -0
- data/examples/susy/extensions/susy/docs/tutorial/code/03_structure/src/_defaults.sass +147 -0
- data/examples/susy/extensions/susy/docs/tutorial/code/03_structure/src/screen.sass +48 -0
- data/examples/susy/extensions/susy/docs/tutorial/code/_common/config.rb +14 -0
- data/examples/susy/extensions/susy/docs/tutorial/code/_common/images/grid.png +0 -0
- data/examples/susy/extensions/susy/docs/tutorial/code/_common/images/susy_logo.png +0 -0
- data/examples/susy/extensions/susy/docs/tutorial/code/_common/src/_base.sass +63 -0
- data/examples/susy/extensions/susy/docs/tutorial/code/_tools/Markdown.pl +1450 -0
- data/examples/susy/extensions/susy/docs/tutorial/code/site/src/_defaults.sass +100 -0
- data/examples/susy/extensions/susy/docs/tutorial/code/site/src/screen.sass +91 -0
- data/examples/susy/extensions/susy/docs/tutorial/figures/susy_element.png +0 -0
- data/examples/susy/extensions/susy/docs/tutorial/figures/susy_grid.png +0 -0
- data/examples/susy/extensions/susy/docs/tutorial/index.mkdn +301 -0
- data/examples/susy/extensions/susy/lib/susy.rb +2 -0
- data/examples/susy/extensions/susy/lib/susy/compass_plugin.rb +5 -0
- data/examples/susy/extensions/susy/lib/susy/sass_extensions.rb +79 -0
- data/examples/susy/extensions/susy/sass/susy/_grid.sass +128 -0
- data/examples/susy/extensions/susy/sass/susy/_reset.sass +7 -0
- data/examples/susy/extensions/susy/sass/susy/_susy.sass +23 -0
- data/examples/susy/extensions/susy/sass/susy/_text.sass +15 -0
- data/examples/susy/extensions/susy/sass/susy/_utils.sass +81 -0
- data/examples/susy/extensions/susy/templates/project/_base.sass +62 -0
- data/examples/susy/extensions/susy/templates/project/_defaults.sass +147 -0
- data/examples/susy/extensions/susy/templates/project/ie.sass +9 -0
- data/examples/susy/extensions/susy/templates/project/manifest.rb +5 -0
- data/examples/susy/extensions/susy/templates/project/print.sass +7 -0
- data/examples/susy/extensions/susy/templates/project/screen.sass +44 -0
- data/examples/susy/src/_base.sass +62 -0
- data/examples/susy/src/_defaults.sass +148 -0
- data/examples/susy/src/screen.sass +114 -0
- data/examples/yui/bootstrap.rb +3 -0
- data/examples/yui/extensions/yui/stylesheets/_yui.sass +7 -0
- data/examples/yui/extensions/yui/stylesheets/yui/modules/_base.sass +70 -0
- data/examples/yui/extensions/yui/stylesheets/yui/modules/_fonts.sass +45 -0
- data/examples/yui/extensions/yui/stylesheets/yui/modules/_grids.sass +385 -0
- data/examples/yui/extensions/yui/stylesheets/yui/modules/_reset.sass +61 -0
- data/examples/yui/extensions/yui/templates/project/manifest.rb +1 -0
- data/examples/yui/extensions/yui/templates/project/screen.sass +4 -0
- data/features/command_line.feature +226 -0
- data/features/extensions.feature +20 -0
- data/features/step_definitions/command_line_steps.rb +223 -0
- data/features/step_definitions/extension_steps.rb +13 -0
- data/lib/compass.rb +6 -7
- data/lib/compass/actions.rb +7 -1
- data/lib/compass/app_integration.rb +23 -4
- data/lib/compass/app_integration/merb.rb +1 -43
- data/lib/compass/app_integration/merb/runtime.rb +63 -0
- data/lib/compass/app_integration/rails.rb +24 -10
- data/lib/compass/app_integration/rails/configuration_defaults.rb +45 -0
- data/lib/compass/app_integration/rails/installer.rb +127 -0
- data/lib/compass/app_integration/rails/runtime.rb +14 -0
- data/lib/compass/app_integration/stand_alone.rb +22 -0
- data/lib/compass/app_integration/stand_alone/configuration_defaults.rb +28 -0
- data/lib/compass/app_integration/stand_alone/installer.rb +83 -0
- data/lib/compass/commands.rb +11 -0
- data/lib/compass/commands/base.rb +4 -1
- data/lib/compass/commands/create_project.rb +108 -5
- data/lib/compass/commands/generate_grid_background.rb +73 -6
- data/lib/compass/commands/help.rb +89 -0
- data/lib/compass/commands/installer_command.rb +20 -13
- data/lib/compass/commands/interactive.rb +61 -0
- data/lib/compass/commands/list_frameworks.rb +2 -2
- data/lib/compass/commands/print_version.rb +72 -4
- data/lib/compass/commands/project_base.rb +14 -34
- data/lib/compass/commands/project_stats.rb +162 -0
- data/lib/compass/commands/registry.rb +22 -0
- data/lib/compass/commands/stamp_pattern.rb +56 -3
- data/lib/compass/commands/update_project.rb +60 -6
- data/lib/compass/commands/validate_project.rb +62 -6
- data/lib/compass/commands/watch_project.rb +12 -5
- data/lib/compass/commands/write_configuration.rb +89 -4
- data/lib/compass/compiler.rb +13 -4
- data/lib/compass/configuration.rb +29 -310
- data/lib/compass/configuration/adapters.rb +59 -0
- data/lib/compass/configuration/comments.rb +22 -0
- data/lib/compass/configuration/data.rb +106 -0
- data/lib/compass/configuration/defaults.rb +138 -0
- data/lib/compass/configuration/helpers.rb +120 -0
- data/lib/compass/configuration/inheritance.rb +170 -0
- data/lib/compass/configuration/serialization.rb +86 -0
- data/lib/compass/dependencies.rb +4 -8
- data/lib/compass/errors.rb +4 -1
- data/lib/compass/exec.rb +11 -246
- data/lib/compass/exec/command_option_parser.rb +23 -0
- data/lib/compass/exec/global_options_parser.rb +37 -0
- data/lib/compass/exec/helpers.rb +28 -0
- data/lib/compass/exec/project_options_parser.rb +46 -0
- data/lib/compass/exec/sub_command_ui.rb +45 -0
- data/lib/compass/exec/switch_ui.rb +166 -0
- data/lib/compass/frameworks.rb +70 -7
- data/lib/compass/frameworks/blueprint/stylesheets/_blueprint.sass +31 -0
- data/{frameworks/blueprint/stylesheets/blueprint/modules → lib/compass/frameworks/blueprint/stylesheets/blueprint}/_buttons.sass +27 -27
- data/{frameworks/blueprint/stylesheets/blueprint/modules → lib/compass/frameworks/blueprint/stylesheets/blueprint}/_colors.sass +0 -0
- data/{frameworks/blueprint/stylesheets/blueprint/modules → lib/compass/frameworks/blueprint/stylesheets/blueprint}/_debug.sass +2 -2
- data/{frameworks/blueprint/stylesheets/blueprint/modules → lib/compass/frameworks/blueprint/stylesheets/blueprint}/_fancy_type.sass +19 -19
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_form.sass +56 -0
- data/{frameworks/blueprint/stylesheets/blueprint/modules → lib/compass/frameworks/blueprint/stylesheets/blueprint}/_grid.sass +34 -33
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_ie.sass +99 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_interaction.sass +58 -0
- data/{frameworks/blueprint/stylesheets/blueprint/modules → lib/compass/frameworks/blueprint/stylesheets/blueprint}/_link_icons.sass +9 -9
- data/{frameworks/blueprint/stylesheets/blueprint/modules → lib/compass/frameworks/blueprint/stylesheets/blueprint}/_liquid.sass +29 -29
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_print.sass +87 -0
- data/{frameworks/blueprint/stylesheets/blueprint/modules → lib/compass/frameworks/blueprint/stylesheets/blueprint}/_reset.sass +20 -18
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_rtl.sass +123 -0
- data/{frameworks/blueprint/stylesheets/blueprint/modules → lib/compass/frameworks/blueprint/stylesheets/blueprint}/_scaffolding.sass +6 -4
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_screen.sass +2 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_typography.sass +162 -0
- data/{frameworks/blueprint/stylesheets/blueprint/modules → lib/compass/frameworks/blueprint/stylesheets/blueprint}/_utilities.sass +15 -15
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_buttons.sass +2 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_colors.sass +2 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_debug.sass +2 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_fancy_type.sass +2 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_form.sass +2 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_grid.sass +2 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_interaction.sass +2 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_link_icons.sass +2 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_liquid.sass +3 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_reset.sass +2 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_rtl.sass +2 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_scaffolding.sass +2 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass +2 -0
- data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_utilities.sass +2 -0
- data/{frameworks → lib/compass/frameworks}/blueprint/templates/buttons/buttons.sass +4 -4
- data/{frameworks → lib/compass/frameworks}/blueprint/templates/buttons/buttons/cross.png +0 -0
- data/{frameworks → lib/compass/frameworks}/blueprint/templates/buttons/buttons/key.png +0 -0
- data/{frameworks → lib/compass/frameworks}/blueprint/templates/buttons/buttons/tick.png +0 -0
- data/lib/compass/frameworks/blueprint/templates/buttons/manifest.rb +17 -0
- data/{frameworks → lib/compass/frameworks}/blueprint/templates/link_icons/link_icons.sass +1 -1
- data/{frameworks → lib/compass/frameworks}/blueprint/templates/link_icons/link_icons/doc.png +0 -0
- data/{frameworks → lib/compass/frameworks}/blueprint/templates/link_icons/link_icons/email.png +0 -0
- data/{frameworks → lib/compass/frameworks}/blueprint/templates/link_icons/link_icons/external.png +0 -0
- data/{frameworks → lib/compass/frameworks}/blueprint/templates/link_icons/link_icons/feed.png +0 -0
- data/{frameworks → lib/compass/frameworks}/blueprint/templates/link_icons/link_icons/im.png +0 -0
- data/{frameworks → lib/compass/frameworks}/blueprint/templates/link_icons/link_icons/pdf.png +0 -0
- data/{frameworks → lib/compass/frameworks}/blueprint/templates/link_icons/link_icons/visited.png +0 -0
- data/{frameworks → lib/compass/frameworks}/blueprint/templates/link_icons/link_icons/xls.png +0 -0
- data/lib/compass/frameworks/blueprint/templates/link_icons/manifest.rb +23 -0
- data/{frameworks → lib/compass/frameworks}/blueprint/templates/project/grid.png +0 -0
- data/lib/compass/frameworks/blueprint/templates/project/ie.sass +16 -0
- data/lib/compass/frameworks/blueprint/templates/project/manifest.rb +32 -0
- data/{frameworks → lib/compass/frameworks}/blueprint/templates/project/partials/_base.sass +0 -0
- data/lib/compass/frameworks/blueprint/templates/project/print.sass +8 -0
- data/{frameworks → lib/compass/frameworks}/blueprint/templates/project/screen.sass +3 -2
- data/lib/compass/frameworks/blueprint/templates/project/welcome.html.haml +21 -0
- data/lib/compass/frameworks/compass/stylesheets/_compass.sass +2 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/_css3.sass +14 -0
- data/{frameworks → lib/compass/frameworks}/compass/stylesheets/compass/_layout.sass +0 -0
- data/{frameworks → lib/compass/frameworks}/compass/stylesheets/compass/_misc.sass +12 -12
- data/{frameworks → lib/compass/frameworks}/compass/stylesheets/compass/_reset.sass +0 -0
- data/{frameworks → lib/compass/frameworks}/compass/stylesheets/compass/_utilities.sass +0 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/css3/_background_clip.sass +16 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/css3/_background_origin.sass +18 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/css3/_background_size.sass +14 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/css3/_border_radius.sass +47 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/css3/_box_shadow.sass +20 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/css3/_box_sizing.sass +13 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/css3/_columns.sass +37 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/css3/_font_face.sass +31 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/css3/_gradient.sass +40 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/css3/_inline_block.sass +7 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/css3/_opacity.sass +18 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/css3/_text_shadow.sass +15 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/css3/_transform.sass +62 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/css3/_transition.sass +57 -0
- data/{frameworks → lib/compass/frameworks}/compass/stylesheets/compass/layout/_sticky_footer.sass +9 -7
- data/{frameworks → lib/compass/frameworks}/compass/stylesheets/compass/utilities/_general.sass +0 -1
- data/{frameworks → lib/compass/frameworks}/compass/stylesheets/compass/utilities/_links.sass +1 -1
- data/{frameworks → lib/compass/frameworks}/compass/stylesheets/compass/utilities/_lists.sass +0 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/_print.sass +18 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/_sprites.sass +1 -0
- data/{frameworks → lib/compass/frameworks}/compass/stylesheets/compass/utilities/_tables.sass +0 -0
- data/{frameworks → lib/compass/frameworks}/compass/stylesheets/compass/utilities/_text.sass +0 -0
- data/{frameworks → lib/compass/frameworks}/compass/stylesheets/compass/utilities/general/_clearfix.sass +7 -7
- data/{frameworks → lib/compass/frameworks}/compass/stylesheets/compass/utilities/general/_float.sass +2 -2
- data/{frameworks → lib/compass/frameworks}/compass/stylesheets/compass/utilities/general/_hacks.sass +2 -2
- data/{frameworks → lib/compass/frameworks}/compass/stylesheets/compass/utilities/general/_reset.sass +28 -28
- data/{frameworks → lib/compass/frameworks}/compass/stylesheets/compass/utilities/general/_tabs.sass +0 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/general/_tag_cloud.sass +19 -0
- data/{frameworks → lib/compass/frameworks}/compass/stylesheets/compass/utilities/links/_hover_link.sass +2 -2
- data/{frameworks → lib/compass/frameworks}/compass/stylesheets/compass/utilities/links/_link_colors.sass +6 -6
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/links/_unstyled_link.sass +7 -0
- data/{frameworks → lib/compass/frameworks}/compass/stylesheets/compass/utilities/lists/_bullets.sass +6 -6
- data/{frameworks → lib/compass/frameworks}/compass/stylesheets/compass/utilities/lists/_horizontal_list.sass +6 -6
- data/{frameworks → lib/compass/frameworks}/compass/stylesheets/compass/utilities/lists/_inline_list.sass +9 -9
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/sprites/_sprite_img.sass +52 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/tables/_alternating_rows_and_columns.sass +20 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/tables/_borders.sass +27 -0
- data/lib/compass/frameworks/compass/stylesheets/compass/utilities/tables/_scaffolding.sass +9 -0
- data/{frameworks → lib/compass/frameworks}/compass/stylesheets/compass/utilities/text/_ellipsis.sass +0 -0
- data/{frameworks → lib/compass/frameworks}/compass/stylesheets/compass/utilities/text/_nowrap.sass +1 -1
- data/{frameworks → lib/compass/frameworks}/compass/stylesheets/compass/utilities/text/_replacement.sass +6 -6
- data/{frameworks → lib/compass/frameworks}/compass/templates/ellipsis/ellipsis.sass +0 -0
- data/lib/compass/frameworks/compass/templates/ellipsis/manifest.rb +27 -0
- data/{frameworks → lib/compass/frameworks}/compass/templates/ellipsis/xml/ellipsis.xml +0 -0
- data/lib/compass/frameworks/compass/templates/extension/manifest.rb +20 -0
- data/lib/compass/frameworks/compass/templates/extension/stylesheets/main.sass +1 -0
- data/lib/compass/frameworks/compass/templates/extension/templates/project/manifest.rb +2 -0
- data/lib/compass/frameworks/compass/templates/extension/templates/project/screen.sass +2 -0
- data/lib/compass/frameworks/compass/templates/project/USAGE.markdown +32 -0
- data/{frameworks → lib/compass/frameworks}/compass/templates/project/ie.sass +0 -0
- data/{frameworks → lib/compass/frameworks}/compass/templates/project/manifest.rb +1 -0
- data/{frameworks → lib/compass/frameworks}/compass/templates/project/print.sass +0 -0
- data/{frameworks → lib/compass/frameworks}/compass/templates/project/screen.sass +0 -0
- data/lib/compass/grid_builder.rb +15 -11
- data/lib/compass/installers.rb +3 -5
- data/lib/compass/installers/bare_installer.rb +58 -0
- data/lib/compass/installers/base.rb +40 -51
- data/lib/compass/installers/manifest.rb +55 -2
- data/lib/compass/installers/manifest_installer.rb +59 -0
- data/lib/compass/installers/template_context.rb +44 -0
- data/lib/compass/logger.rb +28 -2
- data/lib/compass/sass_extensions.rb +2 -2
- data/lib/compass/sass_extensions/functions.rb +4 -2
- data/lib/compass/sass_extensions/functions/color_stop.rb +10 -0
- data/lib/compass/sass_extensions/functions/font_files.rb +11 -0
- data/lib/compass/sass_extensions/functions/inline_image.rb +22 -1
- data/lib/compass/sass_extensions/functions/selectors.rb +4 -1
- data/lib/compass/sass_extensions/functions/urls.rb +22 -2
- data/lib/compass/sass_extensions/monkey_patches.rb +3 -3
- data/lib/compass/sass_extensions/monkey_patches/traversal.rb +23 -0
- data/lib/compass/stats.rb +92 -0
- data/lib/compass/validator.rb +2 -3
- data/lib/vendor/fssm/state.rb +1 -1
- data/test/command_line_helper.rb +19 -16
- data/test/command_line_test.rb +5 -4
- data/test/compass_test.rb +16 -15
- data/test/configuration_test.rb +24 -19
- data/test/fixtures/stylesheets/blueprint/css/typography.css +5 -3
- data/test/fixtures/stylesheets/blueprint/sass/screen.sass +1 -1
- data/test/fixtures/stylesheets/blueprint/sass/typography.sass +2 -2
- data/test/fixtures/stylesheets/compass/css/layout.css +2 -0
- data/test/fixtures/stylesheets/compass/css/print.css +2 -8
- data/test/fixtures/stylesheets/compass/css/reset.css +3 -3
- data/test/fixtures/stylesheets/image_urls/css/screen.css +2 -0
- data/test/fixtures/stylesheets/relative/assets/images/testing.png +0 -0
- data/test/fixtures/stylesheets/relative/config.rb +9 -0
- data/test/fixtures/stylesheets/relative/css/ie.css +1 -0
- data/test/fixtures/stylesheets/relative/css/print.css +1 -0
- data/test/fixtures/stylesheets/relative/css/screen.css +1 -0
- data/test/fixtures/stylesheets/relative/sass/ie.sass +6 -0
- data/test/fixtures/stylesheets/relative/sass/print.sass +6 -0
- data/test/fixtures/stylesheets/relative/sass/screen.sass +3 -0
- data/test/io_helper.rb +36 -0
- data/test/rails_helper.rb +40 -0
- data/test/rails_integration_test.rb +7 -44
- data/test/sass_extensions_test.rb +2 -2
- data/test/test_helper.rb +9 -2
- metadata +257 -110
- data/frameworks/blueprint.rb +0 -2
- data/frameworks/blueprint/stylesheets/_blueprint.sass +0 -3
- data/frameworks/blueprint/stylesheets/blueprint/_ie.sass +0 -93
- data/frameworks/blueprint/stylesheets/blueprint/_print.sass +0 -83
- data/frameworks/blueprint/stylesheets/blueprint/_reset.sass +0 -3
- data/frameworks/blueprint/stylesheets/blueprint/_screen.sass +0 -15
- data/frameworks/blueprint/stylesheets/blueprint/modules/_form.sass +0 -55
- data/frameworks/blueprint/stylesheets/blueprint/modules/_interaction.sass +0 -58
- data/frameworks/blueprint/stylesheets/blueprint/modules/_rtl.sass +0 -104
- data/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass +0 -155
- data/frameworks/blueprint/templates/buttons/manifest.rb +0 -5
- data/frameworks/blueprint/templates/link_icons/manifest.rb +0 -10
- data/frameworks/blueprint/templates/project/ie.sass +0 -15
- data/frameworks/blueprint/templates/project/manifest.rb +0 -6
- data/frameworks/blueprint/templates/project/print.sass +0 -3
- data/frameworks/compass.rb +0 -2
- data/frameworks/compass/stylesheets/_compass.sass +0 -1
- data/frameworks/compass/stylesheets/compass/utilities/_print.sass +0 -24
- data/frameworks/compass/stylesheets/compass/utilities/_sprites.sass +0 -1
- data/frameworks/compass/stylesheets/compass/utilities/general/_inline_block.sass +0 -6
- data/frameworks/compass/stylesheets/compass/utilities/general/_tag_cloud.sass +0 -19
- data/frameworks/compass/stylesheets/compass/utilities/links/_unstyled_link.sass +0 -5
- data/frameworks/compass/stylesheets/compass/utilities/sprites/_sprite_img.sass +0 -12
- data/frameworks/compass/stylesheets/compass/utilities/tables/_alternating_rows_and_columns.sass +0 -20
- data/frameworks/compass/stylesheets/compass/utilities/tables/_borders.sass +0 -27
- data/frameworks/compass/stylesheets/compass/utilities/tables/_scaffolding.sass +0 -9
- data/frameworks/compass/templates/ellipsis/manifest.rb +0 -2
- data/frameworks/yui.rb +0 -2
- data/frameworks/yui/stylesheets/yui/modules/_base.sass +0 -60
- data/lib/compass/installers/rails.rb +0 -135
- data/lib/compass/installers/stand_alone.rb +0 -60
- data/test/fixtures/stylesheets/yui/config.rb +0 -9
- data/test/fixtures/stylesheets/yui/css/mixins.css +0 -13
- data/test/fixtures/stylesheets/yui/sass/base.sass +0 -3
- data/test/fixtures/stylesheets/yui/sass/fonts.sass +0 -3
- data/test/fixtures/stylesheets/yui/sass/grids.sass +0 -3
- data/test/fixtures/stylesheets/yui/sass/mixins.sass +0 -16
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
@import typography.sass
|
|
2
|
+
@import compass/utilities/general/float.sass
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
// Usage examples:
|
|
7
|
+
// As a top-level mixin, apply to any page that includes the stylesheet:
|
|
8
|
+
// +blueprint-print
|
|
9
|
+
// Scoped by a presentational class:
|
|
10
|
+
// body.blueprint
|
|
11
|
+
// +blueprint-print(true)
|
|
12
|
+
// Scoped by semantic selectors:
|
|
13
|
+
// body#page-1, body#page-2, body.a-special-page-type
|
|
14
|
+
// +blueprint-print(true)
|
|
15
|
+
// Deprecated:
|
|
16
|
+
// You can pass the body selector as the first argument when used as a top-level mixin
|
|
17
|
+
// +blueprint-print("body#page-1, body#page-2, body.a-special-page-type")
|
|
18
|
+
=blueprint-print(!body_selector = "body")
|
|
19
|
+
@if !body_selector == true
|
|
20
|
+
+blueprint-print-body
|
|
21
|
+
+blueprint-print-defaults
|
|
22
|
+
@else
|
|
23
|
+
#{!body_selector}
|
|
24
|
+
+blueprint-print-body
|
|
25
|
+
@if !body_selector != "body"
|
|
26
|
+
@debug "[DEPRECATED] To specify a the selector \"#{!body_selector}\" to +blueprint-print, pass true as the first argument and mix it into #{!body_selector}."
|
|
27
|
+
+blueprint-print-defaults
|
|
28
|
+
@if !body_selector == "body"
|
|
29
|
+
+blueprint-print-defaults
|
|
30
|
+
|
|
31
|
+
// This style is in blueprint, but I think it's annoying and it doesn't work in all browsers.
|
|
32
|
+
// Feel free to mix it into anchors where you want it.
|
|
33
|
+
=blueprint-show-link-urls
|
|
34
|
+
&:after
|
|
35
|
+
content: " (" attr(href) ")"
|
|
36
|
+
font-size: 90%
|
|
37
|
+
|
|
38
|
+
=blueprint-print-body
|
|
39
|
+
line-height: 1.5
|
|
40
|
+
font-family= !blueprint_font_family
|
|
41
|
+
color: #000
|
|
42
|
+
background: none
|
|
43
|
+
font-size: 10pt
|
|
44
|
+
|
|
45
|
+
=blueprint-print-defaults
|
|
46
|
+
.container
|
|
47
|
+
background: none
|
|
48
|
+
hr
|
|
49
|
+
background: #ccc
|
|
50
|
+
color: #ccc
|
|
51
|
+
width: 100%
|
|
52
|
+
height: 2px
|
|
53
|
+
margin: 2em 0
|
|
54
|
+
padding: 0
|
|
55
|
+
border: none
|
|
56
|
+
&.space
|
|
57
|
+
background: #fff
|
|
58
|
+
color: #fff
|
|
59
|
+
h1, h2, h3, h4, h5, h6
|
|
60
|
+
font-family= !blueprint_font_family
|
|
61
|
+
code
|
|
62
|
+
font:
|
|
63
|
+
size: .9em
|
|
64
|
+
family= !blueprint_fixed_font_family
|
|
65
|
+
a
|
|
66
|
+
img
|
|
67
|
+
border: none
|
|
68
|
+
&:link,
|
|
69
|
+
&:visited
|
|
70
|
+
background: transparent
|
|
71
|
+
font-weight: 700
|
|
72
|
+
text-decoration: underline
|
|
73
|
+
p img.top
|
|
74
|
+
margin-top: 0
|
|
75
|
+
blockquote
|
|
76
|
+
margin: 1.5em
|
|
77
|
+
padding: 1em
|
|
78
|
+
font-style: italic
|
|
79
|
+
font-size: .9em
|
|
80
|
+
.small
|
|
81
|
+
font-size: .9em
|
|
82
|
+
.large
|
|
83
|
+
font-size: 1.1em
|
|
84
|
+
.quiet
|
|
85
|
+
color: #999
|
|
86
|
+
.hide
|
|
87
|
+
display: none
|
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
=blueprint-global-reset
|
|
4
4
|
html, body
|
|
5
5
|
+blueprint-reset
|
|
6
|
+
html
|
|
7
|
+
font-size: 100.01%
|
|
6
8
|
+blueprint-nested-reset
|
|
7
9
|
|
|
8
10
|
// Reset all elements within some selector scope.To reset the selector itself,
|
|
@@ -20,37 +22,37 @@
|
|
|
20
22
|
table
|
|
21
23
|
+blueprint-reset-table
|
|
22
24
|
a img
|
|
23
|
-
:
|
|
25
|
+
border: none
|
|
24
26
|
|
|
25
27
|
=blueprint-reset-box-model
|
|
26
|
-
:
|
|
27
|
-
:
|
|
28
|
-
:
|
|
28
|
+
margin: 0
|
|
29
|
+
padding: 0
|
|
30
|
+
border: 0
|
|
29
31
|
|
|
30
32
|
=blueprint-reset
|
|
31
33
|
+blueprint-reset-box-model
|
|
32
|
-
:
|
|
33
|
-
:
|
|
34
|
-
:
|
|
35
|
-
:
|
|
36
|
-
:
|
|
37
|
-
|
|
34
|
+
font:
|
|
35
|
+
weight: inherit
|
|
36
|
+
style: inherit
|
|
37
|
+
size: 100%
|
|
38
|
+
family: inherit
|
|
39
|
+
vertical-align: baseline
|
|
38
40
|
|
|
39
41
|
=blueprint-reset-quotation
|
|
40
42
|
+blueprint-reset
|
|
41
|
-
:
|
|
43
|
+
quotes: "" ""
|
|
42
44
|
&:before,
|
|
43
45
|
&:after
|
|
44
|
-
:
|
|
46
|
+
content: ""
|
|
45
47
|
|
|
46
48
|
=blueprint-reset-table-cell
|
|
47
49
|
+blueprint-reset
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
50
|
+
text-align: left
|
|
51
|
+
font-weight: normal
|
|
52
|
+
vertical-align: middle
|
|
51
53
|
|
|
52
54
|
=blueprint-reset-table
|
|
53
55
|
+blueprint-reset
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
56
|
+
border-collapse: separate
|
|
57
|
+
border-spacing: 0
|
|
58
|
+
vertical-align: middle
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
@import grid.sass
|
|
2
|
+
@import compass/utilities/general/float.sass
|
|
3
|
+
|
|
4
|
+
// Main layout grid, override these constants to build your grid and container sizes.
|
|
5
|
+
!blueprint_grid_columns ||= 24
|
|
6
|
+
!blueprint_grid_width ||= 30px
|
|
7
|
+
!blueprint_grid_margin ||= 10px
|
|
8
|
+
|
|
9
|
+
!blueprint_grid_outer_width = !blueprint_grid_width + !blueprint_grid_margin
|
|
10
|
+
!blueprint_container_size = !blueprint_grid_outer_width * !blueprint_grid_columns - !blueprint_grid_margin
|
|
11
|
+
|
|
12
|
+
// Columns
|
|
13
|
+
// Note: If you use this mixin without the class and want to support ie6
|
|
14
|
+
// you must set text-align left on your container element in an IE stylesheet.
|
|
15
|
+
=container
|
|
16
|
+
width= !blueprint_container_size
|
|
17
|
+
margin: 0 auto
|
|
18
|
+
direction: rtl
|
|
19
|
+
+clearfix
|
|
20
|
+
|
|
21
|
+
// The last column in a row needs this mixin or it will end up on the next row.
|
|
22
|
+
// TODO add this to span mixin when we have optional arguments
|
|
23
|
+
=last
|
|
24
|
+
margin-left: 0
|
|
25
|
+
|
|
26
|
+
=column-base(!last = false)
|
|
27
|
+
+float-right
|
|
28
|
+
@if !last
|
|
29
|
+
+last
|
|
30
|
+
@else
|
|
31
|
+
margin-left= !blueprint_grid_margin
|
|
32
|
+
text-align: right
|
|
33
|
+
* html &
|
|
34
|
+
overflow-x: hidden
|
|
35
|
+
|
|
36
|
+
// Mixin to a column to append n empty cols.
|
|
37
|
+
=append(!n)
|
|
38
|
+
padding-left= (!blueprint_grid_outer_width) * !n
|
|
39
|
+
|
|
40
|
+
// Mixin to a column to prepend n empty cols.
|
|
41
|
+
=prepend(!n)
|
|
42
|
+
padding-right= (!blueprint_grid_outer_width) * !n
|
|
43
|
+
|
|
44
|
+
// mixin to a column to move it n columns to the left
|
|
45
|
+
=pull(!n, !last = false)
|
|
46
|
+
position: relative
|
|
47
|
+
@if !last
|
|
48
|
+
margin-right= (-!blueprint_grid_outer_width * !n) + !blueprint_grid_margin
|
|
49
|
+
@else
|
|
50
|
+
margin-right= -!blueprint_grid_outer_width * !n
|
|
51
|
+
|
|
52
|
+
// mixin to a column to push it n columns to the right
|
|
53
|
+
=push(!n)
|
|
54
|
+
+float-right
|
|
55
|
+
position: relative
|
|
56
|
+
margin:
|
|
57
|
+
top: 0
|
|
58
|
+
left= -!blueprint_grid_outer_width * !n
|
|
59
|
+
bottom: 1.5em
|
|
60
|
+
right= !blueprint_grid_outer_width * !n
|
|
61
|
+
|
|
62
|
+
// Border on left hand side of a column.
|
|
63
|
+
=border
|
|
64
|
+
padding-left= !blueprint_grid_margin / 2 - 1
|
|
65
|
+
margin-left= !blueprint_grid_margin / 2
|
|
66
|
+
border-left: 1px solid #eee
|
|
67
|
+
|
|
68
|
+
// Border with more whitespace, spans one column.
|
|
69
|
+
=colborder
|
|
70
|
+
padding-left= (!blueprint_grid_width - 2 * !blueprint_grid_margin - 1)/2
|
|
71
|
+
margin-left= (!blueprint_grid_width - 2 * !blueprint_grid_margin)/2
|
|
72
|
+
border-left: 1px solid #eee
|
|
73
|
+
|
|
74
|
+
// Usage examples:
|
|
75
|
+
// As a top-level mixin, apply to any page that includes the stylesheet:
|
|
76
|
+
// +rtl-typography
|
|
77
|
+
// Scoped by a presentational class:
|
|
78
|
+
// body.blueprint
|
|
79
|
+
// +rtl-typography(true)
|
|
80
|
+
// Scoped by semantic selectors:
|
|
81
|
+
// body#page-1, body#page-2, body.a-special-page-type
|
|
82
|
+
// +rtl-typography(true)
|
|
83
|
+
// Deprecated:
|
|
84
|
+
// You can pass the body selector as the first argument when used as a top-level mixin
|
|
85
|
+
// +rtl-typography("body#page-1, body#page-2, body.a-special-page-type")
|
|
86
|
+
=rtl-typography(!body_selector = "body")
|
|
87
|
+
@if !body_selector == true
|
|
88
|
+
html &
|
|
89
|
+
font-family: Arial, sans-serif
|
|
90
|
+
+rtl-typography-defaults
|
|
91
|
+
@else
|
|
92
|
+
html #{!body_selector}
|
|
93
|
+
font-family: Arial, sans-serif
|
|
94
|
+
@if !body_selector != "body"
|
|
95
|
+
@debug "[DEPRECATED] To specify a the selector \"#{!body_selector}\" to +rtl-typography, pass true as the first argument and mix it into #{!body_selector}."
|
|
96
|
+
+rtl-typography-defaults
|
|
97
|
+
@if !body_selector == "body"
|
|
98
|
+
body
|
|
99
|
+
+rtl-typography-defaults
|
|
100
|
+
|
|
101
|
+
=rtl-typography-defaults
|
|
102
|
+
h1, h2, h3, h4, h5, h6
|
|
103
|
+
font-family: Arial, sans-serif
|
|
104
|
+
|
|
105
|
+
pre, code, tt
|
|
106
|
+
font-family: monospace
|
|
107
|
+
|
|
108
|
+
p
|
|
109
|
+
img.right
|
|
110
|
+
+float-left
|
|
111
|
+
margin: 1.5em 1.5em 1.5em 0
|
|
112
|
+
padding: 0
|
|
113
|
+
img.left
|
|
114
|
+
+float-right
|
|
115
|
+
margin: 1.5em 0 1.5em 1.5em
|
|
116
|
+
padding: 0
|
|
117
|
+
|
|
118
|
+
dd, ul, ol
|
|
119
|
+
margin-left: 0
|
|
120
|
+
margin-right: 1.5em
|
|
121
|
+
|
|
122
|
+
td, th
|
|
123
|
+
text-align: right
|
|
@@ -24,13 +24,13 @@
|
|
|
24
24
|
// The styles this mixin provides were deprecated in Blueprint 0.9 and is no longer part of the
|
|
25
25
|
// main scaffolding, but the mixin is still available if you want to use it.
|
|
26
26
|
=blueprint-scaffolding-body
|
|
27
|
-
:
|
|
27
|
+
margin: 1.5em 0
|
|
28
28
|
|
|
29
29
|
// Mixin +box to create a padded box inside a column.
|
|
30
30
|
=box
|
|
31
|
-
:
|
|
32
|
-
|
|
33
|
-
:
|
|
31
|
+
padding: 1.5em
|
|
32
|
+
margin-bottom: 1.5em
|
|
33
|
+
background: #E5ECF9
|
|
34
34
|
|
|
35
35
|
=blueprint-scaffolding-defaults
|
|
36
36
|
.box
|
|
@@ -45,3 +45,5 @@
|
|
|
45
45
|
+colruler
|
|
46
46
|
hr.space
|
|
47
47
|
+colspacer
|
|
48
|
+
form.inline
|
|
49
|
+
+blueprint-inline-form
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
@import colors.sass
|
|
2
|
+
@import compass/utilities/links/link_colors.sass
|
|
3
|
+
@import compass/utilities/general/float.sass
|
|
4
|
+
|
|
5
|
+
!blueprint_font_family ||= "Helvetica Neue, Arial, Helvetica, sans-serif"
|
|
6
|
+
!blueprint_fixed_font_family ||= "'andale mono', 'lucida console', monospace"
|
|
7
|
+
!blueprint_font_size ||= 12px
|
|
8
|
+
|
|
9
|
+
// Usage examples:
|
|
10
|
+
// As a top-level mixin, apply to any page that includes the stylesheet:
|
|
11
|
+
// +blueprint-typography
|
|
12
|
+
// Scoped by a presentational class:
|
|
13
|
+
// body.blueprint
|
|
14
|
+
// +blueprint-typography(true)
|
|
15
|
+
// Scoped by semantic selectors:
|
|
16
|
+
// body#page-1, body#page-2, body.a-special-page-type
|
|
17
|
+
// +blueprint-typography(true)
|
|
18
|
+
// Deprecated:
|
|
19
|
+
// You can pass the body selector as the first argument when used as a top-level mixin
|
|
20
|
+
// +blueprint-typography("body#page-1, body#page-2, body.a-special-page-type")
|
|
21
|
+
=blueprint-typography(!body_selector = "body")
|
|
22
|
+
@if !body_selector == true
|
|
23
|
+
+blueprint-typography-body
|
|
24
|
+
+blueprint-typography-defaults
|
|
25
|
+
@else
|
|
26
|
+
#{!body_selector}
|
|
27
|
+
+blueprint-typography-body
|
|
28
|
+
@if !body_selector != "body"
|
|
29
|
+
@debug "[DEPRECATED] To specify a the selector \"#{!body_selector}\" to +blueprint-typography, pass true as the first argument and mix it into #{!body_selector}."
|
|
30
|
+
+blueprint-typography-defaults
|
|
31
|
+
@if !body_selector == "body"
|
|
32
|
+
+blueprint-typography-defaults
|
|
33
|
+
|
|
34
|
+
=normal-text
|
|
35
|
+
font-family= !blueprint_font_family
|
|
36
|
+
color= !font_color
|
|
37
|
+
|
|
38
|
+
=fixed-width-text
|
|
39
|
+
font= 1em !blueprint_fixed_font_family
|
|
40
|
+
line-height: 1.5
|
|
41
|
+
|
|
42
|
+
=header-text
|
|
43
|
+
font-weight: normal
|
|
44
|
+
color= !header_color
|
|
45
|
+
|
|
46
|
+
=quiet
|
|
47
|
+
color= !quiet_color
|
|
48
|
+
|
|
49
|
+
=loud
|
|
50
|
+
color= !loud_color
|
|
51
|
+
|
|
52
|
+
=blueprint-typography-body(!font_size = !blueprint_font_size)
|
|
53
|
+
line-height: 1.5
|
|
54
|
+
+normal-text
|
|
55
|
+
font-size= 100% * !font_size / 16px
|
|
56
|
+
|
|
57
|
+
=blueprint-typography-defaults
|
|
58
|
+
h1
|
|
59
|
+
+header-text
|
|
60
|
+
font-size: 3em
|
|
61
|
+
line-height: 1
|
|
62
|
+
margin-bottom: 0.5em
|
|
63
|
+
img
|
|
64
|
+
margin: 0
|
|
65
|
+
h2
|
|
66
|
+
+header-text
|
|
67
|
+
font-size: 2em
|
|
68
|
+
margin-bottom: 0.75em
|
|
69
|
+
h3
|
|
70
|
+
+header-text
|
|
71
|
+
font-size: 1.5em
|
|
72
|
+
line-height: 1
|
|
73
|
+
margin-bottom: 1em
|
|
74
|
+
h4
|
|
75
|
+
+header-text
|
|
76
|
+
font-size: 1.2em
|
|
77
|
+
line-height: 1.25
|
|
78
|
+
margin-bottom: 1.25em
|
|
79
|
+
h5
|
|
80
|
+
+header-text
|
|
81
|
+
font-size: 1em
|
|
82
|
+
font-weight: bold
|
|
83
|
+
margin-bottom: 1.5em
|
|
84
|
+
h6
|
|
85
|
+
+header-text
|
|
86
|
+
font-size: 1em
|
|
87
|
+
font-weight: bold
|
|
88
|
+
h2 img, h3 img, h4 img, h5 img, h6 img
|
|
89
|
+
margin: 0
|
|
90
|
+
p
|
|
91
|
+
margin: 0 0 1.5em
|
|
92
|
+
img.left
|
|
93
|
+
+float-left
|
|
94
|
+
margin: 1.5em 1.5em 1.5em 0
|
|
95
|
+
padding: 0
|
|
96
|
+
img.right
|
|
97
|
+
+float-right
|
|
98
|
+
margin: 1.5em 0 1.5em 1.5em
|
|
99
|
+
padding: 0
|
|
100
|
+
a
|
|
101
|
+
text-decoration: underline
|
|
102
|
+
+link-colors(!link_color, !link_hover_color, !link_active_color, !link_visited_color, !link_focus_color)
|
|
103
|
+
blockquote
|
|
104
|
+
margin: 1.5em
|
|
105
|
+
color: #666
|
|
106
|
+
font-style: italic
|
|
107
|
+
strong
|
|
108
|
+
font-weight: bold
|
|
109
|
+
em
|
|
110
|
+
font-style: italic
|
|
111
|
+
dfn
|
|
112
|
+
font-style: italic
|
|
113
|
+
font-weight: bold
|
|
114
|
+
sup, sub
|
|
115
|
+
line-height: 0
|
|
116
|
+
abbr, acronym
|
|
117
|
+
border-bottom: 1px dotted #666
|
|
118
|
+
address
|
|
119
|
+
margin: 0 0 1.5em
|
|
120
|
+
font-style: italic
|
|
121
|
+
del
|
|
122
|
+
color: #666
|
|
123
|
+
pre
|
|
124
|
+
margin: 1.5em 0
|
|
125
|
+
white-space: pre
|
|
126
|
+
pre, code, tt
|
|
127
|
+
+fixed-width-text
|
|
128
|
+
li
|
|
129
|
+
ul, ol
|
|
130
|
+
margin: 0
|
|
131
|
+
ul, ol
|
|
132
|
+
margin: 0 1.5em 1.5em 0
|
|
133
|
+
padding-left: 3.333em
|
|
134
|
+
ul
|
|
135
|
+
list-style-type: disc
|
|
136
|
+
ol
|
|
137
|
+
list-style-type: decimal
|
|
138
|
+
dl
|
|
139
|
+
margin: 0 0 1.5em 0
|
|
140
|
+
dt
|
|
141
|
+
font-weight: bold
|
|
142
|
+
dd
|
|
143
|
+
margin-left: 1.5em
|
|
144
|
+
table
|
|
145
|
+
margin-bottom: 1.4em
|
|
146
|
+
width: 100%
|
|
147
|
+
th
|
|
148
|
+
font-weight: bold
|
|
149
|
+
thead th
|
|
150
|
+
background= !blueprint_table_header_color
|
|
151
|
+
th, td, caption
|
|
152
|
+
padding: 4px 10px 4px 5px
|
|
153
|
+
tr.even td
|
|
154
|
+
background= !blueprint_table_stripe_color
|
|
155
|
+
tfoot
|
|
156
|
+
font-style: italic
|
|
157
|
+
caption
|
|
158
|
+
background: #eee
|
|
159
|
+
.quiet
|
|
160
|
+
+quiet
|
|
161
|
+
.loud
|
|
162
|
+
+loud
|