/* Remove outer table border */ .tabulator { border: none !important; } /* Remove header and row cell borders */ .tabulator-header, .tabulator-header .tabulator-col, .tabulator-tableholder, .tabulator-table, .tabulator-row, .tabulator-row .tabulator-cell { border: none !important; } /* Remove column header bottom border and row separators */ .tabulator-header { border-bottom: none !important; background-color: transparent !important; /*border-top-left-radius: 25%;*/ /*border-top-right-radius: 25%;*/ } .tabulator-row { border-bottom: none !important; background-color: transparent !important; } /* Remove look on hover/selected without borders */ .tabulator-row:hover { box-shadow: none !important; } .tabulator-row.tabulator-selected { box-shadow: none !important; } .tabulator-row.tabulator-row-odd { background-color: transparent !important; } /* Rounded border for images in cells */ .tabulator-cell img { border-radius: 50%; object-fit: cover; } /* Scope to this table only */ .tabulator, .tabulator-header, .tabulator-header .tabulator-header-contents, .tabulator-header .tabulator-col{ background: none !important; }