Skip to content

Commit e56455f

Browse files
authoredMar 27, 2023
Merge pull request #3281 from IgniteUI/mpopov/fix-grid-crm
fix searchbar in crm sample
2 parents 4344f83 + c85027e commit e56455f

File tree

2 files changed

+3
-27
lines changed

2 files changed

+3
-27
lines changed
 

‎projects/app-crm/src/app/grid-crm/grid-crm.component.html

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<span class="crm-sample-toolbar__ellipsis">Business Propeller</span>
1616
</div>
1717
<div class="sample-flex-container">
18-
<igx-input-group type="search" class="searchInputGroup">
18+
<igx-input-group type="search" class="searchInputGroup" displayDensity="compact">
1919
<igx-prefix>
2020
<igx-icon class="prefixIcon" *ngIf="searchText.length === 0">search</igx-icon>
2121
<igx-icon class="prefixIcon" *ngIf="searchText.length > 0" (click)="clearSearch()">clear
@@ -34,11 +34,13 @@
3434
No results
3535
</span>
3636
</div>
37+
3738
<div class="caseSensitiveButton">
3839
<button igxButton="icon" igxRipple [igxRippleCentered]="true" (click)="updateSearch()" [class]="caseSensitive? 'case-sensitive--active' : ''">
3940
<igx-icon class="caseSensitiveIcon" family="material">text_fields</igx-icon>
4041
</button>
4142
</div>
43+
4244
<div class="searchButtons">
4345
<button igxButton="icon" igxRipple [igxRippleCentered]="true" (click)="grid1.findPrev(searchText, caseSensitive)">
4446
<igx-icon family="material">navigate_before</igx-icon>

‎projects/app-crm/src/app/grid-crm/grid-crm.component.scss

-26
Original file line numberDiff line numberDiff line change
@@ -114,15 +114,6 @@
114114
max-width: 68ch;
115115
}
116116

117-
.igx-grid-toolbar__button-space {
118-
.igx-icon {
119-
font-size: 1rem;
120-
display: flex;
121-
justify-content: center;
122-
align-items: center;
123-
}
124-
}
125-
126117
.igx-grid-toolbar__custom-content {
127118
flex: 1 0 0%;
128119
}
@@ -161,28 +152,11 @@
161152
width: 100%;
162153
}
163154

164-
.igx-input-group--search .igx-input-group__bundle {
165-
height: rem(36px);
166-
width: 100%;
167-
overflow: hidden;
168-
169-
.igx-input-group__bundle-main {
170-
padding-top: 0.6rem;
171-
height: 36px;
172-
}
173-
}
174-
175155
.sample-flex-container {
176156
.igx-input-group,
177157
.igx-input-group--focused {
178158
font-size: 13px;
179159
overflow: hidden;
180-
181-
igx-icon {
182-
font-size: 1rem;
183-
width: 1rem;
184-
height: 1rem;
185-
}
186160
}
187161

188162
.igx-input-group__input {

0 commit comments

Comments
 (0)
Please sign in to comment.