fix checkboxes and expander in clear recernt history window
[themes.git] / EarlyBlue / global / textbox.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/* ===== textbox.css ==================================================
6 == Styles used by the XUL textbox element.
7 ======================================================================= */
8
e181d49e
RK
9@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
10@namespace html url("http://www.w3.org/1999/xhtml");
11
74d14f90 12/* ::::: textbox ::::: */
13
14textbox {
15 cursor: text;
ddc494fc
RK
16 margin: 2px 3px;
17 border: 1px inset #CCD0DD;
7862e6ee
RK
18 padding: 1px 0px;
19 -moz-padding-start: 2px;
74d14f90 20 background-color: #FFFFFF;
21 color: #000000;
f2450795 22 min-height: 19px;
74d14f90 23}
24
e181d49e 25html|*.textbox-input,
74d14f90 26html|*.textbox-textarea {
27 margin: 0px !important;
28 border: none !important;
29 padding: 0px !important;
30 background-color: inherit;
31 color: inherit;
32 font: inherit;
33}
34
706c344c
RK
35html|*.textbox-input:-moz-placeholder,
36html|*.textbox-textarea:-moz-placeholder {
37 color: #CCD0DD;
38}
39
e181d49e
RK
40.textbox-input-box menupopup {
41 cursor: default;
42}
43
74d14f90 44/* ..... readonly state ..... */
f6e0a33f 45
74d14f90 46textbox[readonly="true"] {
47 background-color: #CCCCCC;
48 color: #000000;
49}
f6e0a33f 50
74d14f90 51/* ..... disabled state ..... */
f6e0a33f 52
74d14f90 53textbox[disabled="true"] {
54 cursor: default;
55 background-color: #FFFFFF;
56 color: #CCCCCC;
570c53ea 57 border: 1px solid #666699;
1697de53 58}
f6e0a33f 59
74d14f90 60textbox[focused="true"] {
ddc494fc
RK
61 border: 1px solid #6699CC;
62 outline: 1px solid #6699CC;
74d14f90 63}
f6e0a33f 64
74d14f90 65textbox[focused="true"][readonly="true"] {
ddc494fc
RK
66 border: 1px solid #6699CC;
67 outline: none;
74d14f90 68}
f6e0a33f 69
74d14f90 70/* ::::: plain textbox ::::: */
f6e0a33f 71
74d14f90 72textbox.plain {
73 padding: 0px !important;
74 margin: 0px !important;
75 border: none !important;
fb49b432 76 outline: none !important;
7862e6ee 77 background-color: transparent;
37cf043b 78 color: inherit !important;
f2450795 79 min-height: 0px;
e181d49e
RK
80}
81
726e083d
RK
82/* ::::: search textbox ::::: */
83
84.textbox-search-icon {
85 list-style-image: url("chrome://global/skin/icons/search.png");
86 -moz-image-region: rect(0, 16px, 16px, 0);
87}
88
18f5421a
RK
89.textbox-search-icon:-moz-locale-dir(rtl) {
90 -moz-transform: scaleX(-1);
726e083d
RK
91}
92
93.textbox-search-icon[searchbutton]:not([disabled]) {
94 cursor: pointer;
95}
96
97.textbox-search-clear {
98 list-style-image: url("chrome://global/skin/icons/search.png");
18f5421a 99 -moz-image-region: rect(16px, 16px, 32px, 0);
726e083d
RK
100}
101
102.textbox-search-clear:not([disabled]) {
103 cursor: default;
104}
105
e181d49e
RK
106/* ::::: textboxes inside toolbarpaletteitems ::::: */
107
108toolbarpaletteitem > toolbaritem > textbox > .textbox-input-box > html|*.textbox-input {
109 visibility: hidden;
110}