From 28edd3b44ef9ad4eaf35b7ff834913d5daad2048 Mon Sep 17 00:00:00 2001 From: Clint Wylie Date: Tue, 7 Jan 2020 16:07:30 -0800 Subject: [PATCH] data loader style fix for double typed columns (#9137) --- .../load-data-view/schema-table/schema-table.scss | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/web-console/src/views/load-data-view/schema-table/schema-table.scss b/web-console/src/views/load-data-view/schema-table/schema-table.scss index ca0df900f5e..763d5984342 100644 --- a/web-console/src/views/load-data-view/schema-table/schema-table.scss +++ b/web-console/src/views/load-data-view/schema-table/schema-table.scss @@ -25,7 +25,10 @@ background: rgba(19, 129, 201, 0.5); } &.float { - background: rgba(25, 145, 201, 0.5); + background: rgba(22, 129, 201, 0.5); + } + &.double { + background: rgba(25, 129, 201, 0.5); } } @@ -42,7 +45,10 @@ background: rgba(19, 129, 201, 0.1); } &.float { - background: rgba(25, 145, 201, 0.1); + background: rgba(22, 129, 201, 0.1); + } + &.double { + background: rgba(25, 129, 201, 0.1); } }