|
2 | 2 | // Chatbot Main - Message - Loading
|
3 | 3 | // ============================================================================
|
4 | 4 | .pf-chatbot__message-loading {
|
5 |
| - --pf-t--chatbot-message--dots--background--color: var(--pf-t--global--text--color--regular); |
6 |
| - |
7 | 5 | width: 36px;
|
8 | 6 | padding: var(--pf-t--chatbot-message--type--padding);
|
9 |
| - background-color: var(--pf-t--chatbot-message--type--background--color--default); |
| 7 | + background-color: var(--pf-t--global--background--color--tertiary--default); |
10 | 8 | border-radius: var(--pf-t--chatbot-message--type--border--radius);
|
11 | 9 |
|
12 | 10 | &-dots {
|
|
15 | 13 | width: 4px;
|
16 | 14 | height: 4px;
|
17 | 15 | margin-left: var(--pf-t--global--spacer--sm);
|
18 |
| - background-color: var(--pf-t--global--text--color--regular); |
19 | 16 | border-radius: var(--pf-t--global--border--radius--pill);
|
20 |
| - color: var(--pf-t--global--text--color--regular); |
21 | 17 | animation: dot-flashing var(--pf-t--global--motion--duration--2xl) infinite linear alternate;
|
22 | 18 | animation-delay: calc(var(--pf-t--global--motion--duration--2xl) * 0.33333333333);
|
23 | 19 | }
|
|
33 | 29 | width: 4px;
|
34 | 30 | height: 4px;
|
35 | 31 | border-radius: var(--pf-t--global--border--radius--pill);
|
36 |
| - background-color: var(--pf-t--global--text--color--regular); |
37 |
| - color: var(--pf-t--global--text--color--regular); |
38 | 32 | animation: dot-flashing var(--pf-t--global--motion--duration--2xl) infinite alternate;
|
39 | 33 | animation-delay: var(--pf-t--global--motion--delay--none);
|
40 | 34 | }
|
|
43 | 37 | width: 4px;
|
44 | 38 | height: 4px;
|
45 | 39 | border-radius: var(--pf-t--global--border--radius--pill);
|
46 |
| - background-color: var(--pf-t--global--text--color--regular); |
47 |
| - color: var(--pf-t--global--text--color--regular); |
48 | 40 | animation: dot-flashing var(--pf-t--global--motion--duration--2xl) infinite alternate;
|
49 | 41 | animation-delay: calc(var(--pf-t--global--motion--duration--2xl) * 0.66666666666);
|
50 | 42 | }
|
51 | 43 |
|
52 | 44 | @keyframes dot-flashing {
|
53 | 45 | 0% {
|
54 |
| - background-color: var(--pf-t--global--text--color--regular); |
| 46 | + background-color: var(--pf-t--global--background--color--inverse--default); |
55 | 47 | }
|
56 | 48 | 50%,
|
57 | 49 | 100% {
|
58 |
| - background-color: var(--pf-t--chatbot-message--type--background--color--default); |
| 50 | + background-color: rgba(41, 41, 41, 0.25); |
59 | 51 | }
|
60 | 52 | }
|
61 | 53 | }
|
0 commit comments