diff --git a/src/webui/www/private/css/Layout.css b/src/webui/www/private/css/Layout.css
index f2a6e8a29..bf0d3db39 100644
--- a/src/webui/www/private/css/Layout.css
+++ b/src/webui/www/private/css/Layout.css
@@ -267,51 +267,24 @@ li.divider {
}
.horizontalHandle .handleIcon {
+ background: url("../images/handle-icon-horizontal.svg") center center
+ no-repeat;
height: 6px;
margin: 0 auto;
overflow: hidden;
- position: relative;
- width: 20px;
-}
-
-.horizontalHandle .handleIcon::before {
- background: currentcolor;
- box-shadow:
- 4px 0 0 currentcolor,
- 8px 0 0 currentcolor;
- content: "";
- height: 2px;
- left: 50%;
- position: absolute;
- top: 50%;
- transform: translate(-50%, -50%);
- width: 2px;
}
.columnHandle {
+ background: url("../images/handle-icon.svg") center center no-repeat;
border: 1px solid var(--color-border-default);
border-bottom: 0;
border-top: 0;
float: left;
min-height: 10px;
- position: relative;
+ overflow: hidden;
width: 8px;
}
-.columnHandle::before {
- background: currentcolor;
- box-shadow:
- 0 4px 0 currentcolor,
- 0 8px 0 currentcolor;
- content: "";
- height: 2px;
- left: 50%;
- position: absolute;
- top: 50%;
- transform: translate(-50%, -50%);
- width: 2px;
-}
-
/* Toolboxes */
.toolbox {
diff --git a/src/webui/www/private/images/handle-icon-horizontal.svg b/src/webui/www/private/images/handle-icon-horizontal.svg
new file mode 100644
index 000000000..a602eade0
--- /dev/null
+++ b/src/webui/www/private/images/handle-icon-horizontal.svg
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/src/webui/www/private/images/handle-icon.svg b/src/webui/www/private/images/handle-icon.svg
new file mode 100644
index 000000000..f6e6f1df2
--- /dev/null
+++ b/src/webui/www/private/images/handle-icon.svg
@@ -0,0 +1,5 @@
+
\ No newline at end of file