Version 1
[yaffs-website] / web / core / modules / system / css / components / resize.module.css
diff --git a/web/core/modules/system/css/components/resize.module.css b/web/core/modules/system/css/components/resize.module.css
new file mode 100644 (file)
index 0000000..d8d4559
--- /dev/null
@@ -0,0 +1,21 @@
+/**
+ * @file
+ * Resizable textareas.
+ */
+
+.resize-none {
+  resize: none;
+}
+.resize-vertical {
+  resize: vertical;
+  min-height: 2em;
+}
+.resize-horizontal {
+  resize: horizontal;
+  max-width: 100%;
+}
+.resize-both {
+  resize: both;
+  max-width: 100%;
+  min-height: 2em;
+}