From 780da16dded77ffd1e3b3dce2970086f29590fd0 Mon Sep 17 00:00:00 2001 From: Giga Chubinidze Date: Wed, 9 Aug 2023 04:57:01 +0400 Subject: [PATCH] Sorting icons are visible in table header row [SCI-8725] --- app/assets/stylesheets/report_index.scss | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/app/assets/stylesheets/report_index.scss b/app/assets/stylesheets/report_index.scss index 0a23c4d4c..d2875f12a 100644 --- a/app/assets/stylesheets/report_index.scss +++ b/app/assets/stylesheets/report_index.scss @@ -52,6 +52,18 @@ .dataTables_scrollHead { flex-shrink: 0; + + .table.dataTable .sorting { + &::after { + opacity: 0; + } + + &:hover { + &::after { + opacity: 1; + } + } + } } } @@ -76,6 +88,9 @@ display: initial; } } + td:nth-child(4) { + min-width: min-content; + } } }