resize.module.css in Editor 7
Resizable textareas.
File
css/components/resize.module.cssView source
- /**
- * @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;
- }