Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / themes / stable / css / system / components / js.module.css
1 /**
2  * @file
3  * Utility classes to assist with Javascript functionality.
4  */
5
6 /**
7  * For anything you want to hide on page load when JS is enabled, so
8  * that you can use the JS to control visibility and avoid flicker.
9  */
10 .js .js-hide {
11   display: none;
12 }
13
14 /**
15  * For anything you want to show on page load only when JS is enabled.
16  */
17 .js-show {
18   display: none;
19 }
20 .js .js-show {
21   display: block;
22 }