The sass bug that prevented this from being scss has been fixed.
This commit is contained in:
parent
45a9b1c255
commit
09abca682c
@ -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
|
@ -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; }
|
Loading…
Reference in New Issue
Block a user