From 09abca682c39bd0d069473f42000708d6f8e844d Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Mon, 12 Apr 2010 02:45:35 -0700 Subject: [PATCH] The sass bug that prevented this from being scss has been fixed. --- .../stylesheets/compass/css3/_inline-block.sass | 14 -------------- .../stylesheets/compass/css3/_inline-block.scss | 13 +++++++++++++ 2 files changed, 13 insertions(+), 14 deletions(-) delete mode 100644 frameworks/compass/stylesheets/compass/css3/_inline-block.sass create mode 100644 frameworks/compass/stylesheets/compass/css3/_inline-block.scss diff --git a/frameworks/compass/stylesheets/compass/css3/_inline-block.sass b/frameworks/compass/stylesheets/compass/css3/_inline-block.sass deleted file mode 100644 index e25973a1..00000000 --- a/frameworks/compass/stylesheets/compass/css3/_inline-block.sass +++ /dev/null @@ -1,14 +0,0 @@ -// - Provides a cross-browser method to implement `display: inline-block;` - - This file is a sass file to work around the fact that the - SCSS parser does not support the #prop hack at this time. - http://github.com/nex3/haml/issues/issue/119 - -=inline-block - display: -moz-inline-box - -moz-box-orient: vertical - display: inline-block - vertical-align: middle - #display: inline - #vertical-align: auto \ No newline at end of file diff --git a/frameworks/compass/stylesheets/compass/css3/_inline-block.scss b/frameworks/compass/stylesheets/compass/css3/_inline-block.scss new file mode 100644 index 00000000..078c5b3c --- /dev/null +++ b/frameworks/compass/stylesheets/compass/css3/_inline-block.scss @@ -0,0 +1,13 @@ +// Provides a cross-browser method to implement `display: inline-block;` +// +// This file is a sass file to work around the fact that the +// SCSS parser does not support the #prop hack at this time. +// http://github.com/nex3/haml/issues/issue/119 + +@mixin inline-block { + display: -moz-inline-box; + -moz-box-orient: vertical; + display: inline-block; + vertical-align: middle; + #display: inline; + #vertical-align: auto; }