Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion packages/web/titanium/data-table/data-table-core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,10 @@ export class TitaniumDataTableCore<T extends object> extends LitElement {
top: 0;
z-index: 3;
}

thead tr th[settings] {
top: 0; /* vertical pin only with sticky-header */
}
}

table[has-selected-items] {
Expand All @@ -246,7 +250,6 @@ export class TitaniumDataTableCore<T extends object> extends LitElement {
padding: 0;
position: sticky;
left: 0;
top: 0;
z-index: 4;

content-container {
Expand Down
Loading