Fix UI Bug To Show Quantity on Details page

This commit is contained in:
Sebastian
2020-10-19 09:37:55 +02:00
parent 4ab7210e26
commit 312da5a73b
2 changed files with 6 additions and 2 deletions

View File

@@ -28,10 +28,10 @@
</div>
<div class="detail">
<div class="name">Menge</div>
<div class="value">
<div class="value isa-flex isa-justify-content-center">
<button
[class.hidden]="inputQuantity"
class="isa-btn btn-quantity isa-text-left isa-p-0"
class="isa-btn btn-quantity isa-text-left isa-p-0 isa-font-dark"
[disabled]="!selectable"
(click)="quantityDropdown.toggle()"
>

View File

@@ -121,6 +121,10 @@ button:disabled.isa-btn {
background: $button-disabled-color !important;
border: none !important;
color: $isa-white !important;
&.isa-font-dark {
color: initial !important;
}
}
.isa-btn-block {