- corretto la gestione degli Sconti
- Duplicare un Catalogo
This commit is contained in:
@@ -411,7 +411,7 @@ h3 {
|
||||
.my-card-prod {
|
||||
transition: box-shadow 0.3s ease, transform 0.3s ease;
|
||||
/* Add a transition for a smooth effect */
|
||||
box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
|
||||
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
|
||||
width: 100%;
|
||||
max-width: 300px;
|
||||
padding: 0.5rem 0.5rem;
|
||||
@@ -1994,8 +1994,10 @@ h3 {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
padding-top: 56.25%;
|
||||
max-width: 800px; /* Limita la larghezza massima */
|
||||
margin: 0 auto; /* Centra il video orizzontalmente */
|
||||
max-width: 800px;
|
||||
/* Limita la larghezza massima */
|
||||
margin: 0 auto;
|
||||
/* Centra il video orizzontalmente */
|
||||
|
||||
/* 16:9 Aspect Ratio */
|
||||
}
|
||||
@@ -2006,7 +2008,8 @@ h3 {
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: none; /* Rimuovi eventuali bordi */
|
||||
border: none;
|
||||
/* Rimuovi eventuali bordi */
|
||||
}
|
||||
|
||||
.fake-link {
|
||||
@@ -2604,9 +2607,48 @@ body.body--dark {
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: rgba(255, 255, 255, 0.7); /* Sfondo semi-trasparente */
|
||||
background-color: rgba(255, 255, 255, 0.7);
|
||||
/* Sfondo semi-trasparente */
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
z-index: 9999;
|
||||
}
|
||||
|
||||
.text-strike {
|
||||
text-decoration-line: line-through;
|
||||
}
|
||||
|
||||
.product-price-discount {
|
||||
font-weight: 500;
|
||||
line-height: 1.2;
|
||||
font-size: 1rem;
|
||||
color: #f60;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.ordine_scontato_nuovo {
|
||||
font-size: 1.1rem;
|
||||
font-weight: bold;
|
||||
color: green;
|
||||
background-color: #fff5ee; /* seashell color background */
|
||||
padding: 10px;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.ordine_scritta_sconto {
|
||||
font-size: 1.1rem;
|
||||
color:red;
|
||||
background-color: #fff5ee; /* seashell color background */
|
||||
padding: 4px;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.center-button {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
Reference in New Issue
Block a user