";
$edit_title = htmlspecialchars($line["title"]);
print " | ";
print "";
@@ -1427,14 +1427,14 @@
$icon_file = ICONS_DIR . "/" . $details["id"] . ".ico";
if (file_exists($icon_file) && filesize($icon_file) > 0) {
- $feed_icon = "";
} else {
$feed_icon = "";
}
- $check_box = "";
$class = ($feedctr % 2) ? "even" : "odd";
@@ -1454,7 +1454,7 @@
src='images/feed-icon-12x12.png'>";
print "$check_box".
+ id=\"FBROW-".$details["id"]."\">$check_box".
"$feed_icon $feed_url " . htmlspecialchars($details["title"]) .
" ($subscribers)
$site_url";
diff --git a/prefs.js b/prefs.js
index c959e5dfa..b8b1b49b2 100644
--- a/prefs.js
+++ b/prefs.js
@@ -224,7 +224,7 @@ function addFeedCat() {
infobox_callback2(transport);
} });
- link.value = "";
+ cat.value = "";
}
}
@@ -1078,17 +1078,12 @@ function init_second_stage() {
dojo.addOnLoad(function() {
- var active_tab = getInitParam("prefs_active_tab");
- if (!$(active_tab+"Tab")) active_tab = "genConfig";
- if (!active_tab || active_tab == '0') active_tab = "genConfig";
+ var tab = getURLParam('tab');
- var http_tab = getURLParam('tab');
-
- if (http_tab) active_tab = http_tab;
-
- var tab = dijit.byId(active_tab + "Tab");
-
- if (tab) dijit.byId("pref-tabs").selectChild(tab);
+ if (tab) {
+ tab = dijit.byId(tab + "Tab");
+ if (tab) dijit.byId("pref-tabs").selectChild(tab);
+ }
});
diff --git a/tt-rss.css b/tt-rss.css
index 55c1871a7..9edd15c33 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -222,6 +222,16 @@ input.editbox {
cursor : pointer;
}
+.blankborder, .blankborder td {
+ border-style : solid;
+ border-color : transparent;
+ border-width : 0px 0px 1px 0px;
+}
+
+.Selected, .Selected td {
+ background-color : #fff7d5;
+}
+
.even.Unread.Selected, .even.Unread.Selected td {
background-color : #fff7d5;
font-weight : bold;
@@ -400,8 +410,10 @@ table.prefFeedList td.feedSelect {
div.prefFeedCatHolder {
height : 250px;
overflow : auto;
- border : 1px solid gray;
- margin : 5px 0px 5px 0px;
+ border-width : 0px 1px 1px 1px;
+ border-color : #c0c0c0;
+ border-style : solid;
+ margin : 0px 0px 5px 0px;
background-color : white;
}
@@ -675,7 +687,7 @@ span.groupPrompt {
}
div.tagCloudContainer {
- border : 1px solid gray;
+ border : 1px solid #c0c0c0;
background-color : white;
margin : 5px 0px 5px 0px;
padding : 5px;
@@ -683,7 +695,7 @@ div.tagCloudContainer {
}
div.errorExplained {
- border : 1px solid gray;
+ border : 1px solid #c0c0c0;
background-color : white;
margin : 5px 0px 5px 0px;
padding : 5px;
@@ -712,16 +724,19 @@ ul.userFeedList {
ul.browseFeedList {
height : 300px;
overflow : auto;
- list-style-type : none;
+ border-width : 0px 1px 1px 1px;
+ border-color : #c0c0c0;
+ border-style : solid;
margin : 0px 0px 5px 0px;
- padding : 0px;
- border : 1px solid gray;
background-color : white;
+ list-style-type : none;
+ padding : 0px;
+
}
ul.browseFeedList li {
margin : 0px;
- padding : 0px;
+ padding : 2px 4px 2px 4px;
}
span.subscribers {
|