Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / themes / stable / css / system / components / resize.module.css
1 /**
2  * @file
3  * Resizable textareas.
4  */
5
6 .resize-none {
7   resize: none;
8 }
9 .resize-vertical {
10   resize: vertical;
11   min-height: 2em;
12 }
13 .resize-horizontal {
14   resize: horizontal;
15   max-width: 100%;
16 }
17 .resize-both {
18   resize: both;
19   max-width: 100%;
20   min-height: 2em;
21 }