From c611ffa4bc8cfae40572fae19c0741fc44ca5038 Mon Sep 17 00:00:00 2001 From: Patrick O'Carroll Date: Mon, 22 Jan 2018 16:49:45 +0100 Subject: [PATCH] 10583 panel resize icon fix (#10585) * removed svg, added ::after * removed unnecessary code --- public/img/resize-handle-white.svg | 11 ----------- public/sass/components/_dashboard_grid.scss | 9 +++++---- 2 files changed, 5 insertions(+), 15 deletions(-) delete mode 100644 public/img/resize-handle-white.svg diff --git a/public/img/resize-handle-white.svg b/public/img/resize-handle-white.svg deleted file mode 100644 index 3b439663f8a..00000000000 --- a/public/img/resize-handle-white.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/public/sass/components/_dashboard_grid.scss b/public/sass/components/_dashboard_grid.scss index b44f1fa55ce..ec197cbe3a4 100644 --- a/public/sass/components/_dashboard_grid.scss +++ b/public/sass/components/_dashboard_grid.scss @@ -1,5 +1,5 @@ -@import "~react-grid-layout/css/styles.css"; -@import "~react-resizable/css/styles.css"; +@import '~react-grid-layout/css/styles.css'; +@import '~react-resizable/css/styles.css'; .panel-in-fullscreen { .react-grid-layout { @@ -40,8 +40,9 @@ } .theme-dark { - .react-grid-item > .react-resizable-handle { - background-image: url("../img/resize-handle-white.svg"); + .react-grid-item > .react-resizable-handle::after { + border-right: 2px solid rgba(255, 255, 255, 0.4); + border-bottom: 2px solid rgba(255, 255, 255, 0.4); } }