resize.module.css

Same filename in this branch
  1. 9 core/themes/stable9/css/system/components/resize.module.css
  2. 9 core/modules/system/css/components/resize.module.css
Same filename and directory in other branches
  1. 8.9.x core/themes/stable/css/system/components/resize.module.css
  2. 8.9.x core/modules/system/css/components/resize.module.css
  3. 10 core/themes/stable9/css/system/components/resize.module.css
  4. 10 core/modules/system/css/components/resize.module.css
  5. 11.x core/themes/stable9/css/system/components/resize.module.css
  6. 11.x core/modules/system/css/components/resize.module.css
  7. 11.x core/misc/components/resize.module.css
  8. 11.x core/themes/stable9/css/core/components/resize.module.css

Resizable textareas.

File

core/themes/stable/css/system/components/resize.module.css

View source
  1. /**
  2. * @file
  3. * Resizable textareas.
  4. */
  5. .resize-none {
  6. resize: none;
  7. }
  8. .resize-vertical {
  9. min-height: 2em;
  10. resize: vertical;
  11. }
  12. .resize-horizontal {
  13. max-width: 100%;
  14. resize: horizontal;
  15. }
  16. .resize-both {
  17. max-width: 100%;
  18. min-height: 2em;
  19. resize: both;
  20. }

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.