Firefox gets persnickety about how regular CSS properties and shorthand properties
interact, specifically specifying a shorthand version after the regular property
causes the regular property to be overriden. Closes GH-852.
- used elements-of-type(html5-block) in all the reset stylesheets
(instead of duplicate tag enumerations)
- removed dialog
- canvas is inline, not block
Closes GH-339, GH-462.
commit 7522a25ab641264da4aebdc3e78cb2c5b253c939
Author: Christian Montoya <sirokai@gmail.com>
Date: Fri Sep 17 11:52:34 2010 -0400
Fixed lighthouse bugs, updated tests/index.html
commit 5459eddd7b2953a6b0b6d10e97d056019762874a
Author: Christian Montoya <sirokai@gmail.com>
Date: Wed Sep 29 15:53:24 2010 -0400
Fix for conflict between .right and .column/.span-X
Deviations:
I think it's incorrect to apply zebra striping to all tables. So
instead, you must opt in by applying the striped class to a table.
commit 1adea984cbe7d30a529713f9e0ae8bd26fd88272
Author: Christian Montoya <sirokai@gmail.com>
Date: Wed Sep 1 16:54:35 2010 -0400
Adding new changes for link colors and test files
commit 50d160b713f119627c7beaebd35b751bc26c5c0a
Author: Joshua Clayton <jclayton@thoughtbot.com>
Date: Sun Jan 10 10:37:08 2010 -0500
Support HTML5
This includes removing the div scope on grid classes (span-#),
applying
the reset to core HTML5 elements, and explicitly defining the rule
'display: block' for those elements.
YUI doesn't even consider it part of the reset. With so much
disagreement, I decided to make the compass reset agnostic and let
individual frameworks decide what the body line-height ought to be.
Breakdown of changes:
===
Remove the body scope that is unnecessarily added to many blueprint classes due to the way the mixins were constructed and used. Blueprint mixins that operate on the body tag now follow a pattern where they take the body selector as an argument and must always be mixed into the top level of a stylesheet. The classes will be scoped whenever the selector is not a simple "body" selector which is the default. Mixins affected: +blueprint-ie, +blueprint-print, +blueprint-typography, and +blueprint-scaffolding. All of these mixins use corresponding +[mixin]-body and +[mixin]-defaults mixins in their implementations that you can use directly if you feel constrained by the requirement to mix into the top-level.
===
Made all configurable constants possible to override in a base stylesheet using conditional assignment. Moved many colors that were still hard coded to the colors.sass module so they can be overridden.
===
Restored some blueprint defaults even though I didn't like them. With the exception of the blueprint link urls which are now available as a mixin called +blueprint-show-link-urls (they used to just be commented out.)
===
Grid constants have been renamed in both the grid and liquid grid modules. These constants are now conditionally assigned to make the grid easily configured.
===
The liquid grid now uses the compass clearfix.
===
moved the primary mixin for a module (where one exists) to the top of the file for clarity of readers.
===
blueprint grid classes are now appropriately scoped under the .container class.