From: Robert Kaiser Date: Sun, 2 Sep 2012 19:58:37 +0000 (+0200) Subject: fix checkboxes and expander in clear recernt history window X-Git-Tag: EarlyBlue-2.13~10 X-Git-Url: https://git-public.kairo.at/?p=themes.git;a=commitdiff_plain;h=deada4555ff19e9c290596b50bda2ae866ed8c36 fix checkboxes and expander in clear recernt history window --- diff --git a/LCARStrek/browser/sanitizeDialog.css b/LCARStrek/browser/sanitizeDialog.css index 6b9d0b67..caa01f6e 100644 --- a/LCARStrek/browser/sanitizeDialog.css +++ b/LCARStrek/browser/sanitizeDialog.css @@ -68,11 +68,20 @@ list-style-image: url("chrome://global/skin/tree/twisty-open.gif"); } +.expander-up:hover { + list-style-image: url("chrome://global/skin/tree/twisty-open-selected.gif"); +} + .expander-down { list-style-image: url("chrome://global/skin/tree/twisty-closed.gif"); } +.expander-down:hover { + list-style-image: url("chrome://global/skin/tree/twisty-closed-selected.gif"); +} + + /* Make the item list the same width as the warning box */ #itemList { -moz-margin-start: 0; diff --git a/LCARStrek/global/listbox.css b/LCARStrek/global/listbox.css index ba69c04c..50df63b6 100644 --- a/LCARStrek/global/listbox.css +++ b/LCARStrek/global/listbox.css @@ -118,3 +118,15 @@ listheader[sortable="true"]:hover:active { min-height: 12px; background: #000000 no-repeat 50% 50%; } + +.listcell-check[checked="true"] { + background-image: url("chrome://global/skin/checkbox/cbox-check.gif"); +} + +listitem[type="checkbox"]:hover .listcell-check { + border-color: #FFCF00; +} + +listitem[type="checkbox"]:hover .listcell-label { + color: #FFCF00; +}