CSS updates

This commit is contained in:
Adina Țeudan 2024-04-09 00:17:42 +03:00
parent 8a2033740e
commit 301ea99abe
3 changed files with 8 additions and 4 deletions

View File

@ -1,9 +1,10 @@
@use 'common-mixins';
.mat-mdc-select {
padding: 0 11px;
padding: 0 calc(var(--iqser-inputs-height) - 25px);
box-sizing: border-box;
--mat-select-trigger-text-line-height: 36px;
--mat-select-trigger-text-line-height: var(--iqser-inputs-height);
--mat-select-trigger-text-size: var(--iqser-inputs-font-size);
}
.mat-mdc-select-panel {

View File

@ -1,5 +1,5 @@
:host {
display: block;
display: contents;
}
mat-icon.disabled {

View File

@ -57,7 +57,10 @@ export abstract class PaginatedEntitiesService<
}
updateSearchQueryAndReload(value: string): Observable<Class[]> {
return this.loadPage(0, this._currentConfig.pageSize, { [this._searchKey]: value } as SearchOptions);
return this.loadPage(0, this._currentConfig.pageSize, {
...this._currentConfig.options,
[this._searchKey]: value,
} as SearchOptions);
}
reloadPage(): Observable<Class[]> {