From 270fd8d4f969952c2c49514b1d126648ada0a00a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Astori?= Date: Tue, 15 Aug 2017 20:06:18 -0400 Subject: [PATCH] Fix expanded status messages not taking up full line width --- client/css/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/client/css/style.css b/client/css/style.css index 13b70968..76e3b0e9 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -814,6 +814,11 @@ kbd { flex: 1; } +/* Ensures expanded status messages always take up the full width */ +#chat .condensed .msg { + flex-basis: 100%; +} + #chat .condensed-text { cursor: pointer; transition: opacity .2s;