> 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.
This commit is contained in:
2026-06-10 22:02:02 +02:00
parent 4cf173f971
commit 73aa4caffb
2 changed files with 2 additions and 2 deletions
@@ -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;
}
@@ -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;
}