blob: 0c6c6a99bd034811043e34265d5db8985830e4f5 (
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
|
/* - 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-shared.css");
@namespace html "http://www.w3.org/1999/xhtml";
@namespace xul "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
xul|tabs {
padding-inline: 0;
position: static;
}
xul|menupopup > xul|menuitem::after,
xul|menupopup > xul|menuitem::before {
content: none;
}
xul|menulist > xul|menupopup xul|menu,
xul|menulist > xul|menupopup xul|menuitem {
padding-inline-end: 34px;
}
xul|*.checkbox-icon,
xul|*.radio-icon {
margin-inline-end: 0;
}
xul|*.text-link:-moz-focusring {
box-shadow: none;
}
xul|search-textbox::part(search-sign) {
-moz-context-properties: fill, fill-opacity;
fill: currentColor;
fill-opacity: 0.8;
list-style-image: url(chrome://global/skin/icons/search-textbox.svg);
margin-inline-end: 5px;
}
html|button {
/* XUL button min-width */
min-width: 79px;
}
html|input[type="email"],
html|input[type="tel"],
html|input[type="text"],
html|input[type="password"],
html|input[type="number"],
html|textarea {
margin: 4px;
}
|