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; }