mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-31 09:37:15 +01:00
#258 Mehr - Weniger Pfeile geändert
This commit is contained in:
@@ -29,9 +29,10 @@
|
||||
<lib-icon class="isa-ml-5" *ngIf="selectable" [class.up]="quantityDropdown.visible"
|
||||
[class.down]="!quantityDropdown.visible" name="Arrow_right" [height]="'16px'"></lib-icon>
|
||||
</button>
|
||||
<app-ui-dropdown #quantityDropdown>
|
||||
<button class="isa-btn isa-text-left isa-p-16" *ngFor="let val of dropdownValues"
|
||||
(click)="quantityChange.emit(val); quantityDropdown.close()">
|
||||
<app-ui-dropdown #quantityDropdown [(ngModel)]="orderItemListItem.quantity"
|
||||
(ngModelChange)="quantityChange.emit($event);quantityDropdown.close()">
|
||||
<button appUiDropdownItem class="isa-btn isa-text-left isa-p-16"
|
||||
*ngFor="let val of dropdownValues" [value]="val">
|
||||
{{ val }}x
|
||||
</button>
|
||||
</app-ui-dropdown>
|
||||
@@ -87,7 +88,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<button class="isa-btn isa-btn-default isa-p-0 isa-flex isa-align-items-center" (click)="more = false">
|
||||
<lib-icon name="Arrow_left" height="15px" class="isa-flex isa-mr-5"></lib-icon>
|
||||
<lib-icon name="Arrow_back" height="15px" class="isa-flex isa-mr-5"></lib-icon>
|
||||
<strong>Weniger</strong>
|
||||
</button>
|
||||
</ng-container>
|
||||
@@ -105,7 +106,7 @@
|
||||
<button class="isa-btn isa-btn-default isa-p-0 isa-flex isa-align-items-center" (click)="more = true"
|
||||
*ngIf="!more">
|
||||
<strong>Mehr</strong>
|
||||
<lib-icon name="Arrow_right" height="15px" class="isa-flex isa-ml-5"></lib-icon>
|
||||
<lib-icon name="Arrow_More" height="15px" class="isa-flex isa-ml-5"></lib-icon>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user