From 6bbd87dd9cadd85772ae7bec6fc00123678558e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Sat, 10 Feb 2018 20:11:11 +0100 Subject: [PATCH] ux: minor tweak to grid resize handle color --- public/sass/components/_dashboard_grid.scss | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/public/sass/components/_dashboard_grid.scss b/public/sass/components/_dashboard_grid.scss index ec197cbe3a4..8af9a173312 100644 --- a/public/sass/components/_dashboard_grid.scss +++ b/public/sass/components/_dashboard_grid.scss @@ -41,8 +41,15 @@ .theme-dark { .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); + border-right: 2px solid $gray-4; + border-bottom: 2px solid $gray-4; + } +} + +.theme-light { + .react-grid-item > .react-resizable-handle::after { + border-right: 2px solid $gray-3; + border-bottom: 2px solid $gray-3; } }