From: Robert Kaiser Date: Thu, 7 Feb 2008 16:07:27 +0000 (+0100) Subject: feed detection and some other trunk work X-Git-Tag: EarlyBlue-2.0a1~10 X-Git-Url: https://git-public.kairo.at/?p=themes.git;a=commitdiff_plain;h=6082be9443900156de6457a2839c8a66fdecc420;hp=559908da1444029d499c01dda129fd9dba8e2e64 feed detection and some other trunk work --- diff --git a/EarlyBlue/messenger/accountCentral.css b/EarlyBlue/messenger/accountCentral.css index 5fbc8f13..6e4e1186 100644 --- a/EarlyBlue/messenger/accountCentral.css +++ b/EarlyBlue/messenger/accountCentral.css @@ -91,7 +91,7 @@ separator.thin { .acctCentralLinkText { cursor: pointer; color: #336699; - text-decoration: normal; + text-decoration: none; } .acctCentralLinkText:hover { diff --git a/EarlyBlue/mozapps/passwordmgr/key.png b/EarlyBlue/mozapps/passwordmgr/key.png new file mode 100644 index 00000000..85246a34 Binary files /dev/null and b/EarlyBlue/mozapps/passwordmgr/key.png differ diff --git a/EarlyBlue/navigator/linkButtons/feeds.png b/EarlyBlue/navigator/linkButtons/feeds.png new file mode 100644 index 00000000..dc65e501 Binary files /dev/null and b/EarlyBlue/navigator/linkButtons/feeds.png differ diff --git a/EarlyBlue/navigator/linkToolbar.css b/EarlyBlue/navigator/linkToolbar.css index f7eac85e..8b81d5c0 100644 --- a/EarlyBlue/navigator/linkToolbar.css +++ b/EarlyBlue/navigator/linkToolbar.css @@ -87,9 +87,18 @@ } #link-last { - list-style-image : url("chrome://navigator/skin/linkButtons/last.gif"); + list-style-image: url("chrome://navigator/skin/linkButtons/last.gif"); } #link-last[disabled="true"] { list-style-image: url("chrome://navigator/skin/linkButtons/last-disabled.gif") !important; } + +#link-feed { + list-style-image: url("chrome://navigator/skin/linkButtons/feeds.png") !important; + -moz-image-region: rect(0px 32px 16px 16px); +} + +#link-feed[disabled="true"] { + -moz-image-region: rect(32px 32px 48px 16px); +} diff --git a/EarlyBlue/navigator/navigator.css b/EarlyBlue/navigator/navigator.css index 0a9e9170..6c9a13ff 100644 --- a/EarlyBlue/navigator/navigator.css +++ b/EarlyBlue/navigator/navigator.css @@ -291,3 +291,27 @@ toolbar[toolbarmode="small"] > toolbargrippy { #bookmarks-chevron > .toolbarbutton-menu-dropmarker { display: none; } + +/* ::::: feeds ::::: */ + +#feedsMenu { + list-style-image: url("chrome://navigator/skin/linkButtons/feeds.png") !important; + -moz-image-region: rect(0px 16px 16px 0px); +} + +#feedsMenu[disabled="true"] { + -moz-image-region: rect(32px 16px 48px 0px); +} + +#feedsButton { + list-style-image: url("chrome://navigator/skin/linkButtons/feeds.png"); + -moz-image-region: rect(0px 32px 16px 16px); +} + +#feedsButton:hover { + -moz-image-region: rect(16px 32px 32px 16px); +} + +#feedsButton:hover:active { + -moz-image-region: rect(48px 32px 64px 16px); +}