Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

resize.module.css

Same filename in this branch
  1. 11.1.x core/themes/stable9/css/system/components/resize.module.css

Resizable textareas.

File

core/modules/system/css/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. }
RSS feed
Powered by Drupal