summaryrefslogtreecommitdiffstats
path: root/toolkit/themes/windows/global/popup.css
blob: fd4f7712e7048a2d430b59b05d9629853fd5c78b (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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/* 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 ::::: */

menupopup,
panel {
  border: 1px solid ThreeDShadow;
  padding: 0;
  min-width: 1px;
  background: Menu;
  color: MenuText;
}

menupopup {
  appearance: auto;
  -moz-default-appearance: menupopup;
}

menupopup > menu > menupopup {
 /* align submenus */
  margin-inline-start: -3px;
  margin-top: -3px;
}

panel[type="arrow"] {
  appearance: none;
  background: transparent;
  border: none;
}

panel[type="arrow"][side="top"],
panel[type="arrow"][side="bottom"] {
  margin-inline: -20px;
}

panel[type="arrow"][side="left"],
panel[type="arrow"][side="right"] {
  margin-block: -20px;
}

.panel-arrowcontent {
  padding: var(--arrowpanel-padding);
  color: var(--arrowpanel-color);
  background: var(--arrowpanel-background);
  background-clip: padding-box;
  border: 1px solid var(--arrowpanel-border-color);
  box-shadow: 0 0 4px hsla(0,0%,0%,.2);
  margin: 4px;
}

.panel-arrowcontent > html|slot {
  /* propagate border-radius from arrowcontent to slotted children */
  border-radius: inherit;
}

:host([orient=vertical]) .panel-arrowcontent {
  -moz-box-orient: vertical;
}

%ifdef XP_WIN
@media (-moz-os-version: windows-win7) {
%endif
.panel-arrowcontent {
  border-radius: 4px;
}
%ifdef XP_WIN
}
%endif

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),
:is(panel, menupopup)[side="bottom"]::part(arrow) {
  list-style-image: url("chrome://global/skin/arrow/panelarrow-vertical.svg");
  position: relative;
  margin-inline: 10px;
}

:is(panel, menupopup)[side="top"]::part(arrow) {
  margin-bottom: -5px;
}

:is(panel, menupopup)[side="bottom"]::part(arrow) {
  transform: scaleY(-1);
  margin-top: -5px;
}

:is(panel, menupopup)[side="left"]::part(arrow),
:is(panel, menupopup)[side="right"]::part(arrow) {
  list-style-image: url("chrome://global/skin/arrow/panelarrow-horizontal.svg");
  position: relative;
  margin-block: 10px;
}

:is(panel, menupopup)[side="left"]::part(arrow) {
  margin-right: -5px;
}

:is(panel, menupopup)[side="right"]::part(arrow) {
  transform: scaleX(-1);
  margin-left: -5px;
}

%ifdef XP_WIN
@media (-moz-windows-default-theme) {
  .panel-arrowcontent {
    box-shadow: 0 0 4px hsla(210,4%,10%,.2);
  }
}
%endif

/* rules for popups associated with menulists */

menulist > menupopup {
  appearance: none;
  min-width: 0;
  background-color: Field;
}