Skip to content

Commit

Permalink
added new class shopping-cart-wrapper
Browse files Browse the repository at this point in the history
Carlos moura committed May 19, 2021
1 parent 82ecf3e commit dfaddb2
Showing 6 changed files with 54 additions and 6 deletions.
42 changes: 42 additions & 0 deletions dist/css/shards.css
Original file line number Diff line number Diff line change
@@ -25224,6 +25224,42 @@ a.text-black:hover, a.text-black:focus {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
}

.btn.btn-outline-blue {
background-color: transparent;
background-image: none;
border-color: #007bff;
color: #007bff;
}

.btn.btn-outline-blue:hover {
color: #fff;
background-color: #007bff;
border-color: #007bff;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05), 0 4px 10px rgba(0, 123, 255, 0.25);
}

.btn.btn-outline-blue:focus, .btn.btn-outline-blue.focus {
box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15), 0 3px 15px rgba(0, 123, 255, 0.2), 0 2px 5px rgba(0, 0, 0, 0.1) !important;
}

.btn.btn-outline-blue.disabled, .website-detail.is-offer.is-not-available section.product-detail .btn.btn-outline-blue.btn-get-product, .website-detail.is-reward.is-not-available section.product-detail .btn.btn-outline-blue.btn-get-product, .btn.btn-outline-blue:disabled {
color: #007bff;
background-color: transparent;
box-shadow: none;
}

.btn.btn-outline-blue:not(:disabled):not(.disabled):active, .btn.btn-outline-blue:not(:disabled):not(.disabled).active,
.show > .btn.btn-outline-blue.dropdown-toggle {
color: #fff;
background-color: #007bff;
border-color: #007bff;
}

.btn.btn-outline-blue:not(:disabled):not(.disabled):active:focus, .btn.btn-outline-blue:not(:disabled):not(.disabled).active:focus,
.show > .btn.btn-outline-blue.dropdown-toggle:focus {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
}

.btn.btn-product-offer, .website-detail.is-offer.is-available section.product-detail .btn.btn-get-product, .website-detail.is-offer.is-not-available section.product-detail .btn.btn-get-product {
color: #212529;
border-color: #fd7e14;
@@ -30329,6 +30365,12 @@ nav#subway-location .subway-location-switch .btn {
}
}

@media (min-width: 740px) {
.website-delivery .shopping-cart-wrapper {
margin-top: 38px;
}
}

a {
font-weight: 400;
color: var(--primary);
6 changes: 3 additions & 3 deletions dist/css/shards.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/shards.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/shards.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "shards-ui",
"description": "A free, modern and lightweight Bootstrap 4 UI toolkit for web makers.",
"version": "3.0.72",
"version": "3.0.73",
"main": "dist/js/shards",
"scripts": {
"start": "npm-run-all --parallel watch serve-dist",
6 changes: 6 additions & 0 deletions src/scss/whitelabel/page/_delivery.scss
Original file line number Diff line number Diff line change
@@ -66,4 +66,10 @@
display: none;
}
}

.shopping-cart-wrapper {
@media (min-width: 740px) {
margin-top: 38px;
}
}
}

0 comments on commit dfaddb2

Please sign in to comment.