From e325458f2ef84f39f922bd4e0665346e808bcd13 Mon Sep 17 00:00:00 2001 From: sboursen-scinote Date: Mon, 6 Mar 2023 08:32:55 +0100 Subject: [PATCH] Add hover effect on datatable columns headers [SCI-8045] --- app/assets/stylesheets/protocols/index.scss | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/app/assets/stylesheets/protocols/index.scss b/app/assets/stylesheets/protocols/index.scss index eaf29b46f..f384cde5c 100644 --- a/app/assets/stylesheets/protocols/index.scss +++ b/app/assets/stylesheets/protocols/index.scss @@ -18,6 +18,18 @@ flex-direction: column; height: 100%; width: 100%; + + .table.dataTable .sorting { + &::after { + opacity: 0; + } + + &:hover { + &::after { + opacity: 1; + } + } + } } .toolbar {