some corrections and finishing touches to that LCARStrek works well for Firefox 55...
[themes.git] / EarlyBlue / global / menulist.css
CommitLineData
9099c61d
RK
1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
128000f4 4
74d14f90 5/* ===== menulist.css ===================================================
6 == Styles used by the XUL menulist element.
7 ======================================================================= */
8
df8c26c4
RK
9@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
10@namespace html url("http://www.w3.org/1999/xhtml"); /* namespace for HTML elements */
11
74d14f90 12/* :::::::::: menulist :::::::::: */
13
14menulist {
15 margin: 2px 4px;
16 border: 1px inset #CCD0DD;
17 background-color: #CCCCCC;
18 color: #000000;
a064a540 19 text-shadow: none;
74d14f90 20}
21
22.menulist-label-box {
23 -moz-box-align: center;
24 -moz-box-pack: center;
25/* margin: 1px; */
74d14f90 26 color: inherit;
27}
28
29.menulist-label {
30 margin: 1px 3px !important;
31}
32
76983f4c 33.menulist-description {
34 font-style: italic;
35 color: #808080;
dae45075 36 margin-inline-start: 1ex !important;
76983f4c 37}
38
e82e1bf4 39menulist:focus > .menulist-label-box {
df8c26c4
RK
40 background-color: #336699;
41 color: #000000;
42}
43
e82e1bf4 44menulist:-moz-focusring:not([open="true"]) > .menulist-label-box {
024ec655
RK
45/* border: 1px dotted #808080; */
46}
47
df8c26c4
RK
48menulist[disabled="true"] {
49 background-color: #CCCCCC;
50 color: #999999;
51}
52
74d14f90 53/* ..... dropmarker ..... */
54
55.menulist-dropmarker {
74d14f90 56 background-color: #CCCCCC;
74d14f90 57}
58
74d14f90 59menulist[disabled="true"]:hover:active > .menulist-dropmarker {
60 padding: 1px;
61}
62
df8c26c4 63menulist:hover:active > .menulist-dropmarker,
e181d49e 64menulist[open="true"] > .menulist-dropmarker {
74d14f90 65 border: 1px inset #CCD0DD;
02920d2b
RK
66 padding-top: 2px;
67 padding-bottom: 0px;
dae45075
RK
68 padding-inline-start: 2px;
69 padding-inline-end: 0px;
74d14f90 70}
71
df8c26c4 72/* ::::: editable menulists ::::: */
74d14f90 73
df8c26c4 74menulist[editable="true"] {
74d14f90 75 color: #000000;
76}
77
74d14f90 78.menulist-editable-box {
79 background-color: #FFFFFF;
76983f4c 80 padding: 2px;
74d14f90 81}
82
83html|*.menulist-editable-input {
84 margin: 0px !important;
85 border: none !important;
86 padding: 0px !important;
0c5f9076
RK
87 background-color: inherit;
88 color: inherit;
74d14f90 89 font: inherit;
90}