blob: f88b18be454e9306d75f96837093a40f7335c673 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
@import url("chrome://global/skin/in-content/common.css");
:host {
display: block;
border-radius: 4px;
}
#message-bar-container {
display: flex;
flex-direction: column;
gap: 4px;
padding: 0;
margin: 0;
}
:host([type="stale"]) #message-bar-container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
column-gap: 8px;
> span {
display: flex;
flex-direction: column;
align-self: center;
}
}
button {
margin-inline-start: 0;
}
message-bar::part(container) {
align-items: start;
padding: 0.5rem 0.75rem;
gap: 0.75rem;
}
message-bar::part(icon) {
padding: 0;
}
:host([type=analysis-in-progress]) message-bar::part(icon),
:host([type=reanalysis-in-progress]) message-bar::part(icon) {
border: 1px solid var(--icon-color);
border-radius: 50%;
}
:host([type=analysis-in-progress]) message-bar::part(icon)::after,
:host([type=reanalysis-in-progress]) message-bar::part(icon)::after {
--message-bar-icon-url: conic-gradient(var(--icon-color-information) var(--analysis-progress-pcent, 0%), transparent var(--analysis-progress-pcent, 0%));
border-radius: 50%;
margin-block: 1px 0;
margin-inline: 1px 0;
width: calc(var(--icon-size) - 2px);
height: calc(var(--icon-size) - 2px);
}
:host([type=reanalysis-in-progress]) message-bar::part(container),
:host([type=stale]) message-bar::part(container) {
align-items: center;
background-color: transparent;
padding: 0;
}
:host([type=thank-you-for-feedback]) message-bar::part(icon) {
--message-bar-icon-url: url("chrome://global/skin/icons/check-filled.svg");
}
:host([type=thank-you-for-feedback]) message-bar::part(container) {
text-align: start;
align-items: center;
gap: 12px;
}
|