From 380e580d656c8338925edd770879e2530970a029 Mon Sep 17 00:00:00 2001 From: chylex <contact@chylex.com> Date: Sun, 27 Aug 2017 13:35:02 +0200 Subject: [PATCH] Fix cut off badge icon in notifications in notifications --- Resources/Scripts/code.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Scripts/code.js b/Resources/Scripts/code.js index f11b58ce..5bd94f84 100644 --- a/Resources/Scripts/code.js +++ b/Resources/Scripts/code.js @@ -235,7 +235,7 @@ tags.push("<style type='text/css'>"); tags.push("body { background: "+getClassStyleProperty("column", "background-color")+" }"); // set background color tags.push("a[data-full-url] { word-break: break-all }"); // break long urls - tags.push(".txt-base-smallest .badge-verified:before { height: 13px !important }"); // fix cut off badge icon + tags.push(".txt-base-smallest .badge-verified:before { width: 13px !important; height: 13px !important; background-position: -223px -98px !important; }"); // fix cut off badge icon tags.push(".activity-header { align-items: center !important; margin-bottom: 4px }"); // tweak alignment of avatar and text in notifications tags.push(".activity-header .tweet-timestamp { line-height: unset }"); // fix timestamp position in notifications tags.push("</style>");