mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-15 14:02:17 +00:00
f22931ffa8
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.
19 lines
359 B
CSS
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;
|
|
} |