source: gs3-installations/thewillow/trunk/sites/thewillow/dlcol-chatgpt/iframe-page/dl-chatgpt_files/js.module.css@ 38779

Last change on this file since 38779 was 38779, checked in by davidb, 4 months ago

Files that need to be moved to <gsdl3srchome>/web to provide a static web page example using an iframe to embedd the React/NextJS based chatbot

File size: 402 bytes
Line 
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}
Note: See TracBrowser for help on using the repository browser.