summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--css/news.css2
-rw-r--r--js/items.js2
2 files changed, 1 insertions, 3 deletions
diff --git a/css/news.css b/css/news.css
index e4de3cdc1..84a38fdbf 100644
--- a/css/news.css
+++ b/css/news.css
@@ -557,7 +557,7 @@ div.add_parentfolder {
max-width: 55em;
}
- .feed_item div.body img.thumbnail {
+ .feed_item div.body > img:first-child {
padding: 0 1em 0 0;
float: left;
}
diff --git a/js/items.js b/js/items.js
index 8c80b6073..b84f93f67 100644
--- a/js/items.js
+++ b/js/items.js
@@ -409,8 +409,6 @@ var News = News || {};
this._read = this._$html.hasClass('read');
this._locked = false;
this._important = this._$html.find('li.star').hasClass('important');
- this._$html.children('.body').children('img:first-child').addClass('thumbnail');
-
var $stamp = this._$html.find('.timestamp');
this._timestamp = parseInt($stamp.html());
$stamp.remove();