Increase frames splitter mouse hover area to make it easier to resize. Fixes #3865
parent
430be1c4cb
commit
ab094e8f16
|
@ -34,6 +34,7 @@ Bug fixes
|
||||||
| `Bug #3853 <https://redmine.postgresql.org/issues/3853>`_ - Proper SQL should be generated when create domain of type interval with precision.
|
| `Bug #3853 <https://redmine.postgresql.org/issues/3853>`_ - Proper SQL should be generated when create domain of type interval with precision.
|
||||||
| `Bug #3858 <https://redmine.postgresql.org/issues/3858>`_ - Drop-down should be closed when click on any other toolbar button.
|
| `Bug #3858 <https://redmine.postgresql.org/issues/3858>`_ - Drop-down should be closed when click on any other toolbar button.
|
||||||
| `Bug #3862 <https://redmine.postgresql.org/issues/3862>`_ - Fixed keyboard navigation for dialog tabs.
|
| `Bug #3862 <https://redmine.postgresql.org/issues/3862>`_ - Fixed keyboard navigation for dialog tabs.
|
||||||
|
| `Bug #3865 <https://redmine.postgresql.org/issues/3865>`_ - Increase frames splitter mouse hover area to make it easier to resize.
|
||||||
| `Bug #3871 <https://redmine.postgresql.org/issues/3871>`_ - Fixed alignment of tree arrow icons for Internet Explorer.
|
| `Bug #3871 <https://redmine.postgresql.org/issues/3871>`_ - Fixed alignment of tree arrow icons for Internet Explorer.
|
||||||
| `Bug #3872 <https://redmine.postgresql.org/issues/3872>`_ - Ensure object names in external process dialogues are properly escaped.
|
| `Bug #3872 <https://redmine.postgresql.org/issues/3872>`_ - Ensure object names in external process dialogues are properly escaped.
|
||||||
| `Bug #3891 <https://redmine.postgresql.org/issues/3891>`_ - Correct order of Save and Cancel button for json/jsonb editing.
|
| `Bug #3891 <https://redmine.postgresql.org/issues/3891>`_ - Correct order of Save and Cancel button for json/jsonb editing.
|
||||||
|
|
|
@ -97,7 +97,7 @@
|
||||||
"underscore": "^1.8.3",
|
"underscore": "^1.8.3",
|
||||||
"underscore.string": "^3.3.4",
|
"underscore.string": "^3.3.4",
|
||||||
"watchify": "~3.9.0",
|
"watchify": "~3.9.0",
|
||||||
"webcabin-docker": "git+https://github.com/EnterpriseDB/wcDocker/#25f6fda624c5469340da0c111a18545a4455973a",
|
"webcabin-docker": "git+https://github.com/EnterpriseDB/wcDocker/#9cf81f03bb350b76b77a264f1db5d55391d5e424",
|
||||||
"wkx": "^0.4.5"
|
"wkx": "^0.4.5"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -207,18 +207,26 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.wcSplitterBar {
|
.wcSplitterBarLine {
|
||||||
background-color: $panel-border-color;
|
background-color: $panel-border-color;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.wcSplitterBarV {
|
.wcSplitterBarV {
|
||||||
|
width: $splitter-hover-width;
|
||||||
|
|
||||||
|
& .wcSplitterBarLine {
|
||||||
width: $panel-border-width;
|
width: $panel-border-width;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.wcSplitterBarH {
|
.wcSplitterBarH {
|
||||||
|
height: $splitter-hover-width;
|
||||||
|
|
||||||
|
& .wcSplitterBarLine {
|
||||||
height: $panel-border-width;
|
height: $panel-border-width;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.wcSplitterBarV.wcSplitterBarStatic {
|
.wcSplitterBarV.wcSplitterBarStatic {
|
||||||
width: 0px;
|
width: 0px;
|
||||||
|
|
|
@ -156,6 +156,9 @@ $footer-padding: 0.5rem;
|
||||||
$footer-min-height: 2rem;
|
$footer-min-height: 2rem;
|
||||||
$footer-height-calc: $footer-min-height+$footer-padding*2;
|
$footer-height-calc: $footer-min-height+$footer-padding*2;
|
||||||
|
|
||||||
|
// ($splitter-hover-width - $panel-border-width) should be even number to split evenly.
|
||||||
|
$splitter-hover-width: 7px;
|
||||||
|
|
||||||
$navbar-brand-bg: #222222; //place image url if image
|
$navbar-brand-bg: #222222; //place image url if image
|
||||||
$navbar-brand-arrow-bg: #222222;
|
$navbar-brand-arrow-bg: #222222;
|
||||||
$navbar-color-bg: $color-primary;
|
$navbar-color-bg: $color-primary;
|
||||||
|
|
Loading…
Reference in New Issue