source: gs3-installations/thewillow/trunk/sites/thewillow/dlcol-chatgpt/iframe-page/dl-chatgpt_files/ajax-progress.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: 1.0 KB
Line 
1/**
2 * @file
3 * Throbber.
4 */
5
6.ajax-progress {
7 display: inline-block;
8 padding: 1px 5px 2px 5px;
9}
10[dir="rtl"] .ajax-progress {
11 float: right;
12}
13.ajax-progress-throbber .throbber {
14 display: inline;
15 padding: 1px 6px 2px;
16 background: transparent url(../../../../misc/throbber-active.gif) no-repeat 0 center;
17}
18.ajax-progress-throbber .message {
19 display: inline;
20 padding: 1px 5px 2px;
21}
22tr .ajax-progress-throbber .throbber {
23 margin: 0 2px;
24}
25.ajax-progress-bar {
26 width: 16em;
27}
28
29/* Full screen throbber */
30.ajax-progress-fullscreen {
31 position: fixed;
32 z-index: 1000;
33 top: 48.5%;
34 /* Can't do center:50% middle: 50%, so approximate it for a typical window size. */
35 left: 49%; /* LTR */
36 width: 24px;
37 height: 24px;
38 padding: 4px;
39 opacity: 0.9;
40 border-radius: 7px;
41 background-color: #232323;
42 background-image: url(../../../../misc/loading-small.gif);
43 background-repeat: no-repeat;
44 background-position: center center;
45}
46[dir="rtl"] .ajax-progress-fullscreen {
47 right: 49%;
48 left: auto;
49}
Note: See TracBrowser for help on using the repository browser.