css3 and inline-block patches
This commit is contained in:
parent
2eba93858b
commit
6870d21814
@ -1,3 +1,6 @@
|
|||||||
@import css3/border_radius.sass
|
@import css3/border_radius.sass
|
||||||
@import css3/inline_block.sass
|
@import css3/inline_block.sass
|
||||||
@import css3/opacity.sass
|
@import css3/opacity.sass
|
||||||
|
@import css3/box_shadow.sass
|
||||||
|
@import css3/columns.sass
|
||||||
|
@import css3/box_sizing.sass
|
||||||
|
@ -0,0 +1,12 @@
|
|||||||
|
//**
|
||||||
|
Provides cross-browser css box shadows
|
||||||
|
for Webkit and the future
|
||||||
|
arguments are horizontal offset, vertical offset, blur and color
|
||||||
|
|
||||||
|
=box-shadow(!ho, !vo, !b, !c )
|
||||||
|
/* Webkit (Safari, Chrome)
|
||||||
|
-webkit-box-shadow= !ho !vo !b !c
|
||||||
|
/* Mozilla (Firefox, Camino)
|
||||||
|
-moz-box-shadow= !ho !vo !b !c
|
||||||
|
/* CSS3
|
||||||
|
box-shadow= !ho !vo !b !c
|
@ -0,0 +1,13 @@
|
|||||||
|
//**
|
||||||
|
Change the box model for Mozilla, Webkit, IE8 and the future
|
||||||
|
@param !bs
|
||||||
|
[ content-box | border-box ]
|
||||||
|
=box-sizing(!bs)
|
||||||
|
/* Mozilla (FireFox, Camino)
|
||||||
|
-moz-box-sizing= !bs
|
||||||
|
/* Webkit (Safari, Chrome)
|
||||||
|
-webkit-box-sizing= !bs
|
||||||
|
/* IE (8)
|
||||||
|
-ms-box-sizing= !bs
|
||||||
|
/* CSS3
|
||||||
|
box-sizing= !bs
|
@ -0,0 +1,37 @@
|
|||||||
|
//**
|
||||||
|
CSS3 columns for Mozilla, Webkit and the Future
|
||||||
|
|
||||||
|
=column-count(!n)
|
||||||
|
:-moz-column-count= !n
|
||||||
|
:-webkit-column-count= !n
|
||||||
|
:column-count= !n
|
||||||
|
|
||||||
|
=column-gap(!u)
|
||||||
|
:-moz-column-gap= !u
|
||||||
|
:-webkit-column-gap= !u
|
||||||
|
:column-gap= !u
|
||||||
|
|
||||||
|
=column-width(!u)
|
||||||
|
:-moz-column-width= !u
|
||||||
|
:-webkit-column-width= !u
|
||||||
|
:column-width= !u
|
||||||
|
|
||||||
|
=column-rule-width(!w)
|
||||||
|
:-moz-column-rule-width= !w
|
||||||
|
:-webkit-column-rule-width= !w
|
||||||
|
:column-rule-width= !w
|
||||||
|
|
||||||
|
=column-rule-style(!s)
|
||||||
|
:-moz-column-rule-style= !s
|
||||||
|
:-webkit-column-rule-style= !s
|
||||||
|
:column-rule-style= !s
|
||||||
|
|
||||||
|
=column-rule-color(!c)
|
||||||
|
:-moz-column-rule-color= !c
|
||||||
|
:-webkit-column-rule-color= !c
|
||||||
|
:column-rule-color= !c
|
||||||
|
|
||||||
|
=column-rule(!w, !s = "solid", !c = " ")
|
||||||
|
+column-rule-width(!w)
|
||||||
|
+column-rule-style(!s)
|
||||||
|
+column-rule-color(!c)
|
@ -1,6 +1,7 @@
|
|||||||
=inline-block
|
=inline-block
|
||||||
:zoom 1
|
|
||||||
:display inline
|
|
||||||
:display -moz-inline-box
|
:display -moz-inline-box
|
||||||
|
:-moz-box-orient vertical
|
||||||
:display inline-block
|
:display inline-block
|
||||||
:vertical-align top
|
:vertical-align middle
|
||||||
|
:#display inline
|
||||||
|
:#vertical-align auto
|
||||||
|
Loading…
Reference in New Issue
Block a user