Skip to content

Commit

Permalink
added ; in Sass instructions so users don't see syntax error when it …
Browse files Browse the repository at this point in the history
…tries to compile. removed dotted line under abbr, which was added by the HTML5 Boilerplate change and looks terible.
  • Loading branch information
Dan Croak committed Nov 26, 2010
1 parent fafa00f commit 2e23252
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.textile
Expand Up @@ -22,15 +22,15 @@ h2. Usage

Flutie registers a :flutie shortcut for stylesheets, so in your layout you can do...

bc.. <%= stylesheet_link_tag :flutie, 'admin', :cache => true %>
bc. <%= stylesheet_link_tag :flutie, 'admin', :cache => true %>

...this will include all the flutie stylesheets, then the 'admin' stylesheet, and it will cache them all into one file.

h3. Sass

If you use Sass in your application, the flutie stylesheets are also available as scss files, installed in public/flutie/sass. This location is automatically added to your Sass template load path. These files can be imported into your own css files for use with the following:

bc. @import "flutie"
bc. @import "flutie";

h3. Custom Styles

Expand Down
2 changes: 1 addition & 1 deletion public/stylesheets/sass/_reset.scss
Expand Up @@ -45,7 +45,7 @@ mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }
abbr[title], dfn[title] { cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }
Expand Down

0 comments on commit 2e23252

Please sign in to comment.