From 385253c17dbfa65f02704cabba103892df2a7565 Mon Sep 17 00:00:00 2001 From: Elijah Tamarchenko Date: Wed, 20 Nov 2024 15:59:01 -0500 Subject: [PATCH] Fixed studio issues --- CHANGELOG.md | 3 +++ .../release/share/git-webui/webui/css/git-webui.css | 10 +++++----- git-webui/src/share/git-webui/webui/css/git-webui.less | 10 +++++----- 3 files changed, 13 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46dcc89a..b2680543 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added filtering through branch names in UI (#615) - FullLoad pull event handler allows deploying changes with a full import of the repository (#619) +## Fixed +- Fixed minor issues in Studio UI (#641) + ## [2.7.1] - 2024-11-13 ### Fixed diff --git a/git-webui/release/share/git-webui/webui/css/git-webui.css b/git-webui/release/share/git-webui/webui/css/git-webui.css index 5fa36a56..02e47be8 100644 --- a/git-webui/release/share/git-webui/webui/css/git-webui.css +++ b/git-webui/release/share/git-webui/webui/css/git-webui.css @@ -220,7 +220,7 @@ body { content: url(../img/branch.svg); } #sidebar #sidebar-content #space-filler { - padding-bottom: 50px; + padding-bottom: 100px; } #sidebar #sidebar-content #sidebar-tags h4:before { content: url(../img/tag.svg); @@ -238,7 +238,7 @@ body { #sidebar #sidebar-content #sidebar-vscode { position: absolute; bottom: 60px; - width: 16.7em; + width: 16.4em; background-color: #333333; } #sidebar #sidebar-content #sidebar-context h4 { @@ -251,7 +251,7 @@ body { #sidebar #sidebar-content #sidebar-context { position: absolute; bottom: 30px; - width: 16.7em; + width: 16.4em; background-color: #333333; } #sidebar #sidebar-content #sidebar-settings h4 { @@ -264,7 +264,7 @@ body { #sidebar #sidebar-content #sidebar-settings { position: absolute; bottom: 0; - width: 16.7em; + width: 16.4em; background-color: #333333; } #sidebar #sidebar-content #sidebar-home h4 { @@ -277,7 +277,7 @@ body { #sidebar #sidebar-content #sidebar-home { position: absolute; bottom: 90px; - width: 16.7em; + width: 16.4em; background-color: #333333; } #sidebar #sidebar-content ul { diff --git a/git-webui/src/share/git-webui/webui/css/git-webui.less b/git-webui/src/share/git-webui/webui/css/git-webui.less index 6e95d299..e0263bfe 100644 --- a/git-webui/src/share/git-webui/webui/css/git-webui.less +++ b/git-webui/src/share/git-webui/webui/css/git-webui.less @@ -306,7 +306,7 @@ body { } #space-filler { - padding-bottom: 50px; + padding-bottom: 100px; } #sidebar-tags h4:before { @@ -329,7 +329,7 @@ body { #sidebar-vscode { position: absolute; bottom: 60px; - width: 16.7em; + width: 16.4em; background-color: rgba(51, 51, 51, 1); } @@ -345,7 +345,7 @@ body { #sidebar-context { position: absolute; bottom: 30px; - width: 16.7em; + width: 16.4em; background-color: rgba(51, 51, 51, 1); } @@ -361,7 +361,7 @@ body { #sidebar-settings { position: absolute; bottom: 0; - width: 16.7em; + width: 16.4em; background-color: rgba(51, 51, 51, 1); } @@ -377,7 +377,7 @@ body { #sidebar-home { position: absolute; bottom: 90px; - width: 16.7em; + width: 16.4em; background-color: rgba(51, 51, 51, 1); }