summaryrefslogtreecommitdiff
path: root/bower_components/bootstrap/less/utilities.less
diff options
context:
space:
mode:
Diffstat (limited to 'bower_components/bootstrap/less/utilities.less')
-rw-r--r--bower_components/bootstrap/less/utilities.less42
1 files changed, 42 insertions, 0 deletions
diff --git a/bower_components/bootstrap/less/utilities.less b/bower_components/bootstrap/less/utilities.less
new file mode 100644
index 00000000..d296b32c
--- /dev/null
+++ b/bower_components/bootstrap/less/utilities.less
@@ -0,0 +1,42 @@
+//
+// Utility classes
+// --------------------------------------------------
+
+
+// Floats
+// -------------------------
+
+.clearfix {
+ .clearfix();
+}
+.pull-right {
+ float: right;
+}
+.pull-left {
+ float: left;
+}
+
+
+// Toggling content
+// -------------------------
+
+.hide {
+ display: none !important;
+}
+.show {
+ display: block !important;
+}
+.invisible {
+ visibility: hidden;
+}
+.text-hide {
+ .hide-text();
+}
+
+
+// For Affix plugin
+// -------------------------
+
+.affix {
+ position: fixed;
+}