source: gs3-installations/thewillow/trunk/sites/thewillow/dlcol-chatgpt/iframe-page/dl-chatgpt_files/system-status-counter.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: 761 bytes
Line 
1/**
2 * @file
3 * Styles for the system status counter component.
4 */
5
6.system-status-counter__status-icon {
7 display: inline-block;
8 width: 25px;
9 height: 25px;
10 vertical-align: middle;
11}
12.system-status-counter__status-icon:before {
13 display: block;
14 width: 100%;
15 height: 100%;
16 content: "";
17 background-repeat: no-repeat;
18 background-position: center 2px;
19 background-size: 16px;
20}
21
22.system-status-counter__status-icon--error:before {
23 background-image: url(../../../../misc/icons/e32700/error.svg);
24}
25.system-status-counter__status-icon--warning:before {
26 background-image: url(../../../../misc/icons/e29700/warning.svg);
27}
28.system-status-counter__status-icon--checked:before {
29 background-image: url(../../../../misc/icons/73b355/check.svg);
30}
Note: See TracBrowser for help on using the repository browser.