Skip to content

Commit

Permalink
fix(grid): missing grid filtercell start border
Browse files Browse the repository at this point in the history
  • Loading branch information
epetrow committed Feb 19, 2024
1 parent 4fcce30 commit b5992ac
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
11 changes: 6 additions & 5 deletions packages/fluent/scss/grid/_layout.scss
Expand Up @@ -349,7 +349,8 @@
position: relative;
overflow: hidden;

.k-table-row:not(:only-child) .k-table-th {
.k-table-row:not(:only-child) .k-table-th,
.k-table-row:not(:only-child) .k-table-td:nth-child(n+2) {
border-inline-start-width: 1px;
}
}
Expand Down Expand Up @@ -394,15 +395,15 @@
z-index: 1;
cursor: default;

&:first-child {
border-inline-start-width: 0;
}

&.k-first {
border-inline-start-width: var( --kendo-grid-header-first-border-width, #{$kendo-grid-header-first-border-width} );
}
}

.k-table-row .k-table-th:first-child:not(.k-first) {
border-inline-start-width: 0;
}

.k-table-th > .k-link {
margin-block: calc( var( --INTERNAL--kendo-grid-header-padding-y, 0 ) * -1 );
margin-inline: calc( var( --INTERNAL--kendo-grid-header-padding-x, 0 ) * -1 );
Expand Down
5 changes: 3 additions & 2 deletions packages/material/scss/grid/_theme.scss
Expand Up @@ -88,7 +88,7 @@
}
}
}

}

.k-grid-pager:focus,
Expand Down Expand Up @@ -178,7 +178,8 @@
}
}

.k-table-thead > .k-table-row:not(:only-child) > .k-table-th {
.k-table-thead > .k-table-row:not(:only-child) > .k-table-th,
.k-table-thead > .k-table-row:not(:only-child) > .k-table-td {
border-inline-start-color: $kendo-grid-border;

&.k-grid-header-sticky {
Expand Down

0 comments on commit b5992ac

Please sign in to comment.