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

Last change on this file since 38779 was 38779, checked in by davidb, 3 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: 603 bytes
Line 
1/**
2 * @file
3 * Visual styles for animated throbber.
4 *
5 * @see autocomplete.js
6 */
7
8.js input.form-autocomplete {
9 background-image: url(../../../../misc/throbber-inactive.png);
10 background-repeat: no-repeat;
11 background-position: 100% center; /* LTR */
12}
13.js[dir="rtl"] input.form-autocomplete {
14 background-position: 0% center;
15}
16.js input.form-autocomplete.ui-autocomplete-loading {
17 background-image: url(../../../../misc/throbber-active.gif);
18 background-position: 100% center; /* LTR */
19}
20.js[dir="rtl"] input.form-autocomplete.ui-autocomplete-loading {
21 background-position: 0% center;
22}
Note: See TracBrowser for help on using the repository browser.