Skip to content
Code-Schnipsel Gruppen Projekte
Commit 82564840 erstellt von Michael Danielczok's avatar Michael Danielczok
Dateien durchsuchen

fix: Price will change in response to currency change.

refactor: Delete from basket icon positioned.
Übergeordneter 87ce29ca
Keine zugehörigen Branchen gefunden
Keine zugehörigen Tags gefunden
Keine zugehörigen Merge Requests gefunden
......@@ -42,7 +42,6 @@ body.header-fixed .quiqqer-order-basket-small-container {
}
.quiqqer-order-basket-small-articles-article-content {
margin-right: 1.3em;
width: 100%
}
......@@ -65,10 +64,9 @@ body.header-fixed .quiqqer-order-basket-small-container {
.quiqqer-order-basket-small-articles-article-content .fa {
color: #ababab;
cursor: pointer;
position: absolute;
right: 0;
top: 0;
transition: color 0.15s ease-in-out;
float: right;
margin-left: 10px;
}
.quiqqer-order-basket-small-articles-article-content .fa:hover {
......
......@@ -7,4 +7,17 @@
.featuredProducts-list-box-entries-entry-content-title {
color: inherit;
}
/**************************************/
/* Product children slider (vertical) */
/**************************************/
.quiqqer-products-control-product-childrenslider-entry .product-retailPrice {
opacity: 0.6;
font-size: 0.9rem;
}
.quiqqer-products-control-product-childrenslider-entry .product-price {
font-size: 1.1rem;
}
\ No newline at end of file
......@@ -483,6 +483,10 @@
margin: 1em 0;
}
.cologne-products-productGallery-products-product-price .qui-products-price-display {
display: inline;
}
.product-buttons {
margin-top: auto;
}
......@@ -570,6 +574,11 @@
padding-bottom: 10px;
}
.cologne-productList-product-details-content-price .qui-products-price-display {
display: inline;
}
.cologne-productList-product-details-content-buttons {
margin-top: 1em;
}
......@@ -612,6 +621,10 @@
padding: 0 10px;
}
.quiqqer-productList-product-list-price .qui-products-price-display {
display: inline;
}
@media screen and (max-width: 767px) {
.quiqqer-productList-product-list {
display: grid;
......
......@@ -8,6 +8,9 @@
</div>
<div class="quiqqer-order-basket-small-articles-article-content">
<span class="quiqqer-order-basket-small-articles-article-delete fa fa-fw fa-trash"
title="{locale group='quiqqer/template-cologne' var='template.basket.removeProductFromBasket'}"></span>
<h2>{$product.title}</h2>
<div class="quiqqer-order-basket-small-articles-article-price-wrapper">
{if !isset($product.displayPrice) || $product.displayPrice}
......@@ -26,9 +29,6 @@
{/if}
</span>
</div>
<span class="quiqqer-order-basket-small-articles-article-delete fa fa-fw fa-trash"
title="{locale group='quiqqer/template-cologne' var='template.basket.removeProductFromBasket'}"></span>
</div>
</div>
......
......@@ -17,11 +17,15 @@
{if !$hidePrice}
<div class="cologne-productList-product-details-content-price">
{locale
group="quiqqer/erp"
var="price.starting.from"
price=$Product->getMinimumPrice()->getDisplayPrice()
}
{if $Product->getAttribute('hasVariablePrice')}
{locale
group="quiqqer/erp"
var="price.starting.from"
price={control control="QUI\ERP\Products\Controls\Price" Price=$Product->getPrice()}
}
{else}
{control control="QUI\ERP\Products\Controls\Price" Price=$Product->getPrice()}
{/if}
</div>
{/if}
......
......@@ -12,7 +12,15 @@
</header>
<span class="cologne-products-productGallery-products-product-price">
{control control="QUI\ERP\Products\Controls\Price" Price=$Product->getPrice()}
{if $Product->getAttribute('hasVariablePrice')}
{locale
group="quiqqer/erp"
var="price.starting.from"
price={control control="QUI\ERP\Products\Controls\Price" Price=$Product->getPrice()}
}
{else}
{control control="QUI\ERP\Products\Controls\Price" Price=$Product->getPrice()}
{/if}
</span>
<div class="product-buttons">
......
......@@ -43,11 +43,15 @@
{if !$hidePrice}
<div class="quiqqer-productList-product-list-price font-weight-medium">
{locale
group="quiqqer/erp"
var="price.starting.from"
price=$Product->getPrice()->getDisplayPrice()
}
{if $Product->getAttribute('hasVariablePrice')}
{locale
group="quiqqer/erp"
var="price.starting.from"
price={control control="QUI\ERP\Products\Controls\Price" Price=$Product->getPrice()}
}
{else}
{control control="QUI\ERP\Products\Controls\Price" Price=$Product->getPrice()}
{/if}
</div>
{/if}
</article>
\ No newline at end of file
0% Lade oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren