update both themes for toolkit winstripe changes in Mozilla 21 cycle
[themes.git] / EarlyBlue / global / findBar.css
CommitLineData
df8c26c4
RK
1@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
2
56029caf 3.findbar-closebutton {
df8c26c4
RK
4 list-style-image: url("chrome://global/skin/icons/close-button.gif");
5}
6
7findbar {
8 border-top: 1px solid #666699;
9 border-bottom: 1px solid transparent;
10 min-width: 1px;
a6c8d0f5
RK
11 transition-property: margin-bottom, opacity, visibility;
12 transition-duration: 150ms, 150ms, 0s;
13 transition-timing-function: ease-in-out, ease-in-out, linear;
14}
15
16findbar[hidden] {
17 /* Override display:none to make the transition work. */
18 display: -moz-box;
19 visibility: collapse;
20 margin-bottom: -1em;
21 opacity: 0;
22 transition-delay: 0s, 0s, 150ms;
df8c26c4
RK
23}
24
25/* find-next button */
26
56029caf 27.findbar-find-next {
df8c26c4
RK
28 list-style-image: url("chrome://global/skin/icons/find.png");
29 -moz-image-region: rect(0px 16px 16px 0px);
df8c26c4
RK
30}
31
0c8ed027
RK
32.findbar-find-next[disabled="true"] {
33 -moz-image-region: rect(16px 16px 32px 0px);
34}
35
df8c26c4
RK
36/* find-previous button */
37
56029caf 38.findbar-find-previous {
df8c26c4
RK
39 list-style-image: url("chrome://global/skin/icons/find.png");
40 -moz-image-region: rect(0px 32px 16px 16px);
df8c26c4
RK
41}
42
0c8ed027
RK
43.findbar-find-previous[disabled="true"] {
44 -moz-image-region: rect(16px 32px 32px 16px);
45}
46
df8c26c4
RK
47/* highlight button */
48
56029caf 49.findbar-highlight {
df8c26c4
RK
50 list-style-image: url("chrome://global/skin/icons/find.png");
51 -moz-image-region: rect(0px 48px 16px 32px);
df8c26c4
RK
52}
53
0c8ed027
RK
54.findbar-higlight[disabled="true"] {
55 -moz-image-region: rect(16px 48px 32px 32px);
56}
57
56029caf 58.find-status-icon {
df8c26c4
RK
59 list-style-image: none;
60 margin-top: 0px;
61 margin-bottom: 0px;
62 -moz-margin-start: 12px;
63 -moz-margin-end: 0px;
64 width: 16px;
65 height: 16px;
66}
67
56029caf 68.findbar-find-status {
18f5421a
RK
69 margin: 0 !important;
70 -moz-margin-start: 3px !important;
71 padding: 2px !important;
df8c26c4
RK
72}
73
56029caf 74.find-status-icon[status="notfound"] {
f128e38f 75 list-style-image: url("chrome://global/skin/icons/information-16.png");
df8c26c4
RK
76}
77
56029caf 78.findbar-textbox[status="notfound"] {
569543b3 79 box-shadow: 0 0 0 1em #FFC0C0 inset;
df8c26c4
RK
80 color: #000000;
81}
82
18f5421a 83.findbar-textbox[flash="true"] {
569543b3 84 box-shadow: 0 0 0 1em #FFFFC0 inset;
18f5421a 85 color: #000000;
df8c26c4
RK
86}
87
56029caf 88.find-status-icon[status="wrapped"] {
df8c26c4 89 list-style-image: url("chrome://global/skin/icons/wrap.png");
df8c26c4 90}
a7145e95
RK
91
92.find-status-icon[status="pending"] {
93 list-style-image: url("chrome://global/skin/icons/loading.gif");
94}