Skip to content

Commit 999a4b6

Browse files
committed
saving before checking out another branch
1 parent 5ee6e26 commit 999a4b6

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

git-webui/release/share/git-webui/webui/css/git-webui.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -858,7 +858,8 @@ body {
858858
cursor: pointer;
859859
}
860860
#changedFilesContainer {
861-
width: 100%;
861+
max-width: 100% !important;
862+
margin: 0 10px;
862863
}
863864
#changedFilesContainer .file-area {
864865
padding-left: 20px;

git-webui/release/share/git-webui/webui/js/git-webui.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2526,7 +2526,7 @@ webui.NewChangedFilesView = function(workspaceView) {
25262526
self.element = $(
25272527
'<div id="changedFilesContainer" class="container">' +
25282528
'<div class="row">' +
2529-
'<div class="col-sm-5 file-area">' +
2529+
'<div class="col-sm-6 file-area">' +
25302530
'<h4 id="fileAreaHeader">Test Header</h4>' +
25312531
'<div class="changed-files-list">' +
25322532
'<div class="form-check">' +
@@ -2561,7 +2561,7 @@ webui.NewChangedFilesView = function(workspaceView) {
25612561
'</div>' +
25622562
'</div>' +
25632563
'</div>' +
2564-
'<div class="commit-area offset-sm-2 col-sm-5">' +
2564+
'<div class="commit-area col-sm-6">' +
25652565
'<h4>Commit Area</h4>' +
25662566
'<div class="form-group">' +
25672567
'<label for="commitMsg">Enter commit message:</label>' +

git-webui/src/share/git-webui/webui/css/git-webui.less

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,8 @@ body {
829829
}
830830

831831
#changedFilesContainer {
832-
width: 100%;
832+
max-width: 100% !important;
833+
margin: 0 10px;
833834
.file-area {
834835
padding-left: 20px;
835836
padding-top: 15px;

git-webui/src/share/git-webui/webui/js/git-webui.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2526,7 +2526,7 @@ webui.NewChangedFilesView = function(workspaceView) {
25262526
self.element = $(
25272527
'<div id="changedFilesContainer" class="container">' +
25282528
'<div class="row">' +
2529-
'<div class="col-sm-5 file-area">' +
2529+
'<div class="col-sm-6 file-area">' +
25302530
'<h4 id="fileAreaHeader">Test Header</h4>' +
25312531
'<div class="changed-files-list">' +
25322532
'<div class="form-check">' +
@@ -2561,7 +2561,7 @@ webui.NewChangedFilesView = function(workspaceView) {
25612561
'</div>' +
25622562
'</div>' +
25632563
'</div>' +
2564-
'<div class="commit-area offset-sm-2 col-sm-5">' +
2564+
'<div class="commit-area col-sm-6">' +
25652565
'<h4>Commit Area</h4>' +
25662566
'<div class="form-group">' +
25672567
'<label for="commitMsg">Enter commit message:</label>' +

0 commit comments

Comments
 (0)