Commit | Line | Data |
---|---|---|
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/. */ | |
351107c9 | 4 | |
5 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
6 | ||
7 | /** | |
8 | * Link toolbar items | |
9 | **/ | |
10 | ||
b1eaa419 | 11 | #link-top { |
12 | list-style-image: url("chrome://navigator/skin/linkButtons/top.gif"); | |
351107c9 | 13 | } |
14 | ||
15 | #link-top:hover, | |
b1eaa419 | 16 | #link-top:hover:active { |
17 | list-style-image: url("chrome://navigator/skin/linkButtons/top-hover.gif"); | |
351107c9 | 18 | } |
19 | ||
b1eaa419 | 20 | #link-top[disabled="true"] { |
21 | list-style-image: url("chrome://navigator/skin/linkButtons/top-disabled.gif") !important; | |
351107c9 | 22 | } |
23 | ||
b1eaa419 | 24 | #link-up { |
25 | list-style-image: url("chrome://navigator/skin/linkButtons/up.gif"); | |
351107c9 | 26 | } |
27 | ||
28 | #link-up:hover, | |
b1eaa419 | 29 | #link-up:hover:active { |
30 | list-style-image: url("chrome://navigator/skin/linkButtons/up-hover.gif"); | |
351107c9 | 31 | } |
32 | ||
b1eaa419 | 33 | #link-up[disabled="true"] { |
34 | list-style-image: url("chrome://navigator/skin/linkButtons/up-disabled.gif") !important; | |
351107c9 | 35 | } |
36 | ||
b1eaa419 | 37 | #link-first { |
38 | list-style-image: url("chrome://navigator/skin/linkButtons/first.gif"); | |
351107c9 | 39 | } |
40 | ||
41 | #link-first:hover, | |
b1eaa419 | 42 | #link-first:hover:active { |
43 | list-style-image: url("chrome://navigator/skin/linkButtons/first-hover.gif"); | |
351107c9 | 44 | } |
45 | ||
b1eaa419 | 46 | #link-first[disabled="true"] { |
47 | list-style-image: url("chrome://navigator/skin/linkButtons/first-disabled.gif") !important; | |
351107c9 | 48 | } |
49 | ||
b1eaa419 | 50 | #link-prev { |
51 | list-style-image: url("chrome://navigator/skin/linkButtons/previous.gif"); | |
351107c9 | 52 | } |
53 | ||
54 | #link-prev:hover, | |
b1eaa419 | 55 | #link-prev:hover:active { |
56 | list-style-image: url("chrome://navigator/skin/linkButtons/previous-hover.gif"); | |
351107c9 | 57 | } |
58 | ||
b1eaa419 | 59 | #link-prev[disabled="true"] { |
60 | list-style-image: url("chrome://navigator/skin/linkButtons/previous-disabled.gif") !important; | |
351107c9 | 61 | } |
62 | ||
b1eaa419 | 63 | #link-next { |
64 | list-style-image: url("chrome://navigator/skin/linkButtons/next.gif"); | |
351107c9 | 65 | } |
66 | ||
67 | #link-next:hover, | |
b1eaa419 | 68 | #link-next:hover:active { |
69 | list-style-image: url("chrome://navigator/skin/linkButtons/next-hover.gif"); | |
351107c9 | 70 | } |
71 | ||
b1eaa419 | 72 | #link-next[disabled="true"] { |
73 | list-style-image: url("chrome://navigator/skin/linkButtons/next-disabled.gif") !important; | |
351107c9 | 74 | } |
75 | ||
b1eaa419 | 76 | #link-last { |
77 | list-style-image: url("chrome://navigator/skin/linkButtons/last.gif"); | |
351107c9 | 78 | } |
79 | ||
80 | #link-last:hover, | |
b1eaa419 | 81 | #link-last:hover:active { |
82 | list-style-image: url("chrome://navigator/skin/linkButtons/last-hover.gif"); | |
83 | } | |
84 | ||
85 | #link-last[disabled="true"] { | |
86 | list-style-image: url("chrome://navigator/skin/linkButtons/last-disabled.gif") !important; | |
351107c9 | 87 | } |
e10e7add RK |
88 | |
89 | #link-feed { | |
90 | list-style-image: url("chrome://navigator/skin/linkButtons/feeds.png") !important; | |
91 | -moz-image-region: rect(0px 32px 16px 16px); | |
92 | } | |
93 | ||
94 | #link-feed[disabled="true"] { | |
95 | -moz-image-region: rect(32px 32px 48px 16px); | |
96 | } |