resize.module.css
Same filename in this branch
Same filename and directory in other branches
- 8.9.x core/themes/stable/css/system/components/resize.module.css
- 8.9.x core/modules/system/css/components/resize.module.css
- 10 core/themes/stable9/css/system/components/resize.module.css
- 10 core/modules/system/css/components/resize.module.css
- 11.x core/themes/stable9/css/system/components/resize.module.css
- 11.x core/modules/system/css/components/resize.module.css
- 11.x core/misc/components/resize.module.css
- 11.x core/themes/stable9/css/core/components/resize.module.css
Resizable textareas.
File
-
core/
modules/ system/ css/ components/ resize.module.css
View source
- /**
- * @file
- * Resizable textareas.
- */
-
- .resize-none {
- resize: none;
- }
- .resize-vertical {
- min-height: 2em;
- resize: vertical;
- }
- .resize-horizontal {
- max-width: 100%;
- resize: horizontal;
- }
- .resize-both {
- max-width: 100%;
- min-height: 2em;
- resize: both;
- }
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.