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