-
Notifications
You must be signed in to change notification settings - Fork 268
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Changed ng version before material migration * migration for material' * Upgrading NX and start fixing styles * Make all the part build * Fixed core unit test and excluded instable ones * Fixed most of unit tests failing * Fixed unit tests * Fixed last unit tests * fixed unit test problem and some other e2e * Fixed unit tests after rebase * [AAE-18267] change unit test setup for auth service (#9216) * [AAE-18267] change unit test setup for auth service * [AAE-18267] remove exclude * [AAE-18267] removed CoreTestingModule from imports * remaining unit test fixes for the Angular 15 update (#9218) * removing excludes from working tests * test fixes for CategoriesManagementComponent * [ci:force] reenabling tests / fixes * fixes in process-services-cloud * change html element type * fix selector in StartProcessComponent * Fixing unit test after last rebase + lint * ACS-7555 Fixed styles for node type filters * ACS-7555 Removed redundant padding * ACS-7555 Outlined input for text filter * ACS-7555 Resolved conflicts --------- Co-authored-by: Vito Albano <[email protected]> Co-authored-by: Wojciech Duda <[email protected]>
- Loading branch information
1 parent
d99979d
commit e7c0223
Showing
5 changed files
with
63 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 10 additions & 3 deletions
13
lib/content-services/src/lib/search/components/search-text/search-text.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,17 @@ | ||
<mat-form-field class="adf-search-text-form-field"> | ||
<mat-form-field | ||
class="adf-search-text-form-field" | ||
appearance="outline"> | ||
<mat-label>{{ settings?.placeholder | translate }}</mat-label> | ||
<input | ||
matInput | ||
placeholder="{{ settings?.placeholder | translate }}" | ||
[(ngModel)]="value" | ||
(change)="onChangedHandler($event)"> | ||
<button mat-button *ngIf="value" matSuffix (click)="clear()"> | ||
<button | ||
mat-button | ||
*ngIf="value" | ||
matSuffix | ||
(click)="clear()" | ||
class="adf-search-text-form-field-clear-button"> | ||
<mat-icon>close</mat-icon> | ||
</button> | ||
</mat-form-field> |
13 changes: 13 additions & 0 deletions
13
lib/content-services/src/lib/search/components/search-text/search-text.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,18 @@ | ||
.adf-search-text { | ||
.adf-search-text-form-field { | ||
width: 100%; | ||
height: 58.5px; | ||
|
||
&-clear-button { | ||
min-width: unset; | ||
border-radius: 50%; | ||
height: 1.5em; | ||
width: 1.5em; | ||
margin-right: 8px; | ||
|
||
mat-icon { | ||
margin-right: 0; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters