Adapted row color when hovering on selected rows

Before row color was changing from selected-blue to grey, although row
was still selected, which was somehow confusing for the user.
Now color stays blue.
This commit is contained in:
Cris
2020-01-28 12:33:23 +01:00
committed by hainberg
parent 198a3eb2d5
commit f22931ffa8
+5
View File
@@ -12,3 +12,8 @@
.tabulator-page.active {
color: #337ab7 !important;
}
/* Avoid confusing color change when hovering over selected rows */
.tabulator-row.tabulator-selected:hover {
background-color: #769bcc !important;
}