From: Andrew Dolgov Date: Wed, 7 Oct 2009 12:33:45 +0000 (+0400) Subject: infoBox display tweaks X-Git-Tag: 1.3.4~24 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=de85cac2d61c1ee9f6299cfea0b5766404289366;p=tt-rss.git infoBox display tweaks --- diff --git a/functions.js b/functions.js index 02417db7..93592b1b 100644 --- a/functions.js +++ b/functions.js @@ -1290,13 +1290,9 @@ function closeInfoBox(cleanup) { if (Element.visible("infoBoxShadow")) { Element.hide("dialog_overlay"); - - var shadow = $('infoBoxShadow'); - var box = $('infoBoxShadow'); - - Element.hide(shadow); + Element.hide("infoBoxShadow"); - if (cleanup) box.innerHTML = " "; + if (cleanup) $("infoBoxShadow").innerHTML = " "; enableHotkeys(); } @@ -1342,20 +1338,19 @@ function infobox_callback2(transport) { debug("infobox_callback2"); - if (!getInitParam("infobox_disable_overlay")) { - Element.show("dialog_overlay"); - } - var box = $('infoBox'); - var shadow = $('infoBoxShadow'); + if (box) { - box.innerHTML=transport.responseText; - if (shadow) { - shadow.style.display = "block"; - } else { - box.style.display = "block"; + if (!getInitParam("infobox_disable_overlay")) { + Element.show("dialog_overlay"); } + + box.innerHTML=transport.responseText; + Element.show("infoBoxShadow"); + //Effect.SlideDown("infoBoxShadow", {duration : 1.0}); + + } /* FIXME this needs to be moved out somewhere */ diff --git a/images/shadow_dark.png b/images/shadow_dark.png index 3a26b2a5..a300e949 100644 Binary files a/images/shadow_dark.png and b/images/shadow_dark.png differ diff --git a/modules/popup-dialog.php b/modules/popup-dialog.php index 2ba0740c..b173e64f 100644 --- a/modules/popup-dialog.php +++ b/modules/popup-dialog.php @@ -149,7 +149,7 @@ $active_feed_id = sprintf("%d", $params[0]); $is_cat = $params[1] == "true"; - print "
".__('Search')."
"; + print "
".__('Look for')."
"; print "
"; diff --git a/tt-rss.css b/tt-rss.css index 021af11d..2d4f2c23 100644 --- a/tt-rss.css +++ b/tt-rss.css @@ -582,14 +582,15 @@ div.helpResponse { } #infoBoxTitle { - border-width : 1px 1px 1px 1px; + border-width : 0px 0px 1px 0px; border-style : solid; - border-color : #99d67a; + border-color : #659a4c; background-color : #99d67a; padding : 4px 2px 4px 10px; color : white; font-weight : bold; - font-size : 12px; + font-size : 16px; + text-shadow : #659a4c 0px 1px 0px; } /* shadow stuff from http://www.sixapart.com/pronet/articles/ydsf_-_robust_c.html */ @@ -597,12 +598,13 @@ div.helpResponse { #infoBox { border-width : 1px 1px 1px 1px; border-style : solid; - border-color : #99d67a; + border-color : #659a4c; background-color : #f8fcf5; position: relative; overflow : hidden; left : -4px; top : -4px; + } div#errorBox { @@ -649,7 +651,7 @@ html>body #infoBox, html>body #errorBox { background-image : url("images/shadow.png"); background-position : bottom right; left : 25%; - top : 70px; + top : 50px; width : 50%; position : absolute; min-width : 600px;