Added border to tabulator / tabulator header cells

This commit is contained in:
Cris
2020-01-29 12:09:10 +01:00
committed by hainberg
parent f22931ffa8
commit bf1427e901
+14
View File
@@ -16,4 +16,18 @@
/* 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;
margin-top: 20px;
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;
}