From 73aa4caffb4040ee00308faae8821dbd4bdcc619 Mon Sep 17 00:00:00 2001 From: DragonSlayer_14 Date: Wed, 10 Jun 2026 22:02:02 +0200 Subject: [PATCH] > Fix hidden form display issue in attached segments Updated CSS selectors to exclude `.new-repo-form` from being hidden in attached segments. This ensures the proper display of new repository forms while maintaining the intended behavior for other forms. --- data/gitea/public/assets/css/theme-ctdra-dark.css | 2 +- data/gitea/public/assets/css/theme-ctdra-light.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/gitea/public/assets/css/theme-ctdra-dark.css b/data/gitea/public/assets/css/theme-ctdra-dark.css index a25fd05..9ea6237 100644 --- a/data/gitea/public/assets/css/theme-ctdra-dark.css +++ b/data/gitea/public/assets/css/theme-ctdra-dark.css @@ -339,7 +339,7 @@ footer { z-index: 1000; } -div.ui.attached.segment form.ui.form { +div.ui.attached.segment form.ui.form:not(.new-repo-form) { display: none; } diff --git a/data/gitea/public/assets/css/theme-ctdra-light.css b/data/gitea/public/assets/css/theme-ctdra-light.css index 93aa151..f171163 100644 --- a/data/gitea/public/assets/css/theme-ctdra-light.css +++ b/data/gitea/public/assets/css/theme-ctdra-light.css @@ -314,7 +314,7 @@ footer { z-index: 1000; } -div.ui.attached.segment form.ui.form { +div.ui.attached.segment form.ui.form:not(.new-repo-form) { display: none; }