From 08d990ab138a7864ec2d01d21a95518460ad3ef7 Mon Sep 17 00:00:00 2001 From: Ilia Ross Date: Mon, 4 Aug 2025 20:58:10 +0300 Subject: [PATCH 1/2] Fix to support inlined details element (on the same line with text when opened) --- gray-theme/unauthenticated/gray-theme.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gray-theme/unauthenticated/gray-theme.css b/gray-theme/unauthenticated/gray-theme.css index 6e265f898..cc17adb42 100644 --- a/gray-theme/unauthenticated/gray-theme.css +++ b/gray-theme/unauthenticated/gray-theme.css @@ -459,6 +459,11 @@ details.inline > summary + span { line-height: 1.33; } +details.inline.inlined > summary, +details.inline.inlined { + display: inline !important; +} + details.inline > summary + span > tt { font-size: 96%; } From 9305ddbdd52673e790c40fb301a5e1779390822a Mon Sep 17 00:00:00 2001 From: Ilia Ross Date: Mon, 4 Aug 2025 21:28:50 +0300 Subject: [PATCH 2/2] Fix alerts positioning inside details --- gray-theme/unauthenticated/gray-theme.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/gray-theme/unauthenticated/gray-theme.css b/gray-theme/unauthenticated/gray-theme.css index cc17adb42..70b5025ad 100644 --- a/gray-theme/unauthenticated/gray-theme.css +++ b/gray-theme/unauthenticated/gray-theme.css @@ -464,6 +464,18 @@ details.inline.inlined { display: inline !important; } +details > span .ui_alert_box { + margin-top: 5px; +} + +details > span .ui_alert_box:not(:has(+p)) { + margin-bottom: 5px; +} + +details.inline.inlined > span { + margin-top: 10px; +} + details.inline > summary + span > tt { font-size: 96%; }