From ea925ddb047c62241b1e4a370cca71b2c2dbcb32 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Tue, 7 Jan 2020 10:37:52 -0500 Subject: [PATCH] apply various fixes from @Cradamy https://gist.github.com/Cradamy/5bb19c60f64f03c01482a3ff3fa9ec74 --- package.json | 2 +- theme.css | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 6b6be7a..41eadef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "thelounge-theme-solarized-fork-monospace", - "version": "1.1.2", + "version": "1.0.9", "description": "A simple theme with Solarized colors", "main": "package.json", "thelounge": { diff --git a/theme.css b/theme.css index 8e59f93..6e433aa 100644 --- a/theme.css +++ b/theme.css @@ -13,6 +13,21 @@ font-family: 'IBM Plex Mono', monospace; } +/*fix timestamp width in monospace themes*/ +#chat.show-seconds .time, #chat.show-seconds .chat-view[data-type="channel"] .msg.highlight .time { + width: auto; +} + +/*hide message sender name if it comes from the same person as the last one*/ +.msg.previous-source .from { + visibility: hidden; +} + +/*hide debug*/ +#chat .msg[data-type=raw] { + display: none; +} + #user-specified-css-input { height: 500px; }