summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-11-16 13:01:28 +0300
committerAndrew Dolgov <[email protected]>2010-11-16 13:01:28 +0300
commit8e289ca1ff3e62d1b054d937d535796a07bef431 (patch)
treec8f4ab93412bc15aec84f943a794f4c18bca6319
parent9c99281f20f938701f8645aad1d25412ca6538a7 (diff)
fix feed icons size
-rw-r--r--functions.php2
-rw-r--r--tt-rss.css2
2 files changed, 2 insertions, 2 deletions
diff --git a/functions.php b/functions.php
index d56ed2957..63f440999 100644
--- a/functions.php
+++ b/functions.php
@@ -4545,7 +4545,7 @@
$line = db_fetch_assoc($result);
if ($line["icon_url"]) {
- $feed_icon = "<img class=\"feedIcon\" src=\"" . $line["icon_url"] . "\">";
+ $feed_icon = "<img src=\"" . $line["icon_url"] . "\">";
} else {
$feed_icon = "&nbsp;";
}
diff --git a/tt-rss.css b/tt-rss.css
index 3a3f23736..8a662aa66 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -1499,7 +1499,7 @@ div.fatalError textarea {
display : none;
}
-img.feedIcon {
+img.feedIcon, img.tinyFeedIcon {
max-width : 16px;
max-height : 16px;
}