Suite à MAJ 2.3.4, il manquait des choses dans des templates
This commit is contained in:
@@ -5052,6 +5052,14 @@ a.thumbnail.active {
|
||||
.alert-danger .alert-link {
|
||||
color: #843534;
|
||||
}
|
||||
@-webkit-keyframes progress-bar-stripes {
|
||||
from {
|
||||
background-position: 40px 0;
|
||||
}
|
||||
to {
|
||||
background-position: 0 0;
|
||||
}
|
||||
}
|
||||
@keyframes progress-bar-stripes {
|
||||
from {
|
||||
background-position: 40px 0;
|
||||
@@ -5087,6 +5095,7 @@ a.thumbnail.active {
|
||||
}
|
||||
.progress.active .progress-bar,
|
||||
.progress-bar.active {
|
||||
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
||||
animation: progress-bar-stripes 2s linear infinite;
|
||||
}
|
||||
.progress-bar-success {
|
||||
@@ -5797,11 +5806,14 @@ button.close {
|
||||
outline: 0;
|
||||
}
|
||||
.modal.fade .modal-dialog {
|
||||
-webkit-transform: translate(0, -25%);
|
||||
-ms-transform: translate(0, -25%);
|
||||
transform: translate(0, -25%);
|
||||
transition: -webkit-transform 0.3s ease-out;
|
||||
transition: transform 0.3s ease-out;
|
||||
}
|
||||
.modal.in .modal-dialog {
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
}
|
||||
@@ -6158,23 +6170,29 @@ button.close {
|
||||
}
|
||||
@media all and (transform-3d), (-webkit-transform-3d) {
|
||||
.carousel-inner > .item {
|
||||
transition: -webkit-transform 0.6s ease-in-out;
|
||||
transition: transform 0.6s ease-in-out;
|
||||
-webkit-backface-visibility: hidden;
|
||||
backface-visibility: hidden;
|
||||
-webkit-perspective: 1000px;
|
||||
perspective: 1000px;
|
||||
}
|
||||
.carousel-inner > .item.next,
|
||||
.carousel-inner > .item.active.right {
|
||||
-webkit-transform: translate3d(100%, 0, 0);
|
||||
transform: translate3d(100%, 0, 0);
|
||||
left: 0;
|
||||
}
|
||||
.carousel-inner > .item.prev,
|
||||
.carousel-inner > .item.active.left {
|
||||
-webkit-transform: translate3d(-100%, 0, 0);
|
||||
transform: translate3d(-100%, 0, 0);
|
||||
left: 0;
|
||||
}
|
||||
.carousel-inner > .item.next.left,
|
||||
.carousel-inner > .item.prev.right,
|
||||
.carousel-inner > .item.active {
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0);
|
||||
left: 0;
|
||||
}
|
||||
@@ -6666,8 +6684,9 @@ button.close {
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
}
|
||||
/* makes the font 33% larger relative to the icon container */
|
||||
.fa-lg {
|
||||
@@ -6727,41 +6746,60 @@ button.close {
|
||||
margin-left: .3em;
|
||||
}
|
||||
.fa-spin {
|
||||
-webkit-animation: fa-spin 2s infinite linear;
|
||||
animation: fa-spin 2s infinite linear;
|
||||
}
|
||||
.fa-pulse {
|
||||
-webkit-animation: fa-spin 1s infinite steps(8);
|
||||
animation: fa-spin 1s infinite steps(8);
|
||||
}
|
||||
@keyframes fa-spin {
|
||||
@-webkit-keyframes fa-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
@keyframes fa-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
.fa-rotate-90 {
|
||||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
|
||||
-webkit-transform: rotate(90deg);
|
||||
-ms-transform: rotate(90deg);
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
.fa-rotate-180 {
|
||||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
|
||||
-webkit-transform: rotate(180deg);
|
||||
-ms-transform: rotate(180deg);
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
.fa-rotate-270 {
|
||||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
|
||||
-webkit-transform: rotate(270deg);
|
||||
-ms-transform: rotate(270deg);
|
||||
transform: rotate(270deg);
|
||||
}
|
||||
.fa-flip-horizontal {
|
||||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
|
||||
-webkit-transform: scale(-1, 1);
|
||||
-ms-transform: scale(-1, 1);
|
||||
transform: scale(-1, 1);
|
||||
}
|
||||
.fa-flip-vertical {
|
||||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
|
||||
-webkit-transform: scale(1, -1);
|
||||
-ms-transform: scale(1, -1);
|
||||
transform: scale(1, -1);
|
||||
}
|
||||
@@ -6770,7 +6808,8 @@ button.close {
|
||||
:root .fa-rotate-270,
|
||||
:root .fa-flip-horizontal,
|
||||
:root .fa-flip-vertical {
|
||||
filter: none;
|
||||
-webkit-filter: none;
|
||||
filter: none;
|
||||
}
|
||||
.fa-stack {
|
||||
position: relative;
|
||||
@@ -8556,8 +8595,9 @@ header .header .language-container .currency-switch .select {
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f078";
|
||||
}
|
||||
.navbar .navbar-cart .dropdown > a:after,
|
||||
@@ -8917,8 +8957,9 @@ header .header .language-container .currency-switch .select {
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f071";
|
||||
display: block;
|
||||
font-size: 2.2em;
|
||||
@@ -9046,8 +9087,9 @@ a {
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f105";
|
||||
}
|
||||
.btn {
|
||||
@@ -9278,8 +9320,9 @@ a {
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f078";
|
||||
}
|
||||
.panel-heading {
|
||||
@@ -9455,8 +9498,9 @@ a {
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f071";
|
||||
display: block;
|
||||
font-size: 2.2em;
|
||||
@@ -9514,8 +9558,9 @@ a {
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f054";
|
||||
color: #f49a17;
|
||||
margin-left: -15px;
|
||||
@@ -9568,8 +9613,9 @@ a {
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f068";
|
||||
}
|
||||
.block-nav .block-content li a.accordion-toggle.collapsed:after {
|
||||
@@ -9952,8 +9998,9 @@ a.label-delivered:focus {
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f00d";
|
||||
margin-right: .3em;
|
||||
}
|
||||
@@ -10001,6 +10048,7 @@ label {
|
||||
content: "\f002";
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
line-height: 0;
|
||||
@@ -10015,6 +10063,7 @@ label {
|
||||
}
|
||||
.overlay:hover:after,
|
||||
.overlay:focus:after {
|
||||
-webkit-transform: translate(0, 50%);
|
||||
-ms-transform: translate(0, 50%);
|
||||
transform: translate(0, 50%);
|
||||
}
|
||||
@@ -10025,8 +10074,9 @@ label {
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f015";
|
||||
color: #c9c9c9;
|
||||
font-size: 26px;
|
||||
@@ -10042,8 +10092,9 @@ label {
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f007";
|
||||
color: #f49a17;
|
||||
font-size: 19px;
|
||||
@@ -10075,8 +10126,9 @@ label {
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f07a";
|
||||
color: #fff;
|
||||
font-size: 24px;
|
||||
@@ -10197,6 +10249,7 @@ td.product .name > a:focus,
|
||||
text-decoration: line-through;
|
||||
}
|
||||
#products-new .products-grid .overlay:after {
|
||||
-webkit-transform: translate(0, 40%);
|
||||
-ms-transform: translate(0, 40%);
|
||||
transform: translate(0, 40%);
|
||||
}
|
||||
@@ -10412,8 +10465,9 @@ td.product .name > a:focus,
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f005";
|
||||
}
|
||||
#product-details .product-promo .sale-period {
|
||||
@@ -10493,8 +10547,9 @@ td.product .name > a:focus,
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f002";
|
||||
font-size: 30px;
|
||||
float: left;
|
||||
@@ -10562,8 +10617,9 @@ td.product .name > a:focus,
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f0e0";
|
||||
color: #8b8b8b;
|
||||
font-size: 18px;
|
||||
@@ -10603,8 +10659,9 @@ td.product .name > a:focus,
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f041";
|
||||
font-size: 34px;
|
||||
}
|
||||
@@ -10615,8 +10672,9 @@ td.product .name > a:focus,
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f10b";
|
||||
font-size: 30px;
|
||||
margin-top: -8px;
|
||||
@@ -10629,8 +10687,9 @@ td.product .name > a:focus,
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f0e0";
|
||||
font-size: 17px;
|
||||
margin-left: 2px;
|
||||
@@ -10648,8 +10707,9 @@ td.product .name > a:focus,
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f1d8";
|
||||
font-size: 17px;
|
||||
}
|
||||
@@ -10815,8 +10875,9 @@ td.product .name > a:focus,
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f077";
|
||||
color: #f49a17;
|
||||
display: block;
|
||||
@@ -10852,8 +10913,9 @@ td.product .name > a:focus,
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f078";
|
||||
float: left;
|
||||
width: 20px;
|
||||
@@ -10880,8 +10942,9 @@ td.product .name > a:focus,
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f10b";
|
||||
font-size: 30px;
|
||||
}
|
||||
@@ -10892,8 +10955,9 @@ td.product .name > a:focus,
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f095";
|
||||
font-size: 22px;
|
||||
}
|
||||
@@ -10904,8 +10968,9 @@ td.product .name > a:focus,
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f0e0";
|
||||
font-size: 18px;
|
||||
}
|
||||
@@ -10970,6 +11035,7 @@ td.product .name > a:focus,
|
||||
margin-bottom: 20px;
|
||||
width: 100%;
|
||||
height: 350px;
|
||||
-webkit-filter: grayscale(100%);
|
||||
-moz-filter: grayscale(100%);
|
||||
-ms-filter: grayscale(100%);
|
||||
-o-filter: grayscale(100%);
|
||||
@@ -10991,8 +11057,9 @@ td.product .name > a:focus,
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
-webkit-transform: translate(0, 0);
|
||||
-ms-transform: translate(0, 0);
|
||||
transform: translate(0, 0);
|
||||
content: "\f005";
|
||||
}
|
||||
#sale-details .sale-discount-information .sale-period {
|
||||
@@ -11006,6 +11073,3 @@ td.product .name > a:focus,
|
||||
#sale-details .sale-information .description {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.rev_slider_wrapper {
|
||||
margin-bottom: 15px !important;
|
||||
}
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 1.1 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 1.4 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 2.5 KiB |
@@ -47,8 +47,7 @@ var pseManager = (function($){
|
||||
"options": {},
|
||||
"pseId": null,
|
||||
"useFallback": false,
|
||||
"fallback": $("#pse-options .pse-fallback"),
|
||||
"thumbnails": $('#product-thumbnails')
|
||||
"fallback": $("#pse-options .pse-fallback")
|
||||
};
|
||||
}
|
||||
|
||||
@@ -137,6 +136,7 @@ var pseManager = (function($){
|
||||
selection;
|
||||
|
||||
if (PSE_COUNT > 1) {
|
||||
|
||||
if ($pse.useFallback) {
|
||||
pseId = $pse.fallback.val();
|
||||
} else {
|
||||
@@ -149,14 +149,12 @@ var pseManager = (function($){
|
||||
// not exists, revert
|
||||
displayNotice();
|
||||
setPseForm();
|
||||
selection = getFormSelection();
|
||||
pseId = pseExist(selection);
|
||||
} else {
|
||||
$pse.validity.hide();
|
||||
}
|
||||
}
|
||||
|
||||
$pse.id.val(pseId).trigger('change.pse', pseId);
|
||||
$pse.id.val(pseId);
|
||||
$pse.pseId = pseId;
|
||||
}
|
||||
|
||||
@@ -238,32 +236,6 @@ var pseManager = (function($){
|
||||
} else {
|
||||
$pse.priceOld.html("");
|
||||
$pse.price.html(pse.price);
|
||||
}
|
||||
|
||||
// images
|
||||
if (pse.images.length > 0) {
|
||||
i = 0;
|
||||
$pse.thumbnails.find('.thumbnail').each(function() {
|
||||
if (jQuery.inArray($(this).data('thumbId'), pse.images) !== -1) {
|
||||
$(this).filter('.disabled').removeClass('disabled');
|
||||
|
||||
if (i === 0) {
|
||||
if (!$(this).hasClass('active')) {
|
||||
$pse.thumbnails.find('.thumbnail.active').removeClass('active');
|
||||
$('.product-image > img', $(this).closest("#product-gallery")).attr('src',$(this).attr('href'));
|
||||
$(this).addClass('active');
|
||||
if ($(this).filter(":visible").length != 1) {
|
||||
$pse.thumbnails.carousel('next');
|
||||
}
|
||||
}
|
||||
i++;
|
||||
}
|
||||
} else {
|
||||
$(this).not('.disabled').addClass('disabled');
|
||||
}
|
||||
});
|
||||
} else {
|
||||
$pse.thumbnails.find('.thumbnail.disabled').removeClass('disabled');
|
||||
}
|
||||
}
|
||||
else {
|
||||
@@ -496,14 +468,13 @@ var pseManager = (function($){
|
||||
if (doAjax) {
|
||||
var url_action = $(this).attr("action"),
|
||||
product_id = $("input[name$='product_id']",this).val(),
|
||||
pse_id = $("input.pse-id",this).val(),
|
||||
quantity = $("#quantity",this).val();
|
||||
pse_id = $("input.pse-id",this).val();
|
||||
|
||||
$.ajax({type: "POST", data: $(this).serialize(), url: url_action,
|
||||
success: function(data){
|
||||
$(".cart-container").html($(data).html());
|
||||
// addCartMessageUrl is initialized in layout.tpl
|
||||
$.ajax({url:addCartMessageUrl, data:{ product_id: product_id, pse_id: pse_id, quantity: quantity },
|
||||
$.ajax({url:addCartMessageUrl, data:{ product_id: product_id, pse_id: pse_id },
|
||||
success: function (data) {
|
||||
// Hide all currently active bootbox dialogs
|
||||
bootbox.hideAll();
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
|
||||
.rev_slider_wrapper {
|
||||
margin-bottom: 15px !important;
|
||||
}
|
||||
@@ -8,6 +8,4 @@
|
||||
@import "thelia/import";
|
||||
|
||||
// Import Thelia theme
|
||||
@import "theme/import";
|
||||
|
||||
@import "custom";
|
||||
@import "theme/import";
|
||||
@@ -42,9 +42,6 @@
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: 19%;
|
||||
.thumbnail.disabled {
|
||||
.opacity(.3);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user