blob: 5d389c4d0e61196a0e768b6902c74fbbcded3a70 (
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
/* 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/. */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
.popup-notification-header-container,
.popup-notification-footer-container {
display: flex;
max-width: calc(2 * var(--arrowpanel-padding) + 32px + 4px + 25em);
}
.popup-notification-body-container {
padding: var(--arrowpanel-padding);
}
.popup-notification-icon {
width: 32px;
height: 32px;
margin-inline-end: var(--arrowpanel-padding);
}
.popup-notification-body {
width: 25em;
}
.popup-notification-closebutton {
margin-inline-end: -8px;
margin-top: -8px;
}
.popup-notification-origin:not([value]),
.popup-notification-learnmore-link:not([href]) {
display: none;
}
.popup-notification-origin {
margin-bottom: .3em !important;
}
.popup-notification-hint-text {
opacity: 0.6;
margin-top: .5em !important;
}
.popup-notification-hint-text:empty {
display: none;
}
.popup-notification-learnmore-link {
margin-top: .5em !important;
}
.popup-notification-button-container {
display: flex;
}
.popup-notification-button-container > toolbarseparator {
appearance: none;
border: 0;
border-left: 1px solid var(--panel-separator-color);
margin: 7px 0 7px;
min-width: 0;
}
.popup-notification-button-container:hover > toolbarseparator {
margin: 0;
}
.popup-notification-button {
flex: 1;
}
.popup-notification-primary-button {
flex: 0 50%;
}
.popup-notification-secondary-button[hidden="true"] ~ .popup-notification-primary-button {
flex: 1;
}
.popup-notification-dropmarker {
flex: none;
padding: 0 15px !important;
}
.popup-notification-dropmarker > .button-box > hbox {
display: none;
}
.popup-notification-dropmarker > .button-box > .button-menu-dropmarker {
/* This is to override the linux !important */
appearance: none !important;
display: -moz-box;
padding: 0;
margin: 0;
}
.popup-notification-dropmarker > .button-box > .button-menu-dropmarker::part(icon) {
width: 16px;
height: 16px;
list-style-image: url(chrome://global/skin/icons/arrow-dropdown-16.svg);
-moz-context-properties: fill;
fill: currentColor;
}
.popup-notification-warning {
color: #d74345;
}
|