Files
FHC-Core/public/css/Tabulator.css
T
Cris f22931ffa8 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.
2020-01-28 12:33:23 +01:00

19 lines
359 B
CSS

.tabulator-col {
font-size: 14px;
}
.tabulator-page {
color: black;
opacity: 1 !important;
padding: 2px 7px !important;
border: 0px !important;
}
.tabulator-page.active {
color: #337ab7 !important;
}
/* Avoid confusing color change when hovering over selected rows */
.tabulator-row.tabulator-selected:hover {
background-color: #769bcc !important;
}