loader
This commit is contained in:
parent
b86e101797
commit
68e6e5bb79
|
|
@ -7,6 +7,7 @@ use Webkul\Category\Models\Category;
|
|||
use Illuminate\Container\Container as App;
|
||||
use Webkul\Category\Models\CategoryTranslation;
|
||||
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
||||
use Illuminate\Support\Facades\Storage;
|
||||
|
||||
/**
|
||||
* Category Reposotory
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
"/js/shop.js": "/js/shop.js?id=89eb7f5427ed81ec3ce7",
|
||||
"/css/shop.css": "/css/shop.css?id=798e3c7a27d0c8764fda"
|
||||
}
|
||||
"/js/shop.js": "/js/shop.js",
|
||||
"/css/shop.css": "/css/shop.css"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1512,11 +1512,12 @@ section.product-detail {
|
|||
}
|
||||
|
||||
.add-to-buttons {
|
||||
display: flex;
|
||||
display: none;
|
||||
flex-direction: row;
|
||||
margin-top: 10px;
|
||||
justify-content: space-between;
|
||||
|
||||
|
||||
.addtocart {
|
||||
border-radius: 0px;
|
||||
width: 49%;
|
||||
|
|
@ -1949,6 +1950,34 @@ section.cart {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 386px){
|
||||
section.cart {
|
||||
.cart-content {
|
||||
.left-side {
|
||||
.misc-controls div {
|
||||
button {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
a {
|
||||
margin-top: 10px;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.box, .remove{
|
||||
margin-right: 15px !important;
|
||||
}
|
||||
}
|
||||
|
||||
.right-side {
|
||||
top: -130px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
//cart pages responsive css end
|
||||
|
||||
// checkout starts here
|
||||
|
|
@ -2188,6 +2217,28 @@ section.cart {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 480px) {
|
||||
.checkout-process {
|
||||
.col-main {
|
||||
.step-content {
|
||||
.address, .order-description {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
.billing-address, .pull-left {
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
.shipping-address, .pull-right {
|
||||
width: 100% !important;
|
||||
margin-top: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// checkout responsive end here
|
||||
|
||||
.attached-products-wrapper {
|
||||
|
|
@ -2446,10 +2497,12 @@ section.review {
|
|||
.review-layouter {
|
||||
flex-direction: column;
|
||||
|
||||
.product-info .product-image {
|
||||
max-width: 280px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
.product-info {
|
||||
.product-image, .product-name, .product-price {
|
||||
max-width: 280px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.review-form {
|
||||
|
|
@ -2922,7 +2975,22 @@ section.review {
|
|||
|
||||
// css for loader
|
||||
.cp-spinner {
|
||||
margin-left: 46%;
|
||||
margin-top: 35%;
|
||||
margin-bottom: 35%;
|
||||
}
|
||||
margin-left: 19%;
|
||||
margin-top: 13%;
|
||||
position: absolute;
|
||||
margin-bottom: 20%;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 720px) {
|
||||
.cp-spinner {
|
||||
margin-left: 42.5%;
|
||||
margin-top: 30%;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 480px) {
|
||||
.cp-spinner {
|
||||
margin-top: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -87,11 +87,9 @@
|
|||
var addTOButton = document.getElementsByClassName('add-to-buttons')[0];
|
||||
|
||||
if(galleryTemplate){
|
||||
if (state == 'interactive') {
|
||||
galleryTemplate.style.display="none";
|
||||
} else {
|
||||
if (state != 'interactive') {
|
||||
document.getElementById('loader').style.display="none";
|
||||
// addTOButton.style.display="flex";
|
||||
addTOButton.style.display="flex";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
"/js/ui.js": "/js/ui.js?id=b25a07d206dd0b89048f",
|
||||
"/css/ui.css": "/css/ui.css?id=b42597156bd91a494a1c"
|
||||
}
|
||||
"/js/ui.js": "/js/ui.js",
|
||||
"/css/ui.css": "/css/ui.css"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -881,7 +881,6 @@ h2 {
|
|||
height: 48px;
|
||||
display: inline-block;
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.cp-round:before {
|
||||
|
|
|
|||
Loading…
Reference in New Issue