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:
+23
-3
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user