aboutsummaryrefslogtreecommitdiff
path: root/docs/assets/css/bootstrap.css
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-09-26 08:59:57 -0700
committerMark Otto <[email protected]>2012-09-26 08:59:57 -0700
commit6b578ec8de0865c6c5b3e12c7824037a7d422789 (patch)
treee1086c55e2e89ef5c4ea0a8ac5a5b31c2f93698e /docs/assets/css/bootstrap.css
parentb6ba717b75d4a3985c8fe5997954e07d12d934fe (diff)
downloadbootstrap-6b578ec8de0865c6c5b3e12c7824037a7d422789.tar.xz
bootstrap-6b578ec8de0865c6c5b3e12c7824037a7d422789.zip
move mixins that generate css to utilities.less with different class names, but the same mixins
Diffstat (limited to 'docs/assets/css/bootstrap.css')
-rw-r--r--docs/assets/css/bootstrap.css56
1 files changed, 28 insertions, 28 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index 357b7a410..f39fe4771 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -125,34 +125,6 @@ textarea {
vertical-align: top;
}
-.clearfix:before,
-.clearfix:after {
- display: table;
- line-height: 0;
- content: "";
-}
-
-.clearfix:after {
- clear: both;
-}
-
-.hide-text {
- font: 0/0 a;
- color: transparent;
- text-shadow: none;
- background-color: transparent;
- border: 0;
-}
-
-.input-block-level {
- display: block;
- width: 100%;
- min-height: 30px;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
-}
-
body {
margin: 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
@@ -5703,6 +5675,17 @@ a.badge:hover {
color: inherit;
}
+.clear:before,
+.clear:after {
+ display: table;
+ line-height: 0;
+ content: "";
+}
+
+.clear:after {
+ clear: both;
+}
+
.pull-right {
float: right;
}
@@ -5723,6 +5706,23 @@ a.badge:hover {
visibility: hidden;
}
+.text-hide {
+ font: 0/0 a;
+ color: transparent;
+ text-shadow: none;
+ background-color: transparent;
+ border: 0;
+}
+
.affix {
position: fixed;
}
+
+.control-block-level {
+ display: block;
+ width: 100%;
+ min-height: 30px;
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+}