File tree Expand file tree Collapse file tree 4 files changed +11
-7
lines changed
projects/igniteui-angular/src/lib
core/styles/components/grid Expand file tree Collapse file tree 4 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 542
542
@extend %igx-grid__filtering-cell-indicator--hidden !optional ;
543
543
}
544
544
545
- @include e (filtering- row - dropdown- items) {
546
- @extend %igx-grid__filtering-row- dropdown-items !optional ;
545
+ @include e (filtering- dropdown- items) {
546
+ @extend %igx-grid__filtering-dropdown-items !optional ;
547
547
}
548
548
549
549
@include e (filtering- row) {
Original file line number Diff line number Diff line change 2396
2396
}
2397
2397
}
2398
2398
2399
- %igx-grid__filtering-row- dropdown-items {
2399
+ %igx-grid__filtering-dropdown-items {
2400
2400
display : flex ;
2401
2401
align-items : center ;
2402
2402
}
Original file line number Diff line number Diff line change 3
3
< igx-drop-down-item *ngFor ="let condition of conditions "
4
4
[value] ="condition "
5
5
[selected] ="isConditionSelected(condition) ">
6
- < igx-icon fontSet ="filtering-icons " [name] ="getCondition(condition).iconName "> </ igx-icon >
7
- < span style ="margin-left: 16px "> {{ translateCondition(condition) }}</ span >
6
+ < div class ="igx-grid__filtering-dropdown-items ">
7
+ < igx-icon fontSet ="filtering-icons " [name] ="getCondition(condition).iconName "> </ igx-icon >
8
+ < span style ="margin-left: 16px "> {{ translateCondition(condition) }}</ span >
9
+ </ div >
8
10
</ igx-drop-down-item >
9
11
</ igx-drop-down >
10
12
Original file line number Diff line number Diff line change @@ -166,8 +166,10 @@ <h4>{{ column.header || column.field }}</h4>
166
166
< igx-drop-down-item
167
167
*ngFor ="let condition of conditions "
168
168
[value] ="condition ">
169
- < igx-icon fontSet ="filtering-icons " [name] ="getCondition(condition).iconName "> </ igx-icon >
170
- < span style ="margin-left: 16px "> {{ translateCondition(condition) }}</ span >
169
+ < div class ="igx-grid__filtering-dropdown-items ">
170
+ < igx-icon fontSet ="filtering-icons " [name] ="getCondition(condition).iconName "> </ igx-icon >
171
+ < span style ="margin-left: 16px "> {{ translateCondition(condition) }}</ span >
172
+ </ div >
171
173
</ igx-drop-down-item >
172
174
< igx-drop-down-item *ngIf ="showCustomFilterItem() ">
173
175
< igx-icon > filter_list</ igx-icon >
You can’t perform that action at this time.
0 commit comments