2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-20 20:00:36 +03:00

move mixins that generate css to utilities.less with different class names, but the same mixins

This commit is contained in:
Mark Otto
2012-09-26 08:59:57 -07:00
parent b6ba717b75
commit 6b578ec8de
4 changed files with 54 additions and 62 deletions
+23 -3
View File
@@ -3,7 +3,12 @@
// --------------------------------------------------
// Quick floats
// Floats
// -------------------------
.clear {
.clearfix();
}
.pull-right {
float: right;
}
@@ -11,20 +16,35 @@
float: left;
}
// Toggling content
// -------------------------
.hide {
display: none;
}
.show {
display: block;
}
// Visibility
.invisible {
visibility: hidden;
}
.text-hide {
.hide-text();
}
// For Affix plugin
// -------------------------
.affix {
position: fixed;
}
// Forms
// -------------------------
.control-block-level {
.input-block-level();
}