The sass bug that prevented this from being scss has been fixed.

This commit is contained in:
Chris Eppstein 2010-04-12 02:45:35 -07:00
parent 45a9b1c255
commit 09abca682c
2 changed files with 13 additions and 14 deletions

View File

@ -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

View File

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