mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-05 22:29:27 +00:00
b2542b5fcc
Now this is a standard behaviour of TableWidget. Removed also table related help information from general Hilfe-zu-dieser-Seite help. [ALPHA VERSION]: minor issue to be fixed: button color not toggling correctly when opening help then settings (and way round)
37 lines
801 B
CSS
37 lines
801 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;
|
|
} |