Modify the default width of the navigator.

This commit is contained in:
kovacsv 2021-11-08 19:54:00 +01:00
parent ef4500f23d
commit d632df2254
3 changed files with 3 additions and 3 deletions

View File

@ -103,7 +103,7 @@ div.main
div.main_navigator
{
width: 260px;
width: 250px;
margin: 10px 0px 10px 0px;
overflow: none;
float: left;

View File

@ -125,7 +125,7 @@ OV.Navigator = class
originalWidth = this.mainDiv.outerWidth (true);
},
onSplit : (xDiff) => {
const minWidth = 260;
const minWidth = 250;
const maxWidth = 450;
let newWidth = originalWidth + xDiff;
if (newWidth < minWidth) {

View File

@ -65,7 +65,7 @@ OV.Sidebar = class
originalWidth = this.mainDiv.outerWidth (true);
},
onSplit : (xDiff) => {
const minWidth = 260;
const minWidth = 320;
const maxWidth = 450;
let newWidth = originalWidth - xDiff;
if (newWidth < minWidth) {