Merge pull request #2262 from matrix-org/bwindels/biggerresizehandles

Redesign: increase interaction rectangle of resize handles
This commit is contained in:
Bruno Windels
2018-11-02 14:12:49 +00:00
committed by GitHub
2 changed files with 5 additions and 4 deletions

View File

@@ -19,14 +19,19 @@ limitations under the License.
flex: 0 0 auto;
background: $panel-divider-color;
background-clip: content-box;
z-index: 100;
}
.mx_ResizeHandle.mx_ResizeHandle_horizontal {
width: 1px;
margin: 0 -5px;
padding: 0 5px;
cursor: col-resize;
}
.mx_ResizeHandle.mx_ResizeHandle_vertical {
height: 1px;
margin: -5px 0;
padding: 5px 0;
cursor: row-resize;
}

View File

@@ -62,7 +62,3 @@ limitations under the License.
position: absolute;
right: 60px;
}
.mx_RoomList .mx_ResizeHandle {
padding: 4px 0;
}