Files
FHC-Core/public/css/Tabulator.css
T
Cris 67a5fe82e7 Fixed: Now column-picker activates/deactivates correctly column buttons
Before the problem was using the pseudoclass 'active'. Now, by using
a css class instead, it works.
Also, before when clicking the button twice (activate/deactivate) - it
was always on focus (and therefore always grey). Also fixed.
2020-05-05 16:07:48 +02:00

42 lines
859 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;
}
/* Frame the table */
.tabulator {
border: 1px solid lightgrey;
border-bottom: none;
border-top-left-radius: 0.5em;
border-top-right-radius: 0.5em;
}
/* Frame the header cells */
.tabulator-col:not(:first-of-type) {
border-left: 0.5px solid lightgrey;
}
/* More space for header title (avoids triple points at the end) */
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title {
overflow: initial;
}
.btn-select-col-selected
{
background-color: #e6e6e6;
}