From 88da1030514655e9a8e5d51f3e04e22502bab188 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Raimund=20Schl=C3=BC=C3=9Fler?= Date: Sat, 7 Mar 2020 17:24:30 +0100 Subject: [PATCH] Fix dnd hover background-color MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Raimund Schlüßler --- css/src/style.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/css/src/style.scss b/css/src/style.scss index 19d57388..eae1c1fe 100644 --- a/css/src/style.scss +++ b/css/src/style.scss @@ -62,7 +62,8 @@ } &.dnd-hover { - background-color: rgba( $color-primary, .3 ); + // background-color: rgba( $color-primary, .1 ); didn't work for some reason + background-color: transparentize( $color-primary, .9 ); } button { @@ -446,7 +447,8 @@ } &.sortable-ghost .task-body { - background-color: rgba( $color-primary, .3 ); + // background-color: rgba( $color-primary, .1 ); didn't work for some reason + background-color: transparentize( $color-primary, .9 ); } .subtasks-container {