summaryrefslogtreecommitdiff
path: root/bootstrap/less/mixins/resize.less
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap/less/mixins/resize.less')
-rwxr-xr-xbootstrap/less/mixins/resize.less6
1 files changed, 6 insertions, 0 deletions
diff --git a/bootstrap/less/mixins/resize.less b/bootstrap/less/mixins/resize.less
new file mode 100755
index 0000000..c851328
--- /dev/null
+++ b/bootstrap/less/mixins/resize.less
@@ -0,0 +1,6 @@
+// Resize anything
+
+.resizable(@direction) {
+ overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
+ resize: @direction; // Options: horizontal, vertical, both
+}