From 726e083d383785788bf5cd6e5d087aabcb8a9fae Mon Sep 17 00:00:00 2001 From: Robert Kaiser Date: Sun, 21 Sep 2008 04:40:50 +0200 Subject: [PATCH] sync with changes up to http://hg.mozilla.org/mozilla-central/rev/03de2d980072 --- EarlyBlue/global/formatting.css | 5 +--- EarlyBlue/global/icons/search.png | Bin 0 -> 295 bytes EarlyBlue/global/scrollbox.css | 4 ++-- EarlyBlue/global/textbox.css | 24 ++++++++++++++++++++ EarlyBlue/global/tree.css | 6 ++--- EarlyBlue/mozapps/downloads/downloads.css | 2 +- EarlyBlue/mozapps/extensions/extensions.css | 3 ++- 7 files changed, 32 insertions(+), 12 deletions(-) create mode 100644 EarlyBlue/global/icons/search.png diff --git a/EarlyBlue/global/formatting.css b/EarlyBlue/global/formatting.css index c7e652da..af977768 100644 --- a/EarlyBlue/global/formatting.css +++ b/EarlyBlue/global/formatting.css @@ -196,6 +196,7 @@ label { .text-link { color: blue; text-decoration: underline; + cursor: pointer; } .text-link:focus { @@ -204,10 +205,6 @@ label { outline: 1px dotted; } -.text-link:hover { - cursor: pointer; -} - .text-link:hover:active { color: red; } diff --git a/EarlyBlue/global/icons/search.png b/EarlyBlue/global/icons/search.png new file mode 100644 index 0000000000000000000000000000000000000000..7616ae9a69739970dbb05fc5f86af9443db8f64c GIT binary patch literal 295 zcmeAS@N?(olHy`uVBq!ia0vp^0zhoQ!3HEH;(vt$DaPU;cPEB*=VV?2Ic!PZ?k)`f zL2$v|<&%LToCO|{#S9GG!XV7ZFl&wkP>{XE)7O>#2B#>Ks+jv(hi5>c<(@8%As)xy zhC1>!DDWijIcfe;@DSf;5e-!;F{GgKBpg69^M`=b-q@gV?W5EJ40EK z2T=I5S(~9rMKgmSy9$uw@nT4EMXgNu!`(q&RBeteZ}txrjmc5 z@)@7)|Jz)6RzI&JPU!O90}~yBuPZkm4^wKqz2kgGYv8-%yYKln9SGXQq1JljX;kpd l%UTVl68Bma?S4eZG_NnaegEwFNT8D$JYD@<);T3K0RR{vaq$2E literal 0 HcmV?d00001 diff --git a/EarlyBlue/global/scrollbox.css b/EarlyBlue/global/scrollbox.css index a1414fbe..63dc7ad2 100644 --- a/EarlyBlue/global/scrollbox.css +++ b/EarlyBlue/global/scrollbox.css @@ -39,7 +39,7 @@ /* ::::: Scroll arrows ::::: */ -/* Horizonal enabled */ +/* Horizontal enabled */ .autorepeatbutton-up[orient="horizontal"], .autorepeatbutton-down[chromedir="rtl"][orient="horizontal"], .scrollbutton-up[orient="horizontal"], @@ -54,7 +54,7 @@ list-style-image: url("chrome://global/skin/arrow/arrow-right.gif"); } - /* Horizonal disabled */ + /* Horizontal disabled */ .autorepeatbutton-up[orient="horizontal"][disabled="true"], .autorepeatbutton-down[chromedir="rtl"][orient="horizontal"][disabled="true"], .scrollbutton-up[orient="horizontal"][disabled="true"], diff --git a/EarlyBlue/global/textbox.css b/EarlyBlue/global/textbox.css index c452403a..3bc045bf 100644 --- a/EarlyBlue/global/textbox.css +++ b/EarlyBlue/global/textbox.css @@ -105,6 +105,30 @@ textbox.plain { min-height: 0px; } +/* ::::: search textbox ::::: */ + +.textbox-search-icon { + list-style-image: url("chrome://global/skin/icons/search.png"); + -moz-image-region: rect(0, 16px, 16px, 0); +} + +.textbox-search-icon[chromedir="rtl"] { + -moz-image-region: rect(16px, 16px, 32px, 0); +} + +.textbox-search-icon[searchbutton]:not([disabled]) { + cursor: pointer; +} + +.textbox-search-clear { + list-style-image: url("chrome://global/skin/icons/search.png"); + -moz-image-region: rect(32px, 16px, 48px, 0); +} + +.textbox-search-clear:not([disabled]) { + cursor: default; +} + /* ::::: textboxes inside toolbarpaletteitems ::::: */ toolbarpaletteitem > toolbaritem > textbox > .textbox-input-box > html|*.textbox-input { diff --git a/EarlyBlue/global/tree.css b/EarlyBlue/global/tree.css index bab24ed3..d4ad6f73 100644 --- a/EarlyBlue/global/tree.css +++ b/EarlyBlue/global/tree.css @@ -171,18 +171,16 @@ treechildren::-moz-tree-line { visibility: hidden; } -/* tree[seltype="cell"] > treechildren::-moz-tree-line, tree[seltype="text"] > treechildren::-moz-tree-line, treechildren::-moz-tree-line { - border: 1px dotted grey; + border: 1px dotted #CCD0DD; } tree[seltype="cell"] > treechildren::-moz-tree-line(active, selected, focus), treechildren::-moz-tree-line(selected, focus) { - border: 1px dotted black; + border: 1px dotted #666699; } -*/ /* ::::: tree separator ::::: */ diff --git a/EarlyBlue/mozapps/downloads/downloads.css b/EarlyBlue/mozapps/downloads/downloads.css index 87035c38..b0cb1575 100644 --- a/EarlyBlue/mozapps/downloads/downloads.css +++ b/EarlyBlue/mozapps/downloads/downloads.css @@ -20,7 +20,7 @@ richlistitem[type="download"][selected="true"] { background-image: url("chrome://mozapps/skin/extensions/itemEnabledFader.png"); } -richlistitem[type="download"][alternate="true"]:not([selected="true"]) { +richlistitem[type="download"]:not([selected="true"]):nth-child(odd) { background-color: #9999CC; } diff --git a/EarlyBlue/mozapps/extensions/extensions.css b/EarlyBlue/mozapps/extensions/extensions.css index 7b7900bf..c9c5bd1a 100644 --- a/EarlyBlue/mozapps/extensions/extensions.css +++ b/EarlyBlue/mozapps/extensions/extensions.css @@ -328,7 +328,8 @@ vbox[typeName="status"][type="header-recommended"] { padding: 0; } -.searchbox-search, .searchbox-cancel { +.searchbox-search, +.searchbox-cancel { -moz-appearance: none; cursor: default; margin: 0; -- 2.35.3