Skip to content

Commit

Permalink
[Blueprint] Upgrade to 0.9: Fixed math for blueprint colborder
Browse files Browse the repository at this point in the history
  • Loading branch information
enricob authored and chriseppstein committed Jun 20, 2009
1 parent 45af89d commit 4b33fae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions frameworks/blueprint/stylesheets/blueprint/modules/_grid.sass
Expand Up @@ -146,8 +146,8 @@

// Border with more whitespace, spans one column.
=colborder
:padding-right= !blueprint_grid_width - 0.5 * !blueprint_grid_margin - 1
:margin-right= !blueprint_grid_width - 0.5 * !blueprint_grid_margin
:padding-right= (!blueprint_grid_width - 2 * !blueprint_grid_margin - 1)/2
:margin-right= (!blueprint_grid_width - 2 * !blueprint_grid_margin)/2
:border-right 1px solid #eee

// Mixin this to an hr to make a horizontal ruler across a column.
Expand Down
4 changes: 2 additions & 2 deletions frameworks/blueprint/stylesheets/blueprint/modules/_rtl.sass
Expand Up @@ -66,8 +66,8 @@

// Border with more whitespace, spans one column.
=colborder
:padding-left= !blueprint_grid_width - 0.5 * !blueprint_grid_margin - 1
:margin-left= !blueprint_grid_width - 0.5 * !blueprint_grid_margin
:padding-left= (!blueprint_grid_width - 2 * !blueprint_grid_margin - 1)/2
:margin-left= (!blueprint_grid_width - 2 * !blueprint_grid_margin)/2
:border-left 1px solid #eee

=rtl-typography(!body_selector = "body")
Expand Down

0 comments on commit 4b33fae

Please sign in to comment.