From f02226449a542b846f12b687b27415f9e11d557e Mon Sep 17 00:00:00 2001 From: 8chan Date: Tue, 21 Oct 2014 21:08:17 -0700 Subject: [PATCH] Fix own post (You) --- js/show-own-posts.js | 2 +- stylesheets/style.css | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/js/show-own-posts.js b/js/show-own-posts.js index 8b83f4cd..e26f5abd 100644 --- a/js/show-own-posts.js +++ b/js/show-own-posts.js @@ -33,7 +33,7 @@ var update_own = function() { if (posts[board] && posts[board].indexOf(id) !== -1) { // Own post! $(this).addClass('you'); - $(this).find('span.name').first().append(' '+_('(You)')); + $(this).find('span.name').first().append(' '+_('(You)')+''); } // Update references diff --git a/stylesheets/style.css b/stylesheets/style.css index 0e56f442..6a9f1a9a 100644 --- a/stylesheets/style.css +++ b/stylesheets/style.css @@ -966,6 +966,7 @@ span.pln { #watchlist-toggle, .watchThread, .watchlist-remove, #clearList, #clearGhosts { cursor: pointer; } +<<<<<<< HEAD #youtube-size input { width: 50px; @@ -1118,3 +1119,11 @@ table.fileboard .intro a { max-height: 100%; position: absolute; } +.own_post { + font-style: italic; + font-weight: normal; + opacity: .666; +} +div.mix { + display: inline-block; +}