From 5c1e5776bd4d816936f3daa66f48341d3b9833c4 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Sat, 8 May 2010 18:18:47 -0700 Subject: [PATCH] [Blueprint] Silence some deprecation warnings created by the template file. --- .../blueprint/templates/basic/partials/_base.sass | 6 +++--- frameworks/blueprint/templates/buttons/buttons.sass | 4 ++-- .../blueprint/templates/project/partials/_base.sass | 8 ++++---- frameworks/blueprint/templates/project/screen.sass | 11 ++++++----- .../blueprint/templates/semantic/partials/_base.sass | 9 ++++----- .../templates/semantic/partials/_two_col.sass | 10 +++++----- 6 files changed, 24 insertions(+), 24 deletions(-) diff --git a/frameworks/blueprint/templates/basic/partials/_base.sass b/frameworks/blueprint/templates/basic/partials/_base.sass index 06953c3f..cb437bf8 100644 --- a/frameworks/blueprint/templates/basic/partials/_base.sass +++ b/frameworks/blueprint/templates/basic/partials/_base.sass @@ -1,9 +1,9 @@ // Here is where you can define your constants for your application and to configure the blueprint framework. // Feel free to delete these if you want keep the defaults: -!blueprint_grid_columns = 24 -!blueprint_grid_width = 30px -!blueprint_grid_margin = 10px +$blueprint-grid-columns : 24 +$blueprint-grid-width : 30px +$blueprint-grid-margin : 10px // If you change your grid column dimensions // you can make a new grid background image from the command line like this: diff --git a/frameworks/blueprint/templates/buttons/buttons.sass b/frameworks/blueprint/templates/buttons/buttons.sass index d42ca4c1..b03736a3 100644 --- a/frameworks/blueprint/templates/buttons/buttons.sass +++ b/frameworks/blueprint/templates/buttons/buttons.sass @@ -20,7 +20,7 @@ a.button // you can pass "left" or "right" to +anchor-button to float it in that direction // or you can pass no argument to leave it inline-block (cross browser safe!) within // the flow of your page. - +anchor-button("left") + +anchor-button(left) // All the button color mixins take 4 optional arguments: // font color, background color, border color, border highlight color // the first three default to constants set in blueprint/buttons.sass @@ -31,7 +31,7 @@ a.button button // The +button-button mixin is just like the +anchor-button mixin, but for