From da1d762087b81f4f2e1c722a9d92cfc73756aff7 Mon Sep 17 00:00:00 2001 From: rugk Date: Fri, 19 Jun 2026 15:05:34 +0200 Subject: [PATCH] fix inline styles like links being shown as block element in .line options This fixes a display issue/regression introduced. Fixes #XY (I could not find the issue, but I remember, @tdulcet you had someone somewhere) --- css/photonOptions.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/photonOptions.css b/css/photonOptions.css index 9ee8462..57a98d2 100644 --- a/css/photonOptions.css +++ b/css/photonOptions.css @@ -123,7 +123,7 @@ li { /* "unhides" all elements that contain at least one visible element */ .line:has(> :not(.invisible)) { - display: flex; + display: inherit; } }