update test for pie-clearfix

This commit is contained in:
Chris Eppstein 2011-06-11 23:35:29 -07:00
parent 6ca90dccc3
commit a6a80221ee
4 changed files with 23 additions and 1 deletions

View File

@ -15,3 +15,12 @@
visibility: hidden; }
.pie-clearfix {
display: block; }
.simplified-pie-clearfix {
display: inline-block; }
.simplified-pie-clearfix:after {
content: "";
display: table;
clear: both; }
.simplified-pie-clearfix {
display: block; }

View File

@ -12,6 +12,13 @@
overflow: hidden;
visibility: hidden; }
.simple-pie-clearfix {
*zoom: 1; }
.simple-pie-clearfix:after {
content: "";
display: table;
clear: both; }
p.light {
background-color: #b0201e;
color: black; }

View File

@ -7,5 +7,8 @@ $default-has-layout-approach: block;
}
.pie-clearfix {
@include legacy-pie-clearfix;
}
.simplified-pie-clearfix {
@include pie-clearfix;
}

View File

@ -5,7 +5,10 @@
}
.pie-clearfix {
@include pie-clearfix;
@include legacy-pie-clearfix;
}
.simple-pie-clearfix {
@include pie-clearfix;
}
p.light { @include contrasted(#B0201E); }