Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
fat committed Aug 20, 2011
1 parent b342c4c commit 73f1bcf
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 36 deletions.
53 changes: 28 additions & 25 deletions bootstrap-1.0.0.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
* Date: Fri Aug 19 19:51:25 PDT 2011
* Date: Fri Aug 19 20:19:39 PDT 2011
*/
/* Reset.less
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
Expand Down Expand Up @@ -98,12 +98,12 @@ aside {
.clearfix {
zoom: 1;
}
.clearfix:before, .clearfix:after {
display: table;
content: "";
}
.clearfix:after {
display: block;
visibility: hidden;
height: 0;
clear: both;
content: ".";
}
.center-block {
display: block;
Expand All @@ -114,12 +114,12 @@ aside {
margin: 0 auto;
zoom: 1;
}
.container:before, .container:after {
display: table;
content: "";
}
.container:after {
display: block;
visibility: hidden;
height: 0;
clear: both;
content: ".";
}
/*
* Scaffolding
Expand All @@ -128,12 +128,12 @@ aside {
.row {
zoom: 1;
}
.row:before, .row:after {
display: table;
content: "";
}
.row:after {
display: block;
visibility: hidden;
height: 0;
clear: both;
content: ".";
}
.row .span1 {
float: left;
Expand Down Expand Up @@ -355,12 +355,12 @@ div.container-fluid {
padding: 20px;
zoom: 1;
}
div.container-fluid:before, div.container-fluid:after {
display: table;
content: "";
}
div.container-fluid:after {
display: block;
visibility: hidden;
height: 0;
clear: both;
content: ".";
}
div.container-fluid div.sidebar {
float: left;
Expand Down Expand Up @@ -1448,12 +1448,15 @@ ul.tabs, ul.pills {
padding: 0;
zoom: 1;
}
ul.tabs:before,
ul.pills:before,
ul.tabs:after,
ul.pills:after {
display: table;
content: "";
}
ul.tabs:after, ul.pills:after {
display: block;
visibility: hidden;
height: 0;
clear: both;
content: ".";
}
ul.tabs li, ul.pills li {
display: inline;
Expand Down Expand Up @@ -1609,12 +1612,12 @@ div.modal .modal-footer {
box-shadow: inset 0 1px 0 #ffffff;
zoom: 1;
}
div.modal .modal-footer:before, div.modal .modal-footer:after {
display: table;
content: "";
}
div.modal .modal-footer:after {
display: block;
visibility: hidden;
height: 0;
clear: both;
content: ".";
}
div.modal .modal-footer .btn {
float: right;
Expand Down
18 changes: 12 additions & 6 deletions bootstrap-1.0.0.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions lib/preboot.less
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@
// MIXINS
// ------

// Clearfix for clearing floats like a boss
// Clearfix for clearing floats like a boss h5bp.com/q
.clearfix {
zoom: 1;
&:before, &:after {
display: table;
content: "";
}
&:after {
display: block;
visibility: hidden;
height: 0;
clear: both;
content: ".";
}
}

Expand Down

0 comments on commit 73f1bcf

Please sign in to comment.