10583 panel resize icon fix (#10585)

* removed svg, added ::after

* removed unnecessary code
This commit is contained in:
Patrick O'Carroll
2018-01-22 16:49:45 +01:00
committed by Torkel Ödegaard
parent f8a03fa3e3
commit c611ffa4bc
2 changed files with 5 additions and 15 deletions

View File

@@ -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);
}
}