blob: 0888d8647b5d38fc88943e8ec72338ff20d2de76 (
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
110
111
112
113
114
115
116
117
|
/* 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");
@namespace html url("http://www.w3.org/1999/xhtml");
menupopup,
panel {
appearance: auto;
-moz-default-appearance: menupopup;
-moz-font-smoothing-background-color: -moz-mac-menupopup;
background-color: Menu;
color: MenuText;
}
menupopup > menu > menupopup {
margin-top: -4px;
}
.menupopup-arrowscrollbox {
padding: 4px 0;
}
panel[titlebar] {
appearance: none; /* to disable rounded corners */
}
panel[type="arrow"] {
appearance: none;
background: transparent;
}
panel[type="arrow"][side="top"],
panel[type="arrow"][side="bottom"] {
margin-inline: -25px;
}
panel[type="arrow"][side="left"],
panel[type="arrow"][side="right"] {
margin-block: -25px;
}
.panel-arrowcontent {
appearance: none;
-moz-font-smoothing-background-color: var(--arrowpanel-background);
background: var(--arrowpanel-background);
border-radius: var(--arrowpanel-border-radius);
box-shadow: 0 0 0 1px var(--arrowpanel-border-color);
color: var(--arrowpanel-color);
border: none;
padding: var(--arrowpanel-padding);
margin: 1px;
}
.panel-arrowcontent > html|slot {
/* propagate border-radius from arrowcontent to slotted children */
border-radius: inherit;
}
:host([orient=vertical]) .panel-arrowcontent {
-moz-box-orient: vertical;
}
panel[type="arrow"].panel-no-padding::part(arrowcontent) {
padding: 0;
overflow: hidden; /* Don't let panel content overflow the border-radius */
}
:is(panel, menupopup)::part(arrow) {
-moz-context-properties: fill, stroke;
fill: var(--arrowpanel-background);
stroke: var(--arrowpanel-border-color);
}
:is(panel, menupopup)[side="top"]::part(arrow) {
list-style-image: url("chrome://global/skin/arrow/panelarrow-vertical.svg");
margin-inline: 16px;
margin-bottom: -1px;
}
:is(panel, menupopup)[side="bottom"]::part(arrow) {
list-style-image: url("chrome://global/skin/arrow/panelarrow-vertical.svg");
-moz-transform: scaleY(-1);
margin-inline: 16px;
margin-top: -1px;
}
:is(panel, menupopup)[side="left"]::part(arrow) {
list-style-image: url("chrome://global/skin/arrow/panelarrow-horizontal.svg");
margin-block: 16px;
margin-right: -1px;
}
:is(panel, menupopup)[side="right"]::part(arrow) {
list-style-image: url("chrome://global/skin/arrow/panelarrow-horizontal.svg");
transform: scaleX(-1);
margin-block: 16px;
margin-left: -1px;
}
/* rules for popups associated with menulists */
menulist > menupopup {
min-width: 0;
padding: 4px 0;
}
menulist > menupopup:not([position]) {
margin-inline-start: -13px;
margin-top: -2px;
}
menupopup[customoptionstyling="true"] {
appearance: none;
padding-block: 0;
}
|