File tree Expand file tree Collapse file tree 6 files changed +24
-10
lines changed
projects/igniteui-angular/src/lib
core/styles/components/grid Expand file tree Collapse file tree 6 files changed +24
-10
lines changed Original file line number Diff line number Diff line change 546
546
@extend %igx-grid__filtering-dropdown-items !optional ;
547
547
}
548
548
549
+ @include e (filtering- dropdown- text) {
550
+ @extend %igx-grid__filtering-dropdown-text !optional ;
551
+ }
552
+
549
553
@include e (filtering- row) {
550
554
@extend %igx-grid__filtering-row !optional ;
551
555
}
Original file line number Diff line number Diff line change 2401
2401
align-items : center ;
2402
2402
}
2403
2403
2404
+ %igx-grid__filtering-dropdown-text {
2405
+ margin-left : rem (16px );
2406
+ }
2407
+
2404
2408
%igx-grid__filtering-row--cosy {
2405
2409
height : map-get ($grid-header-height , ' cosy' );
2406
2410
}
Original file line number Diff line number Diff line change @@ -160,10 +160,12 @@ <h6 class="igx-filter-empty__title">
160
160
[name] ="selectedColumn.filters.condition(conditionSelect.value).iconName ">
161
161
</ igx-icon >
162
162
< igx-select-item *ngFor ="let condition of getConditionList() " [value] ="condition ">
163
- < igx-icon fontSet ="filtering-icons "
164
- [name] ="selectedColumn.filters.condition(condition).iconName ">
165
- </ igx-icon >
166
- < span > {{getConditionFriendlyName(condition)}}</ span >
163
+ < div class ="igx-grid__filtering-dropdown-items ">
164
+ < igx-icon fontSet ="filtering-icons "
165
+ [name] ="selectedColumn.filters.condition(condition).iconName ">
166
+ </ igx-icon >
167
+ < span class ="igx-grid__filtering-dropdown-text "> {{getConditionFriendlyName(condition)}}</ span >
168
+ </ div >
167
169
</ igx-select-item >
168
170
</ igx-select >
169
171
Original file line number Diff line number Diff line change 5
5
[selected] ="isConditionSelected(condition) ">
6
6
< div class ="igx-grid__filtering-dropdown-items ">
7
7
< igx-icon fontSet ="filtering-icons " [name] ="getCondition(condition).iconName "> </ igx-icon >
8
- < span style =" margin-left: 16px "> {{ translateCondition(condition) }}</ span >
8
+ < span class =" igx-grid__filtering-dropdown-text "> {{ translateCondition(condition) }}</ span >
9
9
</ div >
10
10
</ igx-drop-down-item >
11
11
</ igx-drop-down >
Original file line number Diff line number Diff line change 9
9
< igx-icon *ngIf ="!expressionUI.expression.condition "> filter_list</ igx-icon >
10
10
</ igx-prefix >
11
11
< igx-select-item *ngFor ="let condition of conditions " [value] ="condition " [selected] ="isConditionSelected(condition) ">
12
- < igx-icon fontSet ="filtering-icons " [name] ="getCondition(condition).iconName "> </ igx-icon >
13
- < span > {{translateCondition(condition)}}</ span >
12
+ < div class ="igx-grid__filtering-dropdown-items ">
13
+ < igx-icon fontSet ="filtering-icons " [name] ="getCondition(condition).iconName "> </ igx-icon >
14
+ < span class ="igx-grid__filtering-dropdown-text "> {{translateCondition(condition)}}</ span >
15
+ </ div >
14
16
</ igx-select-item >
15
17
</ igx-select >
16
18
Original file line number Diff line number Diff line change @@ -168,12 +168,14 @@ <h4>{{ column.header || column.field }}</h4>
168
168
[value] ="condition ">
169
169
< div class ="igx-grid__filtering-dropdown-items ">
170
170
< igx-icon fontSet ="filtering-icons " [name] ="getCondition(condition).iconName "> </ igx-icon >
171
- < span style =" margin-left: 16px "> {{ translateCondition(condition) }}</ span >
171
+ < span class =" igx-grid__filtering-dropdown-text "> {{ translateCondition(condition) }}</ span >
172
172
</ div >
173
173
</ igx-drop-down-item >
174
174
< igx-drop-down-item *ngIf ="showCustomFilterItem() ">
175
- < igx-icon > filter_list</ igx-icon >
176
- < span style ="margin-left: 16px "> {{ grid.resourceStrings.igx_grid_excel_custom_filter }}</ span >
175
+ < div class ="igx-grid__filtering-dropdown-items ">
176
+ < igx-icon > filter_list</ igx-icon >
177
+ < span class ="igx-grid__filtering-dropdown-text "> {{ grid.resourceStrings.igx_grid_excel_custom_filter }}</ span >
178
+ </ div >
177
179
</ igx-drop-down-item >
178
180
</ div >
179
181
</ igx-drop-down >
You can’t perform that action at this time.
0 commit comments