Mercurial > hg > isophonics-drupal-site
view core/modules/system/css/components/js.module.css @ 14:1fec387a4317
Update Drupal core to 8.5.2 via Composer
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:46:53 +0100 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
/** * @file * Utility classes to assist with Javascript functionality. */ /** * For anything you want to hide on page load when JS is enabled, so * that you can use the JS to control visibility and avoid flicker. */ .js .js-hide { display: none; } /** * For anything you want to show on page load only when JS is enabled. */ .js-show { display: none; } .js .js-show { display: block; }