From 3f727d1a592fb73347e51494cfab8c0b029e5a5b Mon Sep 17 00:00:00 2001 From: rugk Date: Sat, 20 Jun 2026 16:48:32 +0200 Subject: [PATCH] fix inline styles like links being shown as block element in .message-container options Port of https://github.com/TinyWebEx/AutomaticSettings/pull/32 for the same use-case here. --- common.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.css b/common.css index 04db0ee..4fa2976 100644 --- a/common.css +++ b/common.css @@ -67,7 +67,7 @@ a:active { /* "unhides" all elements that contain at least one visible element */ .message-container:has(> :not(.invisible)) { - display: block; + display: inherit; } }