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
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

@mixin _filtering-scroll-mask($theme, $dir) {
display: block;
position: absolute;
width: rem(10px);
position: sticky;
min-width: rem(10px);
Comment thread
simeonoff marked this conversation as resolved.
content: '';
inset-block: rem(-2px);
background: linear-gradient(to #{$dir}, var-get($theme, 'filtering-row-background'), transparent);
Expand Down Expand Up @@ -2527,9 +2527,6 @@
igx-icon {
position: absolute;
inset-inline-start: rem(12px);
// IE fix for vertical alignment
top: 50%;
transform: translateY(-50%);
}

span {
Expand All @@ -2555,13 +2552,15 @@
.igx-grid__filtering-row-scroll-start + .igx-grid__filtering-row-main {
&::before {
@include _filtering-scroll-mask($theme, right);

inset-inline-start: 0;
pointer-events: none;
z-index: 1;
}

&::after {
@include _filtering-scroll-mask($theme, left);

inset-inline-end: 0;
pointer-events: none;
z-index: 1;
Expand Down
Loading