From 6c0f123bd97148f8696038f63c9951c241b71990 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adina=20=C8=9Aeudan?= Date: Thu, 16 Sep 2021 00:31:26 +0300 Subject: [PATCH] Table css improvements --- src/lib/listing/table/table.component.scss | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/src/lib/listing/table/table.component.scss b/src/lib/listing/table/table.component.scss index b6c834f..ee2c2ce 100644 --- a/src/lib/listing/table/table.component.scss +++ b/src/lib/listing/table/table.component.scss @@ -60,6 +60,16 @@ } } + &.disabled > div { + background-color: $grey-2; + color: $grey-7; + + .action-buttons { + color: initial; + } + } + + .table-item-title { font-weight: 600; @include line-clamp(1); @@ -94,18 +104,18 @@ } &:hover { - > div { - background-color: $grey-8; - - &.selection-column iqser-round-checkbox .wrapper { - opacity: 1; - } + > div.selection-column iqser-round-checkbox .wrapper { + opacity: 1; } .action-buttons { display: flex; } } + + &:hover:not(.disabled) > div { + background-color: $grey-8; + } } }