vendor/twitter/bootstrap/sass/_utilities.scss in bootstrap-generators-2.3.2 vs vendor/twitter/bootstrap/sass/_utilities.scss in bootstrap-generators-3.0.0
- old
+ new
@@ -1,45 +1,42 @@
//
// Utility classes
// --------------------------------------------------
-// Quick floats
+// Floats
+// -------------------------
+
+.clearfix {
+ @include clearfix();
+}
.pull-right {
- float: right;
+ float: right !important;
}
.pull-left {
- float: left;
+ float: left !important;
}
+
// Toggling content
+// -------------------------
+
.hide {
- display: none;
+ display: none !important;
}
.show {
- display: block;
+ display: block !important;
}
-
-// Visibility
.invisible {
visibility: hidden;
}
-
-// For Affix plugin
-.affix {
- position: fixed;
+.text-hide {
+ @include hide-text();
}
-// Clearing floats
-.clearfix {
- @include clearfix();
-}
-// Accessible yet invisible text
-.hide-text {
- @include hide-text();
-}
+// For Affix plugin
+// -------------------------
-// Uses box-sizing mixin, so must be defined here
-.input-block-level {
- @include input-block-level();
+.affix {
+ position: fixed;
}