make resize handles have correct color + bidirectional cursor

This commit is contained in:
Bruno Windels 2018-10-11 15:33:38 +02:00
parent 928b6d47c8
commit e5d1b3328c
2 changed files with 3 additions and 13 deletions

View file

@ -56,8 +56,6 @@ limitations under the License.
display: flex; display: flex;
flex-direction: column; flex-direction: column;
border-right: 1px solid $panel-divider-color;
} }
.mx_LeftPanel .mx_AppTile_mini { .mx_LeftPanel .mx_AppTile_mini {

View file

@ -17,24 +17,16 @@ limitations under the License.
.mx_ResizeHandle { .mx_ResizeHandle {
cursor: row-resize; cursor: row-resize;
flex: 0 0 auto; flex: 0 0 auto;
background: blue; background: $panel-divider-color;
padding: 1px padding: 1px
} }
.mx_ResizeHandle.mx_ResizeHandle_horizontal { .mx_ResizeHandle.mx_ResizeHandle_horizontal {
width: 1px; width: 1px;
cursor: e-resize; cursor: col-resize;
} }
.mx_ResizeHandle.mx_ResizeHandle_vertical { .mx_ResizeHandle.mx_ResizeHandle_vertical {
height: 1px; height: 1px;
cursor: s-resize; cursor: row-resize;
}
.mx_ResizeHandle.mx_ResizeHandle_horizontal.mx_ResizeHandle_reverse {
cursor: w-resize;
}
.mx_ResizeHandle.mx_ResizeHandle_vertical.mx_ResizeHandle_reverse {
cursor: n-resize;
} }