css3 and inline-block patches

This commit is contained in:
Eric Meyer 2009-08-25 21:06:59 -06:00 committed by Chris Eppstein
parent 2eba93858b
commit 6870d21814
5 changed files with 70 additions and 4 deletions

View File

@ -1,3 +1,6 @@
@import css3/border_radius.sass
@import css3/inline_block.sass
@import css3/opacity.sass
@import css3/box_shadow.sass
@import css3/columns.sass
@import css3/box_sizing.sass

View File

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

View File

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

View File

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

View File

@ -1,6 +1,7 @@
=inline-block
:zoom 1
:display inline
=inline-block
:display -moz-inline-box
:-moz-box-orient vertical
:display inline-block
:vertical-align top
:vertical-align middle
:#display inline
:#vertical-align auto