Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions git-webui/release/share/git-webui/webui/css/git-webui.css
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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 {
Expand All @@ -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 {
Expand All @@ -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 {
Expand All @@ -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 {
Expand Down
10 changes: 5 additions & 5 deletions git-webui/src/share/git-webui/webui/css/git-webui.less
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ body {
}

#space-filler {
padding-bottom: 50px;
padding-bottom: 100px;
}

#sidebar-tags h4:before {
Expand All @@ -329,7 +329,7 @@ body {
#sidebar-vscode {
position: absolute;
bottom: 60px;
width: 16.7em;
width: 16.4em;
background-color: rgba(51, 51, 51, 1);
}

Expand All @@ -345,7 +345,7 @@ body {
#sidebar-context {
position: absolute;
bottom: 30px;
width: 16.7em;
width: 16.4em;
background-color: rgba(51, 51, 51, 1);
}

Expand All @@ -361,7 +361,7 @@ body {
#sidebar-settings {
position: absolute;
bottom: 0;
width: 16.7em;
width: 16.4em;
background-color: rgba(51, 51, 51, 1);
}

Expand All @@ -377,7 +377,7 @@ body {
#sidebar-home {
position: absolute;
bottom: 90px;
width: 16.7em;
width: 16.4em;
background-color: rgba(51, 51, 51, 1);
}

Expand Down
Loading