summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--backend.php4
-rw-r--r--tt-rss.css7
2 files changed, 11 insertions, 0 deletions
diff --git a/backend.php b/backend.php
index d931ae9a9..3d304655a 100644
--- a/backend.php
+++ b/backend.php
@@ -464,6 +464,10 @@
pg_query("DELETE FROM ttrss_entries WHERE feed_id = '$id'");
pg_query("DELETE FROM ttrss_feeds WHERE id = '$id'");
pg_query("COMMIT");
+
+ if (file_exists(ICONS_DIR . "/$id.ico")) {
+ unlink(ICONS_DIR . "/$id.ico");
+ }
}
}
}
diff --git a/tt-rss.css b/tt-rss.css
index 74f328925..8c16790eb 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -46,6 +46,10 @@ td.headlineToolbar {
padding-top : 10px;
}
+table.feeds {
+ font-size : small;
+}
+
table.feeds td.footer {
font-weight : bold;
border-width : 1px 0px 0px 0px;
@@ -257,6 +261,7 @@ table.prefFeedList tr.title td {
}
a.disabledButton {
+ font-family : tahoma, sans-serif;
border : 1px solid #d0d0d0;
background-color : white;
color : #909090;
@@ -271,6 +276,7 @@ a.disabledButton:hover {
}
a.button {
+ font-family : tahoma, sans-serif;
border : 1px solid #d0d0d0;
background-image : url("images/button.png");
background-position : top;
@@ -288,6 +294,7 @@ a.button:hover {
}
a.buttonWarn {
+ font-family : tahoma, sans-serif;
border : 1px solid #d0d0d0;
background-image : url("images/button.png");
background-position : top;