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 Illuminate\Container\Container as App;
|
||||||
use Webkul\Category\Models\CategoryTranslation;
|
use Webkul\Category\Models\CategoryTranslation;
|
||||||
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
||||||
|
use Illuminate\Support\Facades\Storage;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Category Reposotory
|
* 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",
|
"/js/shop.js": "/js/shop.js",
|
||||||
"/css/shop.css": "/css/shop.css?id=798e3c7a27d0c8764fda"
|
"/css/shop.css": "/css/shop.css"
|
||||||
}
|
}
|
||||||
|
|
@ -1512,11 +1512,12 @@ section.product-detail {
|
||||||
}
|
}
|
||||||
|
|
||||||
.add-to-buttons {
|
.add-to-buttons {
|
||||||
display: flex;
|
display: none;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
|
||||||
|
|
||||||
.addtocart {
|
.addtocart {
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
width: 49%;
|
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
|
//cart pages responsive css end
|
||||||
|
|
||||||
// checkout starts here
|
// 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
|
// checkout responsive end here
|
||||||
|
|
||||||
.attached-products-wrapper {
|
.attached-products-wrapper {
|
||||||
|
|
@ -2446,11 +2497,13 @@ section.review {
|
||||||
.review-layouter {
|
.review-layouter {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
||||||
.product-info .product-image {
|
.product-info {
|
||||||
|
.product-image, .product-name, .product-price {
|
||||||
max-width: 280px;
|
max-width: 280px;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.review-form {
|
.review-form {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
@ -2922,7 +2975,22 @@ section.review {
|
||||||
|
|
||||||
// css for loader
|
// css for loader
|
||||||
.cp-spinner {
|
.cp-spinner {
|
||||||
margin-left: 46%;
|
margin-left: 19%;
|
||||||
margin-top: 35%;
|
margin-top: 13%;
|
||||||
margin-bottom: 35%;
|
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];
|
var addTOButton = document.getElementsByClassName('add-to-buttons')[0];
|
||||||
|
|
||||||
if(galleryTemplate){
|
if(galleryTemplate){
|
||||||
if (state == 'interactive') {
|
if (state != 'interactive') {
|
||||||
galleryTemplate.style.display="none";
|
|
||||||
} else {
|
|
||||||
document.getElementById('loader').style.display="none";
|
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",
|
"/js/ui.js": "/js/ui.js",
|
||||||
"/css/ui.css": "/css/ui.css?id=b42597156bd91a494a1c"
|
"/css/ui.css": "/css/ui.css"
|
||||||
}
|
}
|
||||||
|
|
@ -881,7 +881,6 @@ h2 {
|
||||||
height: 48px;
|
height: 48px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
position: relative;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.cp-round:before {
|
.cp-round:before {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue