]> git.wh0rd.org Git - tt-rss.git/commitdiff
interface tweaks
authorAndrew Dolgov <fox@madoka.spb.ru>
Thu, 18 May 2006 07:56:52 +0000 (08:56 +0100)
committerAndrew Dolgov <fox@madoka.spb.ru>
Thu, 18 May 2006 07:56:52 +0000 (08:56 +0100)
backend.php
functions.js
prefs.js
tt-rss.css
tt-rss.js

index f3c1c58fa83af2fd896f188fab403b50d5448843..be7aba382e6c80fe3c81d2aa4c54ef41f02d0b0e 100644 (file)
 //                             onclick=\"javascript:hideParentElement(this);\" src=\"images/close.png\">";
        
                        print "<a href=\"javascript:showBlockElement('feedUpdateErrors')\">
-                               <b>Feeds with update errors</b> (click to expand)</a>";
+                               <b>Some feeds have update errors (click for details)</b></a>";
 
                        print "<ul id=\"feedUpdateErrors\" class=\"nomarks\">";
                                                
index ae25a2cc66a87b913d86c6209411a4e5f8f0a96f..d5ac2c087f79bf55f5ff8897207b13aefbdb6f22 100644 (file)
@@ -81,12 +81,12 @@ function p_notify(msg) {
        if (!n || !nb) return;
 
        if (msg == "") {
-               nb.innerHTML = "&nbsp;";
-//             n.style.background = "#ffffff";
+               n.style.display = "none";
        } else {
-               nb.innerHTML = msg;
-//             n.style.background = "#fffff0";
+               n.style.display = "block";
        }
+       
+       nb.innerHTML = msg;
 }
 
 function notify(msg) {
@@ -97,13 +97,13 @@ function notify(msg) {
        if (!n || !nb) return;
 
        if (msg == "") {
-               nb.innerHTML = "&nbsp;";
-//             n.style.background = "#ffffff";
+               n.style.display = "none";
        } else {
-               nb.innerHTML = msg;
-//             n.style.background = "#fffff0";
+               n.style.display = "block";
        }
 
+       nb.innerHTML = msg;
+
 }
 
 function printLockingError() {
index 236c073c391135f02d50d4072b481bba65521b3c..2539c3b629623c76863bace525f0fd35ae6f2188 100644 (file)
--- a/prefs.js
+++ b/prefs.js
@@ -281,7 +281,7 @@ function addFeed() {
        var link = document.getElementById("fadd_link");
 
        if (link.value.length == 0) {
-               alert("Can't add feed: missing feed URL.");
+               alert("Error: No feed URL given.");
        } else {
                notify("Adding feed...");
 
@@ -643,7 +643,7 @@ function feedEditCancel() {
 
        active_feed = false;
 
-       notify("Operation cancelled.");
+//     notify("Operation cancelled.");
 
 /*     xmlhttp.open("GET", "backend.php?op=pref-feeds", true);
        xmlhttp.onreadystatechange=feedlist_callback;
@@ -660,7 +660,7 @@ function feedCatEditCancel() {
 
        active_feed_cat = false;
 
-       notify("Operation cancelled.");
+//     notify("Operation cancelled.");
 
        xmlhttp.open("GET", "backend.php?op=pref-feeds", true);
        xmlhttp.onreadystatechange=feedlist_callback;
@@ -799,7 +799,7 @@ function labelEditCancel() {
 
        active_label = false;
 
-       notify("Operation cancelled.");
+//     notify("Operation cancelled.");
 
        xmlhttp.open("GET", "backend.php?op=pref-labels", true);
        xmlhttp.onreadystatechange=labellist_callback;
@@ -816,7 +816,7 @@ function userEditCancel() {
 
        active_user = false;
 
-       notify("Operation cancelled.");
+//     notify("Operation cancelled.");
 
        xmlhttp.open("GET", "backend.php?op=pref-users", true);
        xmlhttp.onreadystatechange=userlist_callback;
@@ -833,7 +833,7 @@ function filterEditCancel() {
 
        active_filter = false;
 
-       notify("Operation cancelled.");
+//     notify("Operation cancelled.");
 
        xmlhttp.open("GET", "backend.php?op=pref-filters", true);
        xmlhttp.onreadystatechange=filterlist_callback;
index 9d38cf4a32ea65bb31d75a58de616cd375733d94..b1b2a23a8c02531600c83f4ef37e12296f446692 100644 (file)
@@ -296,9 +296,16 @@ td.notifyBox {
 }
 
 #notify {
-       color : black;
-       font-weight : bold;
+       background : #fff7d5;
+       border : 1px solid #d7c47a;
        padding : 3px;
+       top : 2px;
+       right : 2px;
+       float : right;  
+       position : absolute;    
+       -moz-border-radius : 3px;
+       font-size : x-small;
+       font-weight : bold;
 }
 
 #dispSwitch {
index 31ad8a96220a29d5b6142a8764af9b75a2c77c83..f3f496b185c24c888ac27c4db13cf4ee0bb1b1f7 100644 (file)
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -534,7 +534,7 @@ function qafAdd() {
        var link = document.getElementById("qafInput");
 
        if (link.value.length == 0) {
-               notify("Missing feed URL.");
+               alert("Error: No feed URL given.");
        } else {
                notify("Adding feed...");