Add hover effect on datatable columns headers [SCI-8045]

This commit is contained in:
sboursen-scinote 2023-03-06 08:32:55 +01:00
parent 676eb96d00
commit e325458f2e

View file

@ -18,6 +18,18 @@
flex-direction: column;
height: 100%;
width: 100%;
.table.dataTable .sorting {
&::after {
opacity: 0;
}
&:hover {
&::after {
opacity: 1;
}
}
}
}
.toolbar {