summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/page_bundles
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2018-07-26 15:59:13 +0000
committerPhil Hughes <me@iamphill.com>2018-07-26 15:59:13 +0000
commit9ea2e6645e5b2db8033b2d25cfd163349e0f7625 (patch)
treef196bc2fdd5a2d3cba89956b138e269ff75aadef /app/assets/stylesheets/page_bundles
parent4cebdbbe7f2a6308e093440018a4c40955ed1321 (diff)
parenta8e599f86ec1698ae1d6b1d3941196debdf6db99 (diff)
downloadgitlab-ce-9ea2e6645e5b2db8033b2d25cfd163349e0f7625.tar.gz
Merge branch '48055-web-ide-resize-handles' into 'master'
Resolve "Resize handles for Web IDE right sidebar are too thin" Closes #48055 See merge request gitlab-org/gitlab-ce!20818
Diffstat (limited to 'app/assets/stylesheets/page_bundles')
-rw-r--r--app/assets/stylesheets/page_bundles/ide.scss13
1 files changed, 8 insertions, 5 deletions
diff --git a/app/assets/stylesheets/page_bundles/ide.scss b/app/assets/stylesheets/page_bundles/ide.scss
index a346bd04ad3..442aef124d3 100644
--- a/app/assets/stylesheets/page_bundles/ide.scss
+++ b/app/assets/stylesheets/page_bundles/ide.scss
@@ -833,18 +833,21 @@
}
}
-.dragHandle {
+.drag-handle {
position: absolute;
top: 0;
bottom: 0;
- width: 1px;
- background-color: $white-dark;
+ width: 4px;
- &.dragright {
+ &:hover {
+ background-color: $white-normal;
+ }
+
+ &.drag-right {
right: 0;
}
- &.dragleft {
+ &.drag-left {
left: 0;
}
}