Enlarge the grab handles for resizing dialogs etc. Fixes #4063

This commit is contained in:
Dave Page 2019-03-25 07:50:55 -04:00
parent c43aa9b576
commit a5ebdafb82
4 changed files with 32 additions and 14 deletions

View File

@ -49,6 +49,7 @@ Bug fixes
| `Bug #4054 <https://redmine.postgresql.org/issues/4054>`_ - Handle resultsets with zero columns correctly in the Query Tool.
| `Bug #4060 <https://redmine.postgresql.org/issues/4060>`_ - Fix the latexpdf doc build.
| `Bug #4062 <https://redmine.postgresql.org/issues/4062>`_ - Fix handling of numeric arrays in View/Edit Data.
| `Bug #4063 <https://redmine.postgresql.org/issues/4063>`_ - Enlarge the grab handles for resizing dialogs etc.
| `Bug #4069 <https://redmine.postgresql.org/issues/4069>`_ - Append the file suffix to filenames when needed in the File Create dialogue.
| `Bug #4071 <https://redmine.postgresql.org/issues/4071>`_ - Ensure that Firefox prompts for a filename/location when downloading query results as a CSV file.
| `Bug #4073 <https://redmine.postgresql.org/issues/4073>`_ - Change the CodeMirror active line background colour to $color-danger-lighter so it doesn't conflict with the selection colour.

View File

@ -90,7 +90,7 @@
"underscore": "^1.9.1",
"underscore.string": "^3.3.5",
"watchify": "~3.11.1",
"webcabin-docker": "git+https://github.com/EnterpriseDB/wcDocker/#a002c706ca34ee20772091b04a6cb05b13548cdc",
"webcabin-docker": "git+https://github.com/EnterpriseDB/wcDocker/#32b58375ac57c8b7c681a64fea226ce306dee33a",
"wkx": "^0.4.6"
},
"scripts": {

View File

@ -102,8 +102,8 @@
& .wcFrameCornerNW,
& .wcFrameCornerSE,
& .wcFrameCornerSW {
height: $card-border-radius*2;
width: $card-border-radius*2;
height: $splitter-hover-width;
width: $splitter-hover-width;
background: transparent;
}
@ -139,12 +139,12 @@
border-bottom-left-radius: $card-border-radius;
}
.wcFrameEdgeH {
.wcFrameEdgeN, .wcFrameEdgeS {
left: $card-border-radius !important;
right: $card-border-radius !important;
}
.wcFrameEdgeV {
.wcFrameEdgeW, .wcFrameEdgeE {
top: $card-border-radius !important;
bottom: $card-border-radius !important;
}
@ -186,24 +186,41 @@
}
.wcFrameEdge {
background-color: $panel-border-color;
background-color: transparent;
border: none;
z-index: 5;
}
.wcFrameEdgeH {
height: $panel-border-width;
.wcFrameEdgeN, .wcFrameEdgeS {
height: $splitter-hover-width/2 + 1;
}
.wcFrameEdgeV {
width: $panel-border-width;
.wcFrameEdgeN {
border-top: $panel-border;
}
.wcFrameEdgeS {
border-bottom: $panel-border;
}
.wcFrameEdgeW, .wcFrameEdgeE {
width: $splitter-hover-width/2 + 1;
}
.wcFrameEdgeW {
border-left: $panel-border;
}
.wcFrameEdgeE {
border-right: $panel-border;
}
.wcFrameCornerNW,
.wcFrameCornerNE,
.wcFrameCornerSW,
.wcFrameCornerSE {
height: $panel-border-width;
width: $panel-border-width;
height: $splitter-hover-width;
width: $splitter-hover-width;
}

View File

@ -9015,9 +9015,9 @@ watchpack@^1.5.0:
graceful-fs "^4.1.2"
neo-async "^2.5.0"
"webcabin-docker@git+https://github.com/EnterpriseDB/wcDocker/#a002c706ca34ee20772091b04a6cb05b13548cdc":
"webcabin-docker@git+https://github.com/EnterpriseDB/wcDocker/#32b58375ac57c8b7c681a64fea226ce306dee33a":
version "2.2.4-dev"
resolved "git+https://github.com/EnterpriseDB/wcDocker/#a002c706ca34ee20772091b04a6cb05b13548cdc"
resolved "git+https://github.com/EnterpriseDB/wcDocker/#32b58375ac57c8b7c681a64fea226ce306dee33a"
dependencies:
FileSaver "^0.10.0"
font-awesome "^4.7.0"