2014-11-18 12:52:00 +00:00
|
|
|
/**
|
|
|
|
* woocommerce.scss
|
|
|
|
* Governs the general look and feel of WooCommerce sections of stores using themes that do not
|
|
|
|
* integrate with WooCommerce specifically.
|
|
|
|
*/
|
|
|
|
|
2014-11-18 12:30:38 +00:00
|
|
|
/**
|
|
|
|
* Imports
|
|
|
|
*/
|
2016-08-09 16:28:32 +00:00
|
|
|
@import 'mixins';
|
|
|
|
@import 'variables';
|
|
|
|
@import 'animation';
|
|
|
|
@import 'fonts';
|
2013-04-05 11:51:34 +00:00
|
|
|
|
2014-11-18 12:30:38 +00:00
|
|
|
/**
|
|
|
|
* Global styles
|
|
|
|
*/
|
2016-10-07 12:41:13 +00:00
|
|
|
p.demo_store,
|
|
|
|
.woocommerce-store-notice {
|
|
|
|
position: absolute;
|
2012-11-15 17:30:38 +00:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 1em;
|
2014-11-13 16:26:50 +00:00
|
|
|
padding: 1em 0;
|
2012-11-15 17:30:38 +00:00
|
|
|
text-align: center;
|
2014-11-13 16:26:50 +00:00
|
|
|
background-color: $primary;
|
2014-09-22 17:35:48 +00:00
|
|
|
color: $primarytext;
|
2013-01-12 13:02:00 +00:00
|
|
|
z-index: 99998;
|
2016-08-09 16:28:32 +00:00
|
|
|
box-shadow: 0 1px 1em rgba(0, 0, 0, 0.2);
|
2016-10-07 12:41:13 +00:00
|
|
|
display: none;
|
|
|
|
|
2015-08-24 15:15:16 +00:00
|
|
|
a {
|
|
|
|
color: $primarytext;
|
2016-10-07 12:41:13 +00:00
|
|
|
text-decoration: underline;
|
2015-08-24 15:15:16 +00:00
|
|
|
}
|
2012-11-15 17:30:38 +00:00
|
|
|
}
|
2012-12-06 17:29:18 +00:00
|
|
|
|
2017-10-13 10:27:20 +00:00
|
|
|
.screen-reader-text {
|
|
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
|
|
height: 1px;
|
|
|
|
overflow: hidden;
|
|
|
|
position: absolute !important;
|
|
|
|
width: 1px;
|
|
|
|
word-wrap: normal !important;
|
|
|
|
}
|
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
.admin-bar p.demo_store {
|
|
|
|
top: 32px;
|
2013-01-02 14:03:02 +00:00
|
|
|
}
|
|
|
|
|
2014-11-18 12:30:38 +00:00
|
|
|
/**
|
|
|
|
* Utility classes
|
|
|
|
*/
|
2014-10-17 19:39:33 +00:00
|
|
|
.clear {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
2014-11-18 12:30:38 +00:00
|
|
|
/**
|
|
|
|
* Main WooCommerce styles
|
|
|
|
*/
|
2014-11-13 11:43:26 +00:00
|
|
|
.woocommerce {
|
2014-11-13 18:28:15 +00:00
|
|
|
.blockUI.blockOverlay {
|
2014-12-02 21:19:03 +00:00
|
|
|
position: relative;
|
2014-11-13 18:28:15 +00:00
|
|
|
@include loader();
|
|
|
|
}
|
|
|
|
|
|
|
|
.loader {
|
|
|
|
@include loader();
|
|
|
|
}
|
|
|
|
|
2014-11-14 15:42:00 +00:00
|
|
|
a.remove {
|
|
|
|
display: block;
|
|
|
|
font-size: 1.5em;
|
|
|
|
height: 1em;
|
|
|
|
width: 1em;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 1;
|
|
|
|
border-radius: 100%;
|
2016-08-05 14:47:54 +00:00
|
|
|
color: red !important; // Required for default theme compatibility
|
2014-11-14 15:42:00 +00:00
|
|
|
text-decoration: none;
|
|
|
|
font-weight: 700;
|
2015-01-26 11:06:31 +00:00
|
|
|
border: 0;
|
2014-11-14 15:42:00 +00:00
|
|
|
|
|
|
|
&:hover {
|
2016-08-05 14:47:54 +00:00
|
|
|
color: #fff !important; // Required for default theme compatibility
|
2014-11-14 15:42:00 +00:00
|
|
|
background: red;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
small.note {
|
2014-11-13 10:08:14 +00:00
|
|
|
display: block;
|
2014-09-22 17:35:48 +00:00
|
|
|
color: $subtext;
|
2016-08-09 16:28:32 +00:00
|
|
|
font-size: 0.857em;
|
2012-11-15 16:39:41 +00:00
|
|
|
margin-top: 10px;
|
2012-04-28 17:28:18 +00:00
|
|
|
}
|
2012-11-15 16:39:41 +00:00
|
|
|
|
2015-10-09 17:10:02 +00:00
|
|
|
.woocommerce-breadcrumb {
|
2014-09-22 17:35:48 +00:00
|
|
|
@include clearfix();
|
2012-11-15 16:39:41 +00:00
|
|
|
margin: 0 0 1em;
|
|
|
|
padding: 0;
|
|
|
|
font-size: 0.92em;
|
2014-09-22 17:35:48 +00:00
|
|
|
color: $subtext;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
a {
|
2014-09-22 17:35:48 +00:00
|
|
|
color: $subtext;
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
2012-04-28 17:28:18 +00:00
|
|
|
}
|
2012-11-15 16:39:41 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
.quantity .qty {
|
|
|
|
width: 3.631em;
|
|
|
|
text-align: center;
|
2014-11-18 13:29:58 +00:00
|
|
|
}
|
|
|
|
|
2014-11-18 12:30:38 +00:00
|
|
|
/**
|
|
|
|
* Product Page
|
|
|
|
*/
|
2014-11-13 11:24:10 +00:00
|
|
|
div.product {
|
2012-11-13 19:59:34 +00:00
|
|
|
margin-bottom: 0;
|
|
|
|
position: relative;
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
.product_title {
|
2014-11-13 10:08:14 +00:00
|
|
|
clear: none;
|
2012-11-13 19:59:34 +00:00
|
|
|
margin-top: 0;
|
|
|
|
padding: 0;
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2014-11-13 10:08:14 +00:00
|
|
|
span.price,
|
|
|
|
p.price {
|
2014-09-22 17:35:48 +00:00
|
|
|
color: $highlight;
|
2012-11-13 19:59:34 +00:00
|
|
|
font-size: 1.25em;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
ins {
|
|
|
|
background: inherit;
|
2014-11-13 14:14:04 +00:00
|
|
|
font-weight: 700;
|
2017-10-31 12:22:18 +00:00
|
|
|
display: inline-block;
|
2012-11-13 19:59:34 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
del {
|
2014-11-13 14:14:04 +00:00
|
|
|
opacity: 0.5;
|
2017-10-31 12:22:18 +00:00
|
|
|
display: inline-block;
|
2012-11-13 19:59:34 +00:00
|
|
|
}
|
|
|
|
}
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
p.stock {
|
|
|
|
font-size: 0.92em;
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
.stock {
|
2014-09-22 17:35:48 +00:00
|
|
|
color: $highlight;
|
2012-11-13 19:59:34 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
.out-of-stock {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
2015-07-09 14:56:20 +00:00
|
|
|
.woocommerce-product-rating {
|
2014-11-13 14:14:04 +00:00
|
|
|
margin-bottom: 1.618em;
|
|
|
|
}
|
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
div.images {
|
|
|
|
margin-bottom: 2em;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
img {
|
2014-11-13 10:08:14 +00:00
|
|
|
display: block;
|
2012-11-13 19:59:34 +00:00
|
|
|
width: 100%;
|
2014-11-13 10:08:14 +00:00
|
|
|
height: auto;
|
2014-11-13 13:53:50 +00:00
|
|
|
box-shadow: none;
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
div.thumbnails {
|
|
|
|
padding-top: 1em;
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
2016-10-13 14:25:42 +00:00
|
|
|
|
|
|
|
&.woocommerce-product-gallery {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-product-gallery__wrapper {
|
|
|
|
transition: all cubic-bezier(0.795, -0.035, 0.000, 1.000) .5s;
|
2017-08-11 09:49:52 +00:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2016-10-13 14:25:42 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 09:44:56 +00:00
|
|
|
.woocommerce-product-gallery__wrapper .zoomImg {
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
2017-01-27 15:34:50 +00:00
|
|
|
.woocommerce-product-gallery__image:nth-child(n+2) {
|
|
|
|
width: 25%;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2016-10-13 14:25:42 +00:00
|
|
|
.woocommerce-product-gallery__trigger {
|
|
|
|
position: absolute;
|
|
|
|
top: .5em;
|
|
|
|
right: .5em;
|
|
|
|
font-size: 2em;
|
|
|
|
z-index: 9;
|
|
|
|
width: 36px;
|
|
|
|
height: 36px;
|
|
|
|
background: #fff;
|
|
|
|
text-indent: -9999px;
|
|
|
|
border-radius: 100%;
|
|
|
|
box-sizing: content-box;
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
border: 2px solid #000;
|
|
|
|
border-radius: 100%;
|
|
|
|
position: absolute;
|
|
|
|
top: 9px;
|
|
|
|
left: 9px;
|
|
|
|
box-sizing: content-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
width: 2px;
|
|
|
|
height: 8px;
|
|
|
|
background: #000;
|
|
|
|
border-radius: 6px;
|
|
|
|
position: absolute;
|
|
|
|
top: 19px;
|
|
|
|
left: 22px;
|
2017-05-05 13:30:58 +00:00
|
|
|
transform: rotate(-45deg);
|
2016-10-13 14:25:42 +00:00
|
|
|
box-sizing: content-box;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-control-thumbs {
|
|
|
|
overflow: hidden;
|
|
|
|
zoom: 1;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
li {
|
|
|
|
width: 25%;
|
|
|
|
float: left;
|
|
|
|
margin: 0;
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
img {
|
|
|
|
cursor: pointer;
|
|
|
|
opacity: .5;
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
&.flex-active,
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2017-05-10 17:35:02 +00:00
|
|
|
.woocommerce-product-gallery--columns-3 {
|
|
|
|
.flex-control-thumbs li:nth-child(3n+1) {
|
|
|
|
clear: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-product-gallery--columns-4 {
|
|
|
|
.flex-control-thumbs li:nth-child(4n+1) {
|
|
|
|
clear: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-product-gallery--columns-5 {
|
|
|
|
.flex-control-thumbs li:nth-child(5n+1) {
|
|
|
|
clear: left;
|
2016-10-13 14:25:42 +00:00
|
|
|
}
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
div.summary {
|
|
|
|
margin-bottom: 2em;
|
|
|
|
}
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
div.social {
|
|
|
|
text-align: right;
|
|
|
|
margin: 0 0 1em;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2011-08-09 15:16:18 +00:00
|
|
|
span {
|
2012-11-13 19:59:34 +00:00
|
|
|
margin: 0 0 0 2px;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
span {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
.stButton .chicklets {
|
|
|
|
padding-left: 16px;
|
|
|
|
width: 0;
|
|
|
|
}
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
iframe {
|
2014-11-13 10:08:14 +00:00
|
|
|
float: left;
|
2012-11-13 19:59:34 +00:00
|
|
|
margin-top: 3px;
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
|
|
|
}
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2013-01-03 11:40:10 +00:00
|
|
|
.woocommerce-tabs {
|
2012-11-13 19:59:34 +00:00
|
|
|
ul.tabs {
|
2014-11-13 10:08:14 +00:00
|
|
|
list-style: none;
|
2013-07-31 03:11:21 +00:00
|
|
|
padding: 0 0 0 1em;
|
|
|
|
margin: 0 0 1.618em;
|
2014-11-13 10:08:14 +00:00
|
|
|
overflow: hidden;
|
2013-07-31 03:11:21 +00:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
li {
|
2014-09-22 17:48:26 +00:00
|
|
|
border: 1px solid darken( $secondary, 10% );
|
2014-11-13 13:59:55 +00:00
|
|
|
background-color: $secondary;
|
2013-07-31 03:11:21 +00:00
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
z-index: 0;
|
2014-10-17 19:18:11 +00:00
|
|
|
border-radius: 4px 4px 0 0;
|
2013-07-31 03:11:21 +00:00
|
|
|
margin: 0 -5px;
|
|
|
|
padding: 0 1em;
|
|
|
|
|
|
|
|
a {
|
|
|
|
display: inline-block;
|
2016-08-09 16:28:32 +00:00
|
|
|
padding: 0.5em 0;
|
2014-11-13 14:16:32 +00:00
|
|
|
font-weight: 700;
|
2014-09-22 17:35:48 +00:00
|
|
|
color: $secondarytext;
|
2013-07-31 03:11:21 +00:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
2014-11-13 10:08:14 +00:00
|
|
|
text-decoration: none;
|
2014-09-22 17:48:26 +00:00
|
|
|
color: lighten( $secondarytext, 10% );
|
2013-07-31 03:11:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
2014-09-22 17:35:48 +00:00
|
|
|
background: $contentbg;
|
2013-07-31 03:11:21 +00:00
|
|
|
z-index: 2;
|
2014-09-22 17:35:48 +00:00
|
|
|
border-bottom-color: $contentbg;
|
2013-07-31 03:11:21 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
text-shadow: inherit;
|
|
|
|
}
|
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
&::before {
|
2014-09-22 17:35:48 +00:00
|
|
|
box-shadow: 2px 2px 0 $contentbg;
|
2013-07-31 03:11:21 +00:00
|
|
|
}
|
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
&::after {
|
2014-09-22 17:35:48 +00:00
|
|
|
box-shadow: -2px 2px 0 $contentbg;
|
2013-07-31 03:11:21 +00:00
|
|
|
}
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
&::before,
|
|
|
|
&::after {
|
2014-09-22 17:48:26 +00:00
|
|
|
border: 1px solid darken( $secondary, 10% );
|
2014-11-13 10:08:14 +00:00
|
|
|
position: absolute;
|
2013-07-31 03:11:21 +00:00
|
|
|
bottom: -1px;
|
|
|
|
width: 5px;
|
|
|
|
height: 5px;
|
2016-08-09 16:28:32 +00:00
|
|
|
content: ' ';
|
2013-07-31 03:11:21 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
&::before {
|
2013-07-31 03:11:21 +00:00
|
|
|
left: -6px;
|
|
|
|
border-bottom-right-radius: 4px;
|
|
|
|
border-width: 0 1px 1px 0;
|
2014-11-13 13:59:55 +00:00
|
|
|
box-shadow: 2px 2px 0 $secondary;
|
2013-07-31 03:11:21 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
&::after {
|
2013-07-31 03:11:21 +00:00
|
|
|
right: -6px;
|
|
|
|
border-bottom-left-radius: 4px;
|
|
|
|
border-width: 0 0 1px 1px;
|
2014-11-13 13:59:55 +00:00
|
|
|
box-shadow: -2px 2px 0 $secondary;
|
2013-07-31 03:11:21 +00:00
|
|
|
}
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
&::before {
|
2014-11-13 10:08:14 +00:00
|
|
|
position: absolute;
|
2016-08-09 16:28:32 +00:00
|
|
|
content: ' ';
|
2013-07-31 03:11:21 +00:00
|
|
|
width: 100%;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2014-09-22 17:48:26 +00:00
|
|
|
border-bottom: 1px solid darken( $secondary, 10% );
|
2013-07-31 03:11:21 +00:00
|
|
|
z-index: 1;
|
|
|
|
}
|
2012-11-13 19:59:34 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
.panel {
|
|
|
|
margin: 0 0 2em;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2012-04-28 17:28:18 +00:00
|
|
|
}
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
p.cart {
|
2013-02-13 09:29:00 +00:00
|
|
|
margin-bottom: 2em;
|
2014-09-22 17:35:48 +00:00
|
|
|
@include clearfix();
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
2012-11-13 19:59:34 +00:00
|
|
|
|
|
|
|
form.cart {
|
|
|
|
margin-bottom: 2em;
|
2014-09-22 17:35:48 +00:00
|
|
|
@include clearfix();
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-04-28 17:28:18 +00:00
|
|
|
div.quantity {
|
2014-11-13 10:08:14 +00:00
|
|
|
float: left;
|
2012-11-13 19:59:34 +00:00
|
|
|
margin: 0 4px 0 0;
|
2012-04-28 17:28:18 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
table {
|
2016-08-09 16:28:32 +00:00
|
|
|
border-width: 0 0 1px;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
td {
|
2014-11-13 10:08:14 +00:00
|
|
|
padding-left: 0;
|
2012-11-13 19:59:34 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
div.quantity {
|
2014-11-13 10:08:14 +00:00
|
|
|
float: none;
|
2012-11-13 19:59:34 +00:00
|
|
|
margin: 0;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
small.stock {
|
2014-11-13 10:08:14 +00:00
|
|
|
display: block;
|
|
|
|
float: none;
|
2012-11-13 19:59:34 +00:00
|
|
|
}
|
2012-04-28 17:28:18 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
.variations {
|
|
|
|
margin-bottom: 1em;
|
2015-01-28 12:58:04 +00:00
|
|
|
border: 0;
|
2015-10-29 16:51:05 +00:00
|
|
|
width: 100%;
|
2015-01-28 12:58:04 +00:00
|
|
|
|
|
|
|
td,
|
|
|
|
th {
|
|
|
|
border: 0;
|
2015-10-29 16:51:05 +00:00
|
|
|
vertical-align: top;
|
|
|
|
line-height: 2em;
|
2015-01-28 12:58:04 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
label {
|
2014-11-13 14:16:32 +00:00
|
|
|
font-weight: 700;
|
2012-11-13 19:59:34 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
select {
|
2015-10-29 16:51:05 +00:00
|
|
|
max-width: 100%;
|
|
|
|
min-width: 75%;
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 1em;
|
2012-11-13 19:59:34 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
td.label {
|
|
|
|
padding-right: 1em;
|
|
|
|
}
|
2012-04-28 17:28:18 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
.woocommerce-variation-description p {
|
|
|
|
margin-bottom: 1em;
|
2015-07-09 14:56:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.reset_variations {
|
|
|
|
visibility: hidden;
|
2015-10-29 16:51:05 +00:00
|
|
|
font-size: 0.83em;
|
2015-07-09 14:56:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.wc-no-matching-variations {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
.button {
|
|
|
|
vertical-align: middle;
|
2014-11-13 10:08:14 +00:00
|
|
|
float: left;
|
2012-04-28 17:28:18 +00:00
|
|
|
}
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
.group_table {
|
|
|
|
td.label {
|
|
|
|
padding-right: 1em;
|
|
|
|
padding-left: 1em;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
td {
|
|
|
|
vertical-align: top;
|
2016-08-09 16:28:32 +00:00
|
|
|
padding-bottom: 0.5em;
|
2014-11-13 11:47:54 +00:00
|
|
|
border: 0;
|
2012-11-13 19:59:34 +00:00
|
|
|
}
|
2017-02-17 15:53:15 +00:00
|
|
|
|
|
|
|
td:first-child {
|
|
|
|
width: 4em;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wc-grouped-product-add-to-cart-checkbox {
|
|
|
|
display: inline-block;
|
|
|
|
width: auto;
|
|
|
|
margin: 0 auto;
|
|
|
|
transform:scale(1.5, 1.5);
|
|
|
|
}
|
2012-07-11 22:19:29 +00:00
|
|
|
}
|
|
|
|
}
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
2012-11-15 16:39:41 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
span.onsale {
|
2014-11-13 13:52:34 +00:00
|
|
|
min-height: 3.236em;
|
|
|
|
min-width: 3.236em;
|
2016-08-09 16:28:32 +00:00
|
|
|
padding: 0.202em;
|
2014-11-13 13:52:34 +00:00
|
|
|
font-size: 1em;
|
2014-11-13 14:16:32 +00:00
|
|
|
font-weight: 700;
|
2014-11-13 10:08:14 +00:00
|
|
|
position: absolute;
|
2012-11-13 19:59:34 +00:00
|
|
|
text-align: center;
|
2014-11-14 10:36:19 +00:00
|
|
|
line-height: 3.236;
|
2016-08-09 16:28:32 +00:00
|
|
|
top: -0.5em;
|
|
|
|
left: -0.5em;
|
2012-11-13 19:59:34 +00:00
|
|
|
margin: 0;
|
2014-11-13 13:52:34 +00:00
|
|
|
border-radius: 100%;
|
|
|
|
background-color: $highlight;
|
2014-09-22 17:35:48 +00:00
|
|
|
color: $highlightext;
|
2016-08-09 16:28:32 +00:00
|
|
|
font-size: 0.857em;
|
2016-10-13 14:25:42 +00:00
|
|
|
z-index: 9;
|
2012-11-13 19:59:34 +00:00
|
|
|
}
|
2011-08-09 15:16:18 +00:00
|
|
|
|
2014-11-18 12:30:38 +00:00
|
|
|
/**
|
|
|
|
* Product loops
|
|
|
|
*/
|
2014-11-13 10:08:14 +00:00
|
|
|
.products ul,
|
|
|
|
ul.products {
|
2012-11-13 19:59:34 +00:00
|
|
|
margin: 0 0 1em;
|
|
|
|
padding: 0;
|
2014-11-13 10:08:14 +00:00
|
|
|
list-style: none outside;
|
|
|
|
clear: both;
|
2014-09-22 17:35:48 +00:00
|
|
|
@include clearfix();
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
li {
|
2014-11-13 10:08:14 +00:00
|
|
|
list-style: none outside;
|
2012-11-13 19:59:34 +00:00
|
|
|
}
|
2012-01-06 14:02:34 +00:00
|
|
|
}
|
2011-09-12 10:06:28 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
ul.products li.product {
|
|
|
|
.onsale {
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
left: auto;
|
|
|
|
margin: -0.5em -0.5em 0 0;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
h3,
|
|
|
|
.woocommerce-loop-product__title,
|
|
|
|
.woocommerce-loop-category__title {
|
|
|
|
padding: 0.5em 0;
|
|
|
|
margin: 0;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
a img {
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
display: block;
|
|
|
|
margin: 0 0 1em;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
strong {
|
|
|
|
display: block;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
.star-rating {
|
|
|
|
font-size: 0.857em;
|
|
|
|
}
|
2014-11-13 13:47:38 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
.button {
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
2014-11-13 13:48:47 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
.price {
|
|
|
|
color: $highlight;
|
|
|
|
display: block;
|
|
|
|
font-weight: normal;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
font-size: 0.857em;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
del {
|
|
|
|
color: inherit;
|
|
|
|
opacity: 0.5;
|
2017-10-31 12:22:18 +00:00
|
|
|
display: inline-block;
|
2017-04-04 17:14:33 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
ins {
|
|
|
|
background: none;
|
|
|
|
font-weight: 700;
|
2017-10-31 12:22:18 +00:00
|
|
|
display: inline-block;
|
2017-04-04 17:14:33 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
.from {
|
|
|
|
font-size: 0.67em;
|
|
|
|
margin: -2px 0 0 0;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: rgba(desaturate($highlight, 75%), 0.5);
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-11-15 16:39:41 +00:00
|
|
|
|
2013-01-03 11:40:10 +00:00
|
|
|
.woocommerce-result-count {
|
2012-11-15 16:39:41 +00:00
|
|
|
margin: 0 0 1em;
|
2012-10-14 12:06:37 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2013-01-03 11:40:10 +00:00
|
|
|
.woocommerce-ordering {
|
2012-11-15 16:39:41 +00:00
|
|
|
margin: 0 0 1em;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
select {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2014-11-13 11:24:10 +00:00
|
|
|
nav.woocommerce-pagination {
|
2012-11-15 16:39:41 +00:00
|
|
|
text-align: center;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
ul {
|
|
|
|
display: inline-block;
|
|
|
|
white-space: nowrap;
|
2014-11-13 10:08:14 +00:00
|
|
|
padding: 0;
|
2012-11-15 16:39:41 +00:00
|
|
|
clear: both;
|
2014-09-22 17:48:26 +00:00
|
|
|
border: 1px solid darken( $secondary, 10% );
|
2012-11-15 16:39:41 +00:00
|
|
|
border-right: 0;
|
|
|
|
margin: 1px;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
li {
|
2014-09-22 17:48:26 +00:00
|
|
|
border-right: 1px solid darken( $secondary, 10% );
|
2012-10-14 12:06:37 +00:00
|
|
|
padding: 0;
|
2012-11-15 16:39:41 +00:00
|
|
|
margin: 0;
|
|
|
|
float: left;
|
|
|
|
display: inline;
|
|
|
|
overflow: hidden;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
|
|
|
a,
|
|
|
|
span {
|
2012-11-15 16:39:41 +00:00
|
|
|
margin: 0;
|
|
|
|
text-decoration: none;
|
|
|
|
padding: 0;
|
2014-11-14 10:36:19 +00:00
|
|
|
line-height: 1;
|
2012-11-15 16:39:41 +00:00
|
|
|
font-size: 1em;
|
|
|
|
font-weight: normal;
|
2016-08-09 16:28:32 +00:00
|
|
|
padding: 0.5em;
|
2012-11-15 16:39:41 +00:00
|
|
|
min-width: 1em;
|
|
|
|
display: block;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
|
|
|
span.current,
|
|
|
|
a:hover,
|
|
|
|
a:focus {
|
2014-09-22 17:35:48 +00:00
|
|
|
background: $secondary;
|
2014-09-22 17:48:26 +00:00
|
|
|
color: darken( $secondary, 40% );
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
2012-10-14 12:06:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-09-12 10:06:28 +00:00
|
|
|
|
2014-11-18 12:30:38 +00:00
|
|
|
/**
|
|
|
|
* Buttons
|
|
|
|
*/
|
2014-11-13 10:08:14 +00:00
|
|
|
a.button,
|
|
|
|
button.button,
|
|
|
|
input.button,
|
2014-11-13 11:24:10 +00:00
|
|
|
#respond input#submit {
|
2012-11-13 19:59:34 +00:00
|
|
|
font-size: 100%;
|
2013-07-31 03:11:21 +00:00
|
|
|
margin: 0;
|
2014-11-14 10:36:19 +00:00
|
|
|
line-height: 1;
|
2013-07-31 03:11:21 +00:00
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
2014-11-13 10:08:14 +00:00
|
|
|
text-decoration: none;
|
2012-11-13 19:59:34 +00:00
|
|
|
overflow: visible;
|
2016-08-09 16:28:32 +00:00
|
|
|
padding: 0.618em 1em;
|
2014-11-13 13:38:31 +00:00
|
|
|
font-weight: 700;
|
|
|
|
border-radius: 3px;
|
2013-07-31 03:11:21 +00:00
|
|
|
left: auto;
|
2014-09-22 17:35:48 +00:00
|
|
|
color: $secondarytext;
|
2014-11-13 13:38:31 +00:00
|
|
|
background-color: $secondary;
|
|
|
|
border: 0;
|
2012-12-10 13:11:05 +00:00
|
|
|
display: inline-block;
|
2014-11-13 13:38:31 +00:00
|
|
|
background-image: none;
|
|
|
|
box-shadow: none;
|
2014-11-13 14:02:12 +00:00
|
|
|
text-shadow: none;
|
2012-11-13 19:59:34 +00:00
|
|
|
|
|
|
|
&.loading {
|
2014-11-13 13:42:10 +00:00
|
|
|
opacity: 0.25;
|
2014-11-13 17:42:09 +00:00
|
|
|
padding-right: 2.618em;
|
2012-11-13 19:59:34 +00:00
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
&::after {
|
|
|
|
font-family: 'WooCommerce';
|
|
|
|
content: '\e01c';
|
2014-11-14 09:47:45 +00:00
|
|
|
vertical-align: top;
|
|
|
|
font-weight: 400;
|
2014-11-13 10:08:14 +00:00
|
|
|
position: absolute;
|
2016-08-09 16:28:32 +00:00
|
|
|
top: 0.618em;
|
2014-11-13 17:42:09 +00:00
|
|
|
right: 1em;
|
2016-08-09 16:28:32 +00:00
|
|
|
animation: spin 2s linear infinite;
|
2012-11-13 19:59:34 +00:00
|
|
|
}
|
2011-09-13 14:58:06 +00:00
|
|
|
}
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
&.added::after {
|
|
|
|
font-family: 'WooCommerce';
|
|
|
|
content: '\e017';
|
|
|
|
margin-left: 0.53em;
|
|
|
|
vertical-align: bottom;
|
2013-02-13 15:56:47 +00:00
|
|
|
}
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
&:hover {
|
2014-11-13 13:38:31 +00:00
|
|
|
background-color: $secondary - #111;
|
2014-11-13 10:08:14 +00:00
|
|
|
text-decoration: none;
|
2014-11-13 13:38:31 +00:00
|
|
|
background-image: none;
|
|
|
|
color: $secondarytext;
|
2012-11-13 19:59:34 +00:00
|
|
|
}
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
&.alt {
|
2014-11-13 13:38:31 +00:00
|
|
|
background-color: $primary;
|
2014-09-22 17:35:48 +00:00
|
|
|
color: $primarytext;
|
2014-11-13 13:38:31 +00:00
|
|
|
-webkit-font-smoothing: antialiased;
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2012-11-13 19:59:34 +00:00
|
|
|
&:hover {
|
2014-11-13 13:38:31 +00:00
|
|
|
background-color: $primary - #111;
|
|
|
|
color: $primarytext;
|
2012-11-13 19:59:34 +00:00
|
|
|
}
|
2014-11-18 12:20:59 +00:00
|
|
|
|
|
|
|
&.disabled,
|
|
|
|
&:disabled,
|
|
|
|
&:disabled[disabled],
|
|
|
|
&.disabled:hover,
|
|
|
|
&:disabled:hover,
|
|
|
|
&:disabled[disabled]:hover {
|
|
|
|
background-color: $primary;
|
|
|
|
color: $primarytext;
|
|
|
|
}
|
2012-01-11 19:07:19 +00:00
|
|
|
}
|
2013-09-04 06:50:22 +00:00
|
|
|
|
|
|
|
&:disabled,
|
2014-11-18 12:20:59 +00:00
|
|
|
&.disabled,
|
|
|
|
&:disabled[disabled] {
|
|
|
|
color: inherit;
|
2013-09-04 06:50:22 +00:00
|
|
|
cursor: not-allowed;
|
2014-11-18 12:20:59 +00:00
|
|
|
opacity: 0.5;
|
2016-08-09 16:28:32 +00:00
|
|
|
padding: 0.618em 1em;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2014-11-18 12:20:59 +00:00
|
|
|
&:hover {
|
|
|
|
color: inherit;
|
|
|
|
background-color: $secondary;
|
2013-09-20 11:08:56 +00:00
|
|
|
}
|
2013-09-04 06:50:22 +00:00
|
|
|
}
|
2012-01-11 19:07:19 +00:00
|
|
|
}
|
2011-08-09 15:16:18 +00:00
|
|
|
|
2014-11-13 10:08:14 +00:00
|
|
|
.cart .button,
|
|
|
|
.cart input.button {
|
|
|
|
float: none;
|
2012-11-13 19:59:34 +00:00
|
|
|
}
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2012-12-10 13:11:05 +00:00
|
|
|
a.added_to_cart {
|
2016-08-09 16:28:32 +00:00
|
|
|
padding-top: 0.5em;
|
2012-12-10 13:11:05 +00:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2014-11-18 12:30:38 +00:00
|
|
|
/**
|
|
|
|
* Reviews
|
|
|
|
*/
|
2012-11-15 16:39:41 +00:00
|
|
|
#reviews {
|
|
|
|
h2 small {
|
|
|
|
float: right;
|
2014-09-22 17:35:48 +00:00
|
|
|
color: $subtext;
|
2012-11-15 16:39:41 +00:00
|
|
|
font-size: 15px;
|
2016-08-09 16:28:32 +00:00
|
|
|
margin: 10px 0 0;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
a {
|
2014-11-13 10:08:14 +00:00
|
|
|
text-decoration: none;
|
2014-09-22 17:35:48 +00:00
|
|
|
color: $subtext;
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
h3 {
|
|
|
|
margin: 0;
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
#respond {
|
2011-08-27 11:59:12 +00:00
|
|
|
margin: 0;
|
2012-11-15 16:39:41 +00:00
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
#comment {
|
|
|
|
height: 75px;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
#comments {
|
|
|
|
.add_review {
|
2014-09-22 17:35:48 +00:00
|
|
|
@include clearfix();
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
h2 {
|
2014-11-13 10:08:14 +00:00
|
|
|
clear: none;
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
ol.commentlist {
|
2014-09-22 17:35:48 +00:00
|
|
|
@include clearfix();
|
2012-11-15 16:39:41 +00:00
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
2014-11-13 10:08:14 +00:00
|
|
|
background: none;
|
2013-01-10 13:52:42 +00:00
|
|
|
list-style: none;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
li {
|
2013-07-31 08:44:22 +00:00
|
|
|
padding: 0;
|
2012-11-15 16:39:41 +00:00
|
|
|
margin: 0 0 20px;
|
|
|
|
border: 0;
|
|
|
|
position: relative;
|
|
|
|
background: 0;
|
|
|
|
border: 0;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
.meta {
|
2014-09-22 17:35:48 +00:00
|
|
|
color: $subtext;
|
2012-11-15 16:39:41 +00:00
|
|
|
font-size: 0.75em;
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2013-02-08 22:08:10 +00:00
|
|
|
img.avatar {
|
2014-11-13 10:08:14 +00:00
|
|
|
float: left;
|
|
|
|
position: absolute;
|
2012-11-15 16:39:41 +00:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
padding: 3px;
|
|
|
|
width: 32px;
|
2014-11-13 10:08:14 +00:00
|
|
|
height: auto;
|
2014-09-22 17:35:48 +00:00
|
|
|
background: $secondary;
|
2014-09-22 17:48:26 +00:00
|
|
|
border: 1px solid darken( $secondary, 3% );
|
2012-11-15 16:39:41 +00:00
|
|
|
margin: 0;
|
2014-11-13 14:00:47 +00:00
|
|
|
box-shadow: none;
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
.comment-text {
|
|
|
|
margin: 0 0 0 50px;
|
2014-09-22 17:48:26 +00:00
|
|
|
border: 1px solid darken( $secondary, 3% );
|
2014-10-17 19:18:11 +00:00
|
|
|
border-radius: 4px;
|
2012-11-15 16:39:41 +00:00
|
|
|
padding: 1em 1em 0;
|
2014-09-22 17:35:48 +00:00
|
|
|
@include clearfix();
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
p {
|
|
|
|
margin: 0 0 1em;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
p.meta {
|
|
|
|
font-size: 0.83em;
|
|
|
|
}
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2013-07-31 08:44:22 +00:00
|
|
|
ul.children {
|
|
|
|
list-style: none outside;
|
|
|
|
margin: 20px 0 0 50px;
|
|
|
|
|
|
|
|
.star-rating {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2013-07-31 08:44:22 +00:00
|
|
|
#respond {
|
2014-09-22 17:48:26 +00:00
|
|
|
border: 1px solid darken( $secondary, 3% );
|
2014-10-17 19:18:11 +00:00
|
|
|
border-radius: 4px;
|
2013-07-31 08:44:22 +00:00
|
|
|
padding: 1em 1em 0;
|
|
|
|
margin: 20px 0 0 50px;
|
|
|
|
}
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
.commentlist > li::before {
|
|
|
|
content: '';
|
2012-04-28 17:28:18 +00:00
|
|
|
}
|
|
|
|
}
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
|
|
|
|
2014-11-18 12:30:38 +00:00
|
|
|
/**
|
|
|
|
* Star ratings
|
|
|
|
*/
|
2012-11-15 16:39:41 +00:00
|
|
|
.star-rating {
|
|
|
|
float: right;
|
2013-01-14 10:51:06 +00:00
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
height: 1em;
|
2014-11-14 10:36:19 +00:00
|
|
|
line-height: 1;
|
2013-01-14 10:51:06 +00:00
|
|
|
font-size: 1em;
|
|
|
|
width: 5.4em;
|
2013-04-05 11:51:34 +00:00
|
|
|
font-family: 'star';
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
&::before {
|
|
|
|
content: '\73\73\73\73\73';
|
2014-09-22 17:48:26 +00:00
|
|
|
color: darken( $secondary, 10% );
|
2013-01-14 10:51:06 +00:00
|
|
|
float: left;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
span {
|
2013-01-14 10:51:06 +00:00
|
|
|
overflow: hidden;
|
|
|
|
float: left;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
padding-top: 1.5em;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
span::before {
|
|
|
|
content: '\53\53\53\53\53';
|
2013-01-14 10:51:06 +00:00
|
|
|
top: 0;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
2011-09-05 09:04:17 +00:00
|
|
|
}
|
2012-11-15 16:39:41 +00:00
|
|
|
|
2013-10-31 16:26:20 +00:00
|
|
|
.woocommerce-product-rating {
|
2014-10-16 19:38:04 +00:00
|
|
|
@include clearfix();
|
2014-11-14 10:36:19 +00:00
|
|
|
line-height: 2;
|
2013-10-31 16:26:20 +00:00
|
|
|
display: block;
|
|
|
|
|
|
|
|
.star-rating {
|
2016-08-09 16:28:32 +00:00
|
|
|
margin: 0.5em 4px 0 0;
|
2013-10-31 16:26:20 +00:00
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
.products .star-rating {
|
|
|
|
display: block;
|
|
|
|
margin: 0 0 0.5em;
|
|
|
|
float: none;
|
2013-01-12 10:53:24 +00:00
|
|
|
}
|
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
.hreview-aggregate .star-rating {
|
|
|
|
margin: 10px 0 0;
|
2011-09-05 09:04:17 +00:00
|
|
|
}
|
2011-08-09 15:16:18 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
#review_form #respond {
|
|
|
|
@include clearfix();
|
|
|
|
position: static;
|
|
|
|
margin: 0;
|
|
|
|
width: auto;
|
|
|
|
padding: 0;
|
|
|
|
background: transparent none;
|
|
|
|
border: 0;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
p {
|
|
|
|
margin: 0 0 10px;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
.form-submit input {
|
|
|
|
left: auto;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
textarea {
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
p.stars {
|
2014-01-29 17:18:31 +00:00
|
|
|
a {
|
2013-04-17 10:19:52 +00:00
|
|
|
position: relative;
|
2015-10-08 10:27:25 +00:00
|
|
|
height: 1em;
|
|
|
|
width: 1em;
|
|
|
|
text-indent: -999em;
|
|
|
|
display: inline-block;
|
|
|
|
text-decoration: none;
|
2014-01-29 17:18:31 +00:00
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
&::before {
|
2015-10-08 10:27:25 +00:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
line-height: 1;
|
2016-08-09 16:28:32 +00:00
|
|
|
font-family: 'WooCommerce';
|
|
|
|
content: '\e021';
|
2015-10-08 10:27:25 +00:00
|
|
|
text-indent: 0;
|
2014-01-29 17:18:31 +00:00
|
|
|
}
|
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
&:hover ~ a::before {
|
|
|
|
content: '\e021';
|
2014-01-29 17:18:31 +00:00
|
|
|
}
|
2015-10-08 10:27:25 +00:00
|
|
|
}
|
2014-01-29 17:18:31 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
&:hover a::before {
|
|
|
|
content: '\e020';
|
2015-10-08 10:27:25 +00:00
|
|
|
}
|
2014-01-29 17:18:31 +00:00
|
|
|
|
2015-10-08 10:27:25 +00:00
|
|
|
&.selected {
|
|
|
|
a.active {
|
2016-08-09 16:28:32 +00:00
|
|
|
&::before {
|
|
|
|
content: '\e020';
|
2014-01-29 17:18:31 +00:00
|
|
|
}
|
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
~ a::before {
|
|
|
|
content: '\e021';
|
2014-01-29 17:18:31 +00:00
|
|
|
}
|
2013-04-17 10:19:52 +00:00
|
|
|
}
|
2014-01-29 17:18:31 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
a:not( .active )::before {
|
|
|
|
content: '\e020';
|
2013-04-17 10:19:52 +00:00
|
|
|
}
|
2012-04-28 17:28:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-18 12:30:38 +00:00
|
|
|
/**
|
|
|
|
* Tables
|
|
|
|
*/
|
2012-11-15 16:39:41 +00:00
|
|
|
table.shop_attributes {
|
|
|
|
border: 0;
|
2016-08-09 16:28:32 +00:00
|
|
|
border-top: 1px dotted rgba(0, 0, 0, 0.1);
|
2012-11-15 16:39:41 +00:00
|
|
|
margin-bottom: 1.618em;
|
|
|
|
width: 100%;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
th {
|
|
|
|
width: 150px;
|
2014-11-13 14:16:32 +00:00
|
|
|
font-weight: 700;
|
2012-11-15 16:39:41 +00:00
|
|
|
padding: 8px;
|
|
|
|
border-top: 0;
|
2016-08-09 16:28:32 +00:00
|
|
|
border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
|
2012-11-15 16:39:41 +00:00
|
|
|
margin: 0;
|
2014-11-14 10:36:19 +00:00
|
|
|
line-height: 1.5;
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
td {
|
|
|
|
font-style: italic;
|
|
|
|
padding: 0;
|
|
|
|
border-top: 0;
|
2016-08-09 16:28:32 +00:00
|
|
|
border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
|
2012-11-15 16:39:41 +00:00
|
|
|
margin: 0;
|
2014-11-14 10:36:19 +00:00
|
|
|
line-height: 1.5;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
padding: 8px 0;
|
|
|
|
}
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
WIP - Product CRUD (#12065)
* Created function to get the catalog visibility options
* First methods for WP_Product crud
* Product set methods
* Fixed several erros while setting data
* First methods for WP_Product crud
* Product set methods
* Fixed several erros while setting data
* Hardcode the get_type per product class
* Initial look through getters and setters and abstract data
* Missing var
* Add related product functions and deprecate those in class.
* No need to exclude ID
* Fixed coding standards and improved the docblocks
* Get cached terms from wc_get_related_terms()
* Fixed wrong variable in wc_get_related_terms
* Use count() instead of sizeof()
* Sanitize ids later
* Remove unneeded comments
* wc_get_product_term_ids instead of related wording and use in other places.
get_the_terms is used here and also handles caching, something
wp_get_post_terms does not.
* Clean up the abstract product class a bit, deprecate two functions we have renamed, make update & create work properly, and add some tests for it.
* Bump template version
* Handle PR feedback: Remove duplicate regular_price update, allow changing of post status for products, remove deprecation for get_title since we might still offer it as a function
* Made abstract function useful
* External Product CRUD
* _virtual meta should be 'no', not taxable, in product unit test helper
* Grouped product class
* Tests
* Move children to meta and update test
* Use get_upsell_ids
* Spacing in query
* Moving and refactoring methods
* Availability html
* Tidy/add todos
* Rename method
* Put back review functions (still todo)
* missing $this
* get_price_including_tax/excluding_tax functions
* wc_get_price_to_display
* Price handling
* [Product CRUD] Variable (#12146)
* [Product CRUD] Variable Products
* Handle PR feedback.
* [Product CRUD] Grouped Handling (#12151)
* Handle grouped product saving
* Update routine
* [Product CRUD] Product crud terms (#12149)
* Category and tag id handling
* Replace template functions
* Remove todo
* Handle default name in save function
* Product crud admin save routine (#12174)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Spacing
* Fix comment
* wc_implode_text_attributes helper function
* [Product CRUD] Product crud admin use getters (#12196)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Move settings into new files
* Refactor panels and use getters
* Use getters for variation panel
* Revert save variation changes for now
* Add todos
* Fix downloads
* REST API CRUD Updates
* Additional API updates/fixes. Added some todos
* Fix final failing tests and implementing setters/getters and attributes functionality.
* Fix comparison for is_on_sale and remove download_type from WC_Product.
* Add a wc_get_products wrapper.
* Remove the download type input from the product data metabox for downloadable products. (#12221)
* [Product CRUD] Variations - setters, getters and admin. (#12228)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* Feedback fixes
* Implement CRUD in the legacy REST API
* Handle PR feedback
* [Product CRUD] Getter setter proxy methods (#12236)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* get_prop implementation in abstract and data classes
* Implement set_prop
* Change handling
* Array key exists
* set_object_read
* Use get_the_terms() instead of wp_get_post_terms()
wp_get_post_terms() is a wrapper around wp_get_object_terms() which does not
use the object cache, and generates a database query every time it is used.
get_the_terms() however can use data from the object cache if present.
* Allow WP_Query to preload post data, and meta in wc_get_products()
Allow WP_Query to bulk query for post data and meta if more than
just IDs are requested from wc_get_products(). Reduces query count
significantly.
* [Product CRUD] Variable, variation, notices, and stock handling (#12277)
* No longer needed
* Remove old todos
* Use getters in admin list
* Related and upsells update for CRUD
* Fix notice in gallery
* Variable fixes and todos
* Context
* Price sync
* Revert variation attributes change
* Return parent data in view context
* Defer term counting
* wc_find_matching_product_variation
* Stock manage tweaks
* Stock fixes
* Correct id
* correct id
* Better sync
* Data logic setter fix
* feedback
* First methods for WP_Product crud
* Product set methods
* Fixed several erros while setting data
* Hardcode the get_type per product class
* Initial look through getters and setters and abstract data
* Missing var
* Fixed coding standards and improved the docblocks
* Get cached terms from wc_get_related_terms()
* Fixed wrong variable in wc_get_related_terms
* Use count() instead of sizeof()
* Add related product functions and deprecate those in class.
* No need to exclude ID
* Sanitize ids later
* Clean up the abstract product class a bit, deprecate two functions we have renamed, make update & create work properly, and add some tests for it.
* Remove unneeded comments
* wc_get_product_term_ids instead of related wording and use in other places.
get_the_terms is used here and also handles caching, something
wp_get_post_terms does not.
* Handle PR feedback: Remove duplicate regular_price update, allow changing of post status for products, remove deprecation for get_title since we might still offer it as a function
* External Product CRUD
* _virtual meta should be 'no', not taxable, in product unit test helper
* Bump template version
* Made abstract function useful
* Grouped product class
* Tests
* Move children to meta and update test
* Use get_upsell_ids
* Spacing in query
* Moving and refactoring methods
* Availability html
* Tidy/add todos
* Rename method
* Put back review functions (still todo)
* missing $this
* get_price_including_tax/excluding_tax functions
* wc_get_price_to_display
* Price handling
* [Product CRUD] Variable (#12146)
* [Product CRUD] Variable Products
* Handle PR feedback.
* [Product CRUD] Grouped Handling (#12151)
* Handle grouped product saving
* Update routine
* [Product CRUD] Product crud terms (#12149)
* Category and tag id handling
* Replace template functions
* Remove todo
* Handle default name in save function
* Product crud admin save routine (#12174)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Spacing
* Fix comment
* wc_implode_text_attributes helper function
* [Product CRUD] Product crud admin use getters (#12196)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Move settings into new files
* Refactor panels and use getters
* Use getters for variation panel
* Revert save variation changes for now
* Add todos
* Fix downloads
* REST API CRUD Updates
* Additional API updates/fixes. Added some todos
* Fix final failing tests and implementing setters/getters and attributes functionality.
* Fix comparison for is_on_sale and remove download_type from WC_Product.
* Add a wc_get_products wrapper.
* Remove the download type input from the product data metabox for downloadable products. (#12221)
* [Product CRUD] Variations - setters, getters and admin. (#12228)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* Feedback fixes
* Implement CRUD in the legacy REST API
* Handle PR feedback
* [Product CRUD] Getter setter proxy methods (#12236)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* get_prop implementation in abstract and data classes
* Implement set_prop
* Change handling
* Array key exists
* set_object_read
* Use get_the_terms() instead of wp_get_post_terms()
wp_get_post_terms() is a wrapper around wp_get_object_terms() which does not
use the object cache, and generates a database query every time it is used.
get_the_terms() however can use data from the object cache if present.
* [Product CRUD] Variable, variation, notices, and stock handling (#12277)
* No longer needed
* Remove old todos
* Use getters in admin list
* Related and upsells update for CRUD
* Fix notice in gallery
* Variable fixes and todos
* Context
* Price sync
* Revert variation attributes change
* Return parent data in view context
* Defer term counting
* wc_find_matching_product_variation
* Stock manage tweaks
* Stock fixes
* Correct id
* correct id
* Better sync
* Data logic setter fix
* feedback
* Prevent notices
* Handle image_id from parent
* Fix error
* Remove _wc_save_product_price
* Remove todo
* Fixed wrong variation URLs
* Fixed undefined $image_id in WC_Product_Variation::get_image_id()
* Allow wc_rest_prepare_date_response() handle timestamps
* Updated get methods on REST API for variations
* Use variations CRUD to save variations metadata
* [Product CRUD] Abstract todos (#12305)
* Get dimensions and weights, with soft deprecation
* Product attributes
* Ratings
* Fix read method
* Downloads
* Feedback
* Revert "[Product CRUD] Abstract todos (#12305)"
This reverts commit 9a6136fcf88fec16f97457b7c8a4388f7587bfa2.
* Remove deprecated get_variation_id()
* New default attributes method
* [Product CRUD] Product Datastore (#12317)
* Fix up tests in the product/* folder.
* Handle data store updates for grouped, variable, external, simple, and general data store updates for products.
* Variations & variable changes.
* Update -functions.php calls to use data store.
* Add an interface for the public product data store methods.
* Finished product factory tests
* Correctly delete in the api, fix up some comments, and implement an interface for the public variable methods.
* Fix up delete in all versions of the api
* Handle feedback
* Match protected decloration to parent
* Product crud abstract todos (#12316)
* Get dimensions and weights, with soft deprecation
* Product attributes
* Ratings
* Fix read method
* Downloads
* Feedback
* Fix up store
* Fixed method returning in write context
* Fix error in variation admin
* Check for parent value - fixes tax class
* Remove old/complete todos
* Allow set tax class as "parent"
* Removed duplicated sync
* Fixed wrong variation URLs
* Fixed undefined $image_id in WC_Product_Variation::get_image_id()
* Allow wc_rest_prepare_date_response() handle timestamps
* Updated get methods on REST API for variations
* Use variations CRUD to save variations metadata
* Remove deprecated get_variation_id()
* New default attributes method
* Fixed method returning in write context
* Allow set tax class as "parent"
* Removed duplicated sync
* Fixed coding standards
* TODO is not accurate.
* Should pass WC_Product instancies to WC_Comments methods (#12327)
* Use new method in abstract order class to prevent headers sent issue in tests
* Fixed variable description in REST API
* Updated how create initial product variation
* Fixed a few fatal errors and warnings in Products CRUD (#12329)
* Fixed a few fatal errors and warnings in Products CRUD
* Fixed sync functions
* Add variations CRUD to legacy API (#12331)
* Apply crud to variable products in legacy API v1
* New REST API do not need fallback for default attributes
* Apply variations CRUD to legacy API v2
* Legacy v2 - save default attributes
* Variations in legacy API v2 do not have descriptions
* Fixed legacy API v2 variations params
* Applied variations CRUD to legacy API v3
* Sync before save in legacy apis
* Punc
* Removed API todos
* Removed test
* Products endpoint tweaks (#12354)
* Var type already normalized on CRUD
* Let Product CRUD handle with validation, sanitization and conditional checks
* Set downloads using WC_Product_Download
* Stop try catch exceptions more than one time
* Handle WC_Data_Exception in legacy API
* Complete remove products when fails on creating
* On creating I mean!
* Already have a method to complete delete products
* Fixed standards using WP CodeSniffer
* get_the_terms() returns false when empty
* get_manage_stock returns boolean
@claudiosanches
* Merge conflict
* Variations API endpoint fixes
* Product CRUD improvements (#12359)
* args is not used any more - remove todo
* Added test for attributes
* wc_get_price_excluding_tax usage
* parent usage
* Fix rating counts
* Test fixes
* Cleanup after tests
* Make sure status transition code runs even during API calls, not just in admin.
* Default visibility
* Fix attribute setting in API
* Use get name instead of get title
* variation id usage
* Improved cross sell templates
* variation_data
* Grouped product sync
* Notices
* Sync is not needed in API
* Delete
* Rename interfaces
* Update counts in data store
2016-11-16 12:38:24 +00:00
|
|
|
tr:nth-child(even) td,
|
|
|
|
tr:nth-child(even) th {
|
2016-08-09 16:28:32 +00:00
|
|
|
background: rgba(0, 0, 0, 0.025);
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table.shop_table {
|
2016-08-09 16:28:32 +00:00
|
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
|
|
margin: 0 -1px 24px 0;
|
2014-11-13 10:08:14 +00:00
|
|
|
text-align: left;
|
2012-11-15 16:39:41 +00:00
|
|
|
width: 100%;
|
|
|
|
border-collapse: separate;
|
2014-10-17 19:18:11 +00:00
|
|
|
border-radius: 5px;
|
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
th {
|
2014-11-13 14:16:32 +00:00
|
|
|
font-weight: 700;
|
2012-11-15 16:39:41 +00:00
|
|
|
padding: 9px 12px;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
td {
|
2016-08-09 16:28:32 +00:00
|
|
|
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
2012-11-15 16:39:41 +00:00
|
|
|
padding: 6px 12px;
|
|
|
|
vertical-align: middle;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-12-16 16:28:54 +00:00
|
|
|
small {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
tbody:first-child tr:first-child {
|
|
|
|
th,
|
|
|
|
td {
|
|
|
|
border-top: 0;
|
2014-10-16 16:00:56 +00:00
|
|
|
}
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2014-10-16 16:00:56 +00:00
|
|
|
tfoot td,
|
|
|
|
tfoot th,
|
|
|
|
tbody th {
|
2014-11-13 14:16:32 +00:00
|
|
|
font-weight: 700;
|
2016-08-09 16:28:32 +00:00
|
|
|
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table.my_account_orders {
|
|
|
|
font-size: 0.85em;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
|
|
|
th,
|
|
|
|
td {
|
2012-11-15 16:39:41 +00:00
|
|
|
padding: 4px 8px;
|
2013-02-15 09:54:06 +00:00
|
|
|
vertical-align: middle;
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
.button {
|
2014-11-13 10:08:14 +00:00
|
|
|
white-space: nowrap;
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2013-02-15 09:54:06 +00:00
|
|
|
.order-actions {
|
|
|
|
text-align: right;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2013-02-15 09:54:06 +00:00
|
|
|
.button {
|
2016-08-09 16:28:32 +00:00
|
|
|
margin: 0.125em 0 0.125em 0.25em;
|
2013-02-15 09:54:06 +00:00
|
|
|
}
|
|
|
|
}
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
|
|
|
|
2016-09-12 22:00:31 +00:00
|
|
|
table.woocommerce-MyAccount-downloads {
|
|
|
|
td,
|
|
|
|
th {
|
|
|
|
vertical-align: top;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
&:last-child {
|
|
|
|
text-align: left;
|
|
|
|
}
|
2017-04-04 17:14:33 +00:00
|
|
|
.woocommerce-MyAccount-downloads-file::before {
|
|
|
|
content: '\2193';
|
|
|
|
display: inline-block;
|
2016-09-12 22:00:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
td.product-name {
|
2017-02-28 12:46:22 +00:00
|
|
|
dl.variation, .wc-item-meta {
|
|
|
|
list-style: none outside;
|
2013-11-19 10:30:53 +00:00
|
|
|
|
2017-02-28 12:46:22 +00:00
|
|
|
dt, .wc-item-meta-label {
|
2013-11-15 16:38:21 +00:00
|
|
|
float: left;
|
2017-02-28 12:46:22 +00:00
|
|
|
clear: both;
|
|
|
|
margin-right: .25em;
|
|
|
|
display: inline-block;
|
|
|
|
list-style: none outside;
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
dd {
|
2017-02-28 12:46:22 +00:00
|
|
|
margin: 0;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-02-28 12:46:22 +00:00
|
|
|
p,
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
p.backorder_notification {
|
|
|
|
font-size: 0.83em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
td.product-quantity {
|
|
|
|
min-width: 80px;
|
|
|
|
}
|
|
|
|
|
2014-11-18 12:30:38 +00:00
|
|
|
/**
|
|
|
|
* Cart sidebar
|
|
|
|
*/
|
2014-11-13 10:08:14 +00:00
|
|
|
ul.cart_list,
|
|
|
|
ul.product_list_widget {
|
|
|
|
list-style: none outside;
|
2012-11-15 16:39:41 +00:00
|
|
|
padding: 0;
|
2011-08-27 11:59:12 +00:00
|
|
|
margin: 0;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
li {
|
|
|
|
padding: 4px 0;
|
2012-04-28 17:28:18 +00:00
|
|
|
margin: 0;
|
2014-09-22 17:35:48 +00:00
|
|
|
@include clearfix();
|
2014-11-13 10:08:14 +00:00
|
|
|
list-style: none;
|
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
a {
|
2014-11-13 10:08:14 +00:00
|
|
|
display: block;
|
2014-11-13 14:16:32 +00:00
|
|
|
font-weight: 700;
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
img {
|
|
|
|
float: right;
|
|
|
|
margin-left: 4px;
|
|
|
|
width: 32px;
|
2014-11-13 10:08:14 +00:00
|
|
|
height: auto;
|
2014-11-13 16:11:30 +00:00
|
|
|
box-shadow: none;
|
2012-01-12 15:25:13 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
dl {
|
|
|
|
margin: 0;
|
|
|
|
padding-left: 1em;
|
2016-08-09 16:28:32 +00:00
|
|
|
border-left: 2px solid rgba(0, 0, 0, 0.1);
|
2014-09-22 17:35:48 +00:00
|
|
|
@include clearfix();
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2014-11-13 10:08:14 +00:00
|
|
|
dt,
|
|
|
|
dd {
|
2013-11-15 16:38:21 +00:00
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
2014-11-13 10:08:14 +00:00
|
|
|
margin-bottom: 1em;
|
2013-06-20 10:20:49 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
dt {
|
2014-11-13 14:16:32 +00:00
|
|
|
font-weight: 700;
|
2016-08-09 16:28:32 +00:00
|
|
|
padding: 0 0 0.25em;
|
2013-06-20 10:20:49 +00:00
|
|
|
margin: 0 4px 0 0;
|
2014-11-13 10:08:14 +00:00
|
|
|
clear: left;
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
dd {
|
2016-08-09 16:28:32 +00:00
|
|
|
padding: 0 0 0.25em;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2013-11-15 16:38:21 +00:00
|
|
|
p:last-child {
|
2014-11-13 10:08:14 +00:00
|
|
|
margin-bottom: 0;
|
2013-11-15 16:38:21 +00:00
|
|
|
}
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
.star-rating {
|
2014-11-13 10:08:14 +00:00
|
|
|
float: none;
|
2012-01-12 15:25:13 +00:00
|
|
|
}
|
2012-01-12 16:41:44 +00:00
|
|
|
}
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
2012-11-15 16:39:41 +00:00
|
|
|
|
2014-11-13 10:08:14 +00:00
|
|
|
&.widget_shopping_cart,
|
|
|
|
.widget_shopping_cart {
|
2012-11-15 16:39:41 +00:00
|
|
|
.total {
|
2014-09-22 17:35:48 +00:00
|
|
|
border-top: 3px double $secondary;
|
2012-11-15 16:39:41 +00:00
|
|
|
padding: 4px 0 0;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
strong {
|
|
|
|
min-width: 40px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
.cart_list li {
|
|
|
|
padding-left: 2em;
|
|
|
|
position: relative;
|
|
|
|
padding-top: 0;
|
2014-11-14 15:42:00 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
a.remove {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2014-11-14 15:42:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
.buttons {
|
2014-09-22 17:35:48 +00:00
|
|
|
@include clearfix();
|
2016-07-28 14:06:51 +00:00
|
|
|
a {
|
|
|
|
margin-right: 5px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-18 12:30:38 +00:00
|
|
|
/**
|
|
|
|
* Forms
|
|
|
|
*/
|
2017-04-04 17:14:33 +00:00
|
|
|
form .form-row {
|
|
|
|
padding: 3px;
|
|
|
|
margin: 0 0 6px;
|
2012-04-28 17:28:18 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
[placeholder]:focus::-webkit-input-placeholder {
|
|
|
|
transition: opacity 0.5s 0.5s ease;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
label {
|
|
|
|
line-height: 2;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
label.hidden {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
label.inline {
|
|
|
|
display: inline;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
select {
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
.required {
|
|
|
|
color: red;
|
|
|
|
font-weight: 700;
|
|
|
|
border: 0;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
.input-checkbox {
|
|
|
|
display: inline;
|
|
|
|
margin: -2px 8px 0 0;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
input.input-text,
|
|
|
|
textarea {
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
outline: 0;
|
|
|
|
line-height: 1;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
textarea {
|
|
|
|
height: 4em;
|
|
|
|
line-height: 1.5;
|
|
|
|
display: block;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
.select2-container {
|
|
|
|
width: 100%;
|
|
|
|
line-height: 2em;
|
|
|
|
}
|
2015-01-12 16:16:10 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
&.woocommerce-invalid {
|
|
|
|
label {
|
|
|
|
color: $red;
|
2014-11-14 10:50:44 +00:00
|
|
|
}
|
2017-04-04 17:14:33 +00:00
|
|
|
.select2-container,
|
|
|
|
input.input-text,
|
|
|
|
select {
|
|
|
|
border-color: $red;
|
2012-12-10 14:50:49 +00:00
|
|
|
}
|
2017-04-04 17:14:33 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
&.woocommerce-validated {
|
|
|
|
.select2-container,
|
|
|
|
input.input-text,
|
|
|
|
select {
|
|
|
|
border-color: $green - #111;
|
2012-12-10 14:50:49 +00:00
|
|
|
}
|
2017-04-04 17:14:33 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
::-webkit-input-placeholder {
|
|
|
|
line-height: normal;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
:-moz-placeholder {
|
|
|
|
line-height: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
:-ms-input-placeholder {
|
|
|
|
line-height: normal;
|
2012-04-28 17:28:18 +00:00
|
|
|
}
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
2012-04-28 17:28:18 +00:00
|
|
|
|
2014-11-13 10:08:14 +00:00
|
|
|
form.login,
|
|
|
|
form.checkout_coupon,
|
|
|
|
form.register {
|
2014-09-22 17:48:26 +00:00
|
|
|
border: 1px solid darken( $secondary, 10% );
|
2012-11-13 19:59:34 +00:00
|
|
|
padding: 20px;
|
2016-08-09 16:28:32 +00:00
|
|
|
margin: 2em 0;
|
2014-11-13 10:08:14 +00:00
|
|
|
text-align: left;
|
2014-10-17 19:18:11 +00:00
|
|
|
border-radius: 5px;
|
2012-11-13 19:59:34 +00:00
|
|
|
}
|
2012-11-15 16:39:41 +00:00
|
|
|
|
|
|
|
ul#shipping_method {
|
2012-05-13 20:02:07 +00:00
|
|
|
list-style: none outside;
|
2012-11-15 16:39:41 +00:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
li {
|
|
|
|
margin: 0;
|
2016-08-09 16:28:32 +00:00
|
|
|
padding: 0.25em 0 0.25em 22px;
|
2012-11-15 16:39:41 +00:00
|
|
|
text-indent: -22px;
|
|
|
|
list-style: none outside;
|
2016-01-27 21:43:55 +00:00
|
|
|
input {
|
|
|
|
margin: 3px 0.5ex;
|
|
|
|
}
|
|
|
|
label {
|
|
|
|
display: inline;
|
|
|
|
}
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
.amount {
|
2014-11-13 14:16:32 +00:00
|
|
|
font-weight: 700;
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
2012-05-13 20:02:07 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2013-08-14 20:00:34 +00:00
|
|
|
p.woocommerce-shipping-contents {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2012-05-13 20:02:07 +00:00
|
|
|
|
2014-11-18 12:30:38 +00:00
|
|
|
/**
|
|
|
|
* Order page
|
|
|
|
*/
|
2017-02-28 12:46:22 +00:00
|
|
|
ul.order_details {
|
2014-11-13 11:43:26 +00:00
|
|
|
@include clearfix();
|
2017-02-28 12:46:22 +00:00
|
|
|
margin: 0 0 3em;
|
2014-11-13 11:43:26 +00:00
|
|
|
list-style: none;
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2014-11-13 11:43:26 +00:00
|
|
|
li {
|
|
|
|
float: left;
|
|
|
|
margin-right: 2em;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 0.715em;
|
2014-11-14 10:36:19 +00:00
|
|
|
line-height: 1;
|
2014-11-13 11:43:26 +00:00
|
|
|
border-right: 1px dashed darken( $secondary, 10% );
|
|
|
|
padding-right: 2em;
|
2015-03-09 14:37:14 +00:00
|
|
|
margin-left: 0;
|
|
|
|
padding-left: 0;
|
2016-04-14 06:12:55 +00:00
|
|
|
list-style-type: none;
|
2012-08-10 11:15:32 +00:00
|
|
|
|
2014-11-13 11:43:26 +00:00
|
|
|
strong {
|
|
|
|
display: block;
|
|
|
|
font-size: 1.4em;
|
|
|
|
text-transform: none;
|
2014-11-14 10:36:19 +00:00
|
|
|
line-height: 1.5;
|
2012-11-13 19:59:34 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2014-11-13 11:43:26 +00:00
|
|
|
&:last-of-type {
|
|
|
|
border: none;
|
|
|
|
}
|
2013-03-28 23:13:23 +00:00
|
|
|
}
|
2012-04-28 17:28:18 +00:00
|
|
|
}
|
2011-08-09 15:16:18 +00:00
|
|
|
|
2017-02-28 12:46:22 +00:00
|
|
|
.wc-bacs-bank-details-account-name {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2017-07-11 12:45:35 +00:00
|
|
|
.woocommerce-order-downloads,
|
2017-07-11 13:52:30 +00:00
|
|
|
.woocommerce-customer-details,
|
|
|
|
.woocommerce-order-details {
|
2017-07-11 12:45:35 +00:00
|
|
|
margin-bottom: 2em;
|
|
|
|
|
|
|
|
*:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.woocommerce-customer-details {
|
|
|
|
address {
|
|
|
|
font-style: normal;
|
|
|
|
margin-bottom: 0;
|
|
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
|
|
border-bottom-width: 2px;
|
|
|
|
border-right-width: 2px;
|
|
|
|
text-align: left;
|
|
|
|
width: 100%;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 6px 12px;
|
|
|
|
}
|
|
|
|
.woocommerce-customer-details--phone,
|
|
|
|
.woocommerce-customer-details--email {
|
|
|
|
margin-bottom: 0;
|
|
|
|
padding-left: 1.5em;
|
|
|
|
}
|
|
|
|
.woocommerce-customer-details--phone::before {
|
|
|
|
@include iconbefore( '\e037' );
|
|
|
|
margin-left: -1.5em;
|
|
|
|
line-height: 1.75;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
.woocommerce-customer-details--email::before {
|
|
|
|
@include iconbefore( '\e02d' );
|
|
|
|
margin-left: -1.5em;
|
|
|
|
line-height: 1.75;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-18 12:30:38 +00:00
|
|
|
/**
|
|
|
|
* Layered nav widget
|
|
|
|
*/
|
2017-07-10 13:36:47 +00:00
|
|
|
.woocommerce-widget-layered-nav-list {
|
2017-04-04 17:14:33 +00:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
list-style: none outside;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-07-10 13:36:47 +00:00
|
|
|
.woocommerce-widget-layered-nav-list__item {
|
2017-04-04 17:14:33 +00:00
|
|
|
@include clearfix();
|
|
|
|
padding: 0 0 1px;
|
|
|
|
list-style: none;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
a,
|
|
|
|
span {
|
|
|
|
padding: 1px 0;
|
2014-11-13 11:43:26 +00:00
|
|
|
}
|
2017-04-04 17:14:33 +00:00
|
|
|
}
|
2017-07-10 13:36:47 +00:00
|
|
|
.woocommerce-widget-layered-nav-list__item--chosen a::before {
|
2017-04-04 17:14:33 +00:00
|
|
|
@include iconbefore( '\e013' );
|
|
|
|
color: $red;
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
2014-11-13 11:43:26 +00:00
|
|
|
}
|
2017-07-10 13:36:47 +00:00
|
|
|
.woocommerce-widget-layered-nav-dropdown__submit {
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
2012-10-14 12:06:37 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
.widget_layered_nav_filters ul {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
list-style: none outside;
|
|
|
|
overflow: hidden;
|
|
|
|
zoom: 1;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
li {
|
|
|
|
float: left;
|
2017-12-14 16:37:51 +00:00
|
|
|
padding: 0 1em 1px 1px;
|
2017-04-04 17:14:33 +00:00
|
|
|
list-style: none;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
2014-12-02 21:19:03 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
&::before {
|
|
|
|
@include iconbefore( '\e013' );
|
|
|
|
color: $red;
|
2017-12-14 16:37:51 +00:00
|
|
|
vertical-align: inherit;
|
|
|
|
margin-right: .5em;
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
2012-10-14 12:06:37 +00:00
|
|
|
}
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
|
|
|
}
|
2012-01-13 12:34:44 +00:00
|
|
|
|
2014-11-18 12:30:38 +00:00
|
|
|
/**
|
|
|
|
* Price filter widget
|
|
|
|
*/
|
2012-11-15 16:39:41 +00:00
|
|
|
.widget_price_filter {
|
|
|
|
.price_slider {
|
|
|
|
margin-bottom: 1em;
|
2012-01-13 12:34:44 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
.price_slider_amount {
|
|
|
|
text-align: right;
|
2014-11-14 10:36:19 +00:00
|
|
|
line-height: 2.4;
|
2012-11-15 16:39:41 +00:00
|
|
|
font-size: 0.8751em;
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2012-11-15 16:39:41 +00:00
|
|
|
.button {
|
|
|
|
font-size: 1.15em;
|
2014-11-13 10:08:14 +00:00
|
|
|
float: left;
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
2012-01-13 12:34:44 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2013-07-31 03:11:21 +00:00
|
|
|
.ui-slider {
|
2012-11-15 16:39:41 +00:00
|
|
|
position: relative;
|
2014-11-13 10:08:14 +00:00
|
|
|
text-align: left;
|
2016-08-09 16:28:32 +00:00
|
|
|
margin-left: 0.5em;
|
|
|
|
margin-right: 0.5em;
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2013-07-31 03:11:21 +00:00
|
|
|
.ui-slider .ui-slider-handle {
|
2014-11-13 10:08:14 +00:00
|
|
|
position: absolute;
|
2012-11-15 16:39:41 +00:00
|
|
|
z-index: 2;
|
2014-11-13 16:22:13 +00:00
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
background-color: $primary;
|
2014-10-17 19:18:11 +00:00
|
|
|
border-radius: 1em;
|
2014-11-13 16:22:13 +00:00
|
|
|
cursor: ew-resize;
|
2014-11-13 10:08:14 +00:00
|
|
|
outline: none;
|
2016-08-09 16:28:32 +00:00
|
|
|
top: -0.3em;
|
2017-04-26 10:52:43 +00:00
|
|
|
/* rtl:ignore */
|
2016-08-09 16:28:32 +00:00
|
|
|
margin-left: -0.5em;
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2013-07-31 03:11:21 +00:00
|
|
|
.ui-slider .ui-slider-range {
|
2014-11-13 10:08:14 +00:00
|
|
|
position: absolute;
|
2012-11-15 16:39:41 +00:00
|
|
|
z-index: 1;
|
2016-08-09 16:28:32 +00:00
|
|
|
font-size: 0.7em;
|
2014-11-13 10:08:14 +00:00
|
|
|
display: block;
|
2012-11-15 16:39:41 +00:00
|
|
|
border: 0;
|
2014-10-17 19:18:11 +00:00
|
|
|
border-radius: 1em;
|
2014-11-13 11:14:57 +00:00
|
|
|
background-color: $primary;
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2013-07-31 03:11:21 +00:00
|
|
|
.price_slider_wrapper .ui-widget-content {
|
2014-10-17 19:18:11 +00:00
|
|
|
border-radius: 1em;
|
2014-11-13 16:22:13 +00:00
|
|
|
background-color: $primary - #444;
|
|
|
|
border: 0;
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2013-07-31 03:11:21 +00:00
|
|
|
.ui-slider-horizontal {
|
2016-08-09 16:28:32 +00:00
|
|
|
height: 0.5em;
|
2012-11-15 16:39:41 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2013-07-31 03:11:21 +00:00
|
|
|
.ui-slider-horizontal .ui-slider-range {
|
2012-11-15 16:39:41 +00:00
|
|
|
top: 0;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2013-07-31 03:11:21 +00:00
|
|
|
.ui-slider-horizontal .ui-slider-range-min {
|
2012-11-15 16:39:41 +00:00
|
|
|
left: -1px;
|
2012-01-13 12:34:44 +00:00
|
|
|
}
|
2014-11-13 10:08:14 +00:00
|
|
|
|
2013-07-31 03:11:21 +00:00
|
|
|
.ui-slider-horizontal .ui-slider-range-max {
|
2012-11-15 16:39:41 +00:00
|
|
|
right: -1px;
|
|
|
|
}
|
2012-01-13 12:34:44 +00:00
|
|
|
}
|
2015-11-13 09:48:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Rating Filter Widget
|
|
|
|
*/
|
2017-04-04 17:14:33 +00:00
|
|
|
.widget_rating_filter ul {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
list-style: none outside;
|
2015-11-13 09:48:41 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
li {
|
|
|
|
@include clearfix();
|
|
|
|
padding: 0 0 1px;
|
|
|
|
list-style: none;
|
2015-11-13 09:48:41 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
a {
|
|
|
|
padding: 1px 0;
|
|
|
|
text-decoration: none;
|
2015-11-13 09:48:41 +00:00
|
|
|
}
|
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
.star-rating {
|
|
|
|
float: none;
|
|
|
|
display: inline-block;
|
2015-11-13 09:48:41 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-04 17:14:33 +00:00
|
|
|
|
|
|
|
li.chosen a::before {
|
|
|
|
@include iconbefore( '\e013' );
|
|
|
|
color: $red;
|
|
|
|
}
|
2015-11-13 09:48:41 +00:00
|
|
|
}
|
2014-11-18 12:30:38 +00:00
|
|
|
}
|
2014-11-13 11:43:26 +00:00
|
|
|
|
2016-10-13 14:25:42 +00:00
|
|
|
/**
|
|
|
|
* Photoswipe
|
|
|
|
* 1. These styles are required to overwrite default theme button styles (Twenty Twelve adds gradients via background-image).
|
|
|
|
* 2. For zooming on mobile.
|
|
|
|
*/
|
|
|
|
.pswp {
|
|
|
|
z-index: 999999;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce img.pswp__img,
|
|
|
|
.woocommerce-page img.pswp__img {
|
|
|
|
max-width: none; /* 2 */
|
|
|
|
}
|
|
|
|
|
|
|
|
button.pswp__button {
|
|
|
|
box-shadow: none !important;
|
2016-11-03 11:35:55 +00:00
|
|
|
background-image: url('photoswipe/default-skin/default-skin.png') !important;
|
2016-10-13 14:25:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
button.pswp__button,
|
|
|
|
button.pswp__button:hover,
|
|
|
|
button.pswp__button--arrow--left::before,
|
|
|
|
button.pswp__button--arrow--right::before {
|
|
|
|
background-color: transparent !important; /* 1 */
|
|
|
|
}
|
|
|
|
|
|
|
|
button.pswp__button--arrow--left,
|
|
|
|
button.pswp__button--arrow--right,
|
|
|
|
button.pswp__button--arrow--left:hover,
|
|
|
|
button.pswp__button--arrow--right:hover {
|
|
|
|
background-image: none !important; /* 1 */
|
|
|
|
}
|
|
|
|
|
|
|
|
button.pswp__button--close:hover {
|
|
|
|
background-position: 0 -44px;
|
|
|
|
}
|
|
|
|
|
|
|
|
button.pswp__button--zoom:hover {
|
|
|
|
background-position: -88px 0;
|
|
|
|
}
|
|
|
|
|
2016-07-07 21:41:11 +00:00
|
|
|
.woocommerce-message,
|
|
|
|
.woocommerce-error,
|
|
|
|
.woocommerce-info {
|
2016-08-05 14:47:54 +00:00
|
|
|
padding: 1em 2em 1em 3.5em;
|
|
|
|
margin: 0 0 2em;
|
2016-07-07 21:41:11 +00:00
|
|
|
position: relative;
|
2016-08-09 16:28:32 +00:00
|
|
|
background-color: lighten($secondary, 5%);
|
2016-07-07 21:41:11 +00:00
|
|
|
color: $secondarytext;
|
|
|
|
border-top: 3px solid $primary;
|
2016-08-05 14:47:54 +00:00
|
|
|
list-style: none outside;
|
2016-07-07 21:41:11 +00:00
|
|
|
@include clearfix();
|
|
|
|
width: auto;
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
&::before {
|
|
|
|
font-family: 'WooCommerce';
|
|
|
|
content: '\e028';
|
2016-07-07 21:41:11 +00:00
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
top: 1em;
|
|
|
|
left: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
2016-08-05 14:47:54 +00:00
|
|
|
list-style: none outside !important; // Required for default theme compatibility
|
|
|
|
padding-left: 0 !important; // Required for default theme compatibility
|
|
|
|
margin-left: 0 !important; // Required for default theme compatibility
|
2016-07-07 21:41:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-13 14:25:42 +00:00
|
|
|
/**
|
|
|
|
* Right to left styles
|
|
|
|
*/
|
2017-04-04 17:14:33 +00:00
|
|
|
.rtl.woocommerce div.product div.images .flex-control-thumbs li {
|
|
|
|
float: right;
|
2016-10-13 14:25:42 +00:00
|
|
|
}
|
|
|
|
|
2016-07-07 21:41:11 +00:00
|
|
|
.woocommerce-message {
|
|
|
|
border-top-color: #8fae1b;
|
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
&::before {
|
|
|
|
content: '\e015';
|
2016-07-07 21:41:11 +00:00
|
|
|
color: #8fae1b;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-info {
|
|
|
|
border-top-color: #1e85be;
|
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
&::before {
|
2016-07-07 21:41:11 +00:00
|
|
|
color: #1e85be;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-error {
|
|
|
|
border-top-color: #b81c23;
|
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
&::before {
|
|
|
|
content: '\e016';
|
2016-07-07 21:41:11 +00:00
|
|
|
color: #b81c23;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-18 12:30:38 +00:00
|
|
|
/**
|
|
|
|
* Account page
|
|
|
|
*/
|
2014-11-13 11:43:26 +00:00
|
|
|
.woocommerce-account {
|
2016-01-15 20:34:37 +00:00
|
|
|
.woocommerce {
|
|
|
|
@include clearfix();
|
|
|
|
}
|
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
.addresses .title {
|
|
|
|
@include clearfix();
|
2014-11-13 11:43:26 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
h3 {
|
|
|
|
float: left;
|
|
|
|
}
|
2014-11-13 11:43:26 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
.edit {
|
|
|
|
float: right;
|
2014-11-13 11:43:26 +00:00
|
|
|
}
|
|
|
|
}
|
2013-04-05 15:17:39 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
ol.commentlist.notes li.note {
|
|
|
|
p.meta {
|
|
|
|
font-weight: 700;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2014-11-13 11:43:26 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
.description p:last-child {
|
|
|
|
margin-bottom: 0;
|
2014-11-13 11:43:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ul.digital-downloads {
|
|
|
|
margin-left: 0;
|
|
|
|
padding-left: 0;
|
|
|
|
|
|
|
|
li {
|
|
|
|
list-style: none;
|
|
|
|
margin-left: 0;
|
|
|
|
padding-left: 0;
|
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
&::before {
|
|
|
|
@include iconbefore( '\e00a' );
|
2014-11-13 11:43:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.count {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-11-18 12:30:38 +00:00
|
|
|
}
|
2014-11-13 11:43:26 +00:00
|
|
|
|
2014-11-18 12:30:38 +00:00
|
|
|
/**
|
2016-06-27 10:42:01 +00:00
|
|
|
* Cart/checkout page
|
2014-11-18 12:30:38 +00:00
|
|
|
*/
|
2016-06-27 10:42:01 +00:00
|
|
|
.woocommerce-cart,
|
|
|
|
.woocommerce-checkout,
|
|
|
|
#add_payment_method {
|
2014-11-13 11:43:26 +00:00
|
|
|
table.cart {
|
|
|
|
.product-thumbnail {
|
|
|
|
min-width: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
width: 32px;
|
2014-11-14 10:36:52 +00:00
|
|
|
box-shadow: none;
|
2014-11-13 11:43:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
th,
|
|
|
|
td {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
td.actions .coupon .input-text {
|
|
|
|
float: left;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border: 1px solid darken( $secondary, 10% );
|
|
|
|
padding: 6px 6px 5px;
|
|
|
|
margin: 0 4px 0 0;
|
|
|
|
outline: 0;
|
|
|
|
line-height: 1;
|
2014-11-13 11:43:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
margin: 0;
|
|
|
|
vertical-align: middle;
|
2014-11-14 10:36:19 +00:00
|
|
|
line-height: 1;
|
2014-11-13 11:43:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.wc-proceed-to-checkout {
|
|
|
|
@include clearfix;
|
|
|
|
padding: 1em 0;
|
|
|
|
|
|
|
|
a.checkout-button {
|
|
|
|
display: block;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 1em;
|
2015-11-16 15:59:44 +00:00
|
|
|
font-size: 1.25em;
|
|
|
|
padding: 1em;
|
2014-11-13 11:43:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.cart-collaterals {
|
|
|
|
.shipping_calculator {
|
|
|
|
.button {
|
|
|
|
width: 100%;
|
|
|
|
float: none;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
.shipping-calculator-button::after {
|
|
|
|
@include iconafter( '\e019' );
|
2014-11-13 11:43:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.cart_totals {
|
2017-04-04 17:14:33 +00:00
|
|
|
p small {
|
|
|
|
color: $subtext;
|
|
|
|
font-size: 0.83em;
|
2014-11-13 11:43:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
border-collapse: separate;
|
|
|
|
margin: 0 0 6px;
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
tr:first-child {
|
|
|
|
th,
|
|
|
|
td {
|
|
|
|
border-top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-16 15:59:44 +00:00
|
|
|
th {
|
|
|
|
width: 40%;
|
|
|
|
}
|
|
|
|
|
2014-11-13 11:43:26 +00:00
|
|
|
td,
|
|
|
|
th {
|
|
|
|
vertical-align: top;
|
2015-01-28 12:58:04 +00:00
|
|
|
border-left: 0;
|
|
|
|
border-right: 0;
|
2015-11-16 15:59:44 +00:00
|
|
|
line-height: 1.5em;
|
2014-11-13 11:43:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
small {
|
|
|
|
color: $subtext;
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.discount td {
|
|
|
|
color: $highlight;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr td,
|
|
|
|
tr th {
|
|
|
|
border-top: 1px solid $secondary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
.cross-sells ul.products li.product {
|
|
|
|
margin-top: 0;
|
2014-11-13 11:43:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.checkout {
|
|
|
|
.col-2 {
|
|
|
|
h3#ship-to-different-address {
|
|
|
|
float: left;
|
|
|
|
clear: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.notes {
|
|
|
|
clear: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-row-first {
|
|
|
|
clear: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.create-account small {
|
|
|
|
font-size: 11px;
|
|
|
|
color: $subtext;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.shipping-address {
|
|
|
|
padding: 0;
|
|
|
|
clear: left;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shipping_address {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#payment {
|
|
|
|
background: $secondary;
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
|
|
ul.payment_methods {
|
|
|
|
@include clearfix();
|
|
|
|
text-align: left;
|
|
|
|
padding: 1em;
|
|
|
|
border-bottom: 1px solid darken( $secondary, 10% );
|
|
|
|
margin: 0;
|
|
|
|
list-style: none outside;
|
|
|
|
|
|
|
|
li {
|
2014-11-14 10:36:19 +00:00
|
|
|
line-height: 2;
|
2014-11-13 11:43:26 +00:00
|
|
|
text-align: left;
|
|
|
|
margin: 0;
|
|
|
|
font-weight: normal;
|
|
|
|
|
|
|
|
input {
|
|
|
|
margin: 0 1em 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
vertical-align: middle;
|
2016-08-09 16:28:32 +00:00
|
|
|
margin: -2px 0 0 0.5em;
|
2014-11-13 11:43:26 +00:00
|
|
|
padding: 0;
|
|
|
|
position: relative;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
img + img {
|
|
|
|
margin-left: 2px;
|
|
|
|
}
|
|
|
|
}
|
2016-11-22 14:21:21 +00:00
|
|
|
|
|
|
|
li:not(.woocommerce-notice) {
|
|
|
|
@include clearfix;
|
|
|
|
}
|
2014-11-13 11:43:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
div.form-row {
|
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.payment_box {
|
|
|
|
position: relative;
|
2015-09-03 12:34:05 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
padding: 1em;
|
2016-08-09 16:28:32 +00:00
|
|
|
margin: 1em 0;
|
2014-11-13 11:43:26 +00:00
|
|
|
font-size: 0.92em;
|
|
|
|
border-radius: 2px;
|
2014-11-14 10:36:19 +00:00
|
|
|
line-height: 1.5;
|
2014-11-14 10:29:20 +00:00
|
|
|
background-color: darken( $secondary, 5% );
|
2014-11-13 11:43:26 +00:00
|
|
|
color: $secondarytext;
|
|
|
|
|
|
|
|
input.input-text, textarea {
|
|
|
|
border-color: darken( $secondary, 15% );
|
|
|
|
border-top-color: darken( $secondary, 20% );
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-input-placeholder {
|
|
|
|
color: darken( $secondary, 20% );
|
|
|
|
}
|
|
|
|
|
|
|
|
:-moz-placeholder {
|
|
|
|
color: darken( $secondary, 20% );
|
|
|
|
}
|
|
|
|
|
|
|
|
:-ms-input-placeholder {
|
|
|
|
color: darken( $secondary, 20% );
|
|
|
|
}
|
|
|
|
|
2016-05-26 11:42:29 +00:00
|
|
|
.woocommerce-SavedPaymentMethods {
|
2016-05-10 14:05:55 +00:00
|
|
|
list-style: none outside;
|
|
|
|
margin: 0;
|
2016-05-26 11:42:29 +00:00
|
|
|
.woocommerce-SavedPaymentMethods-token,
|
|
|
|
.woocommerce-SavedPaymentMethods-new {
|
2016-08-09 16:28:32 +00:00
|
|
|
margin: 0 0 0.5em;
|
2016-05-26 11:42:29 +00:00
|
|
|
label {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.woocommerce-SavedPaymentMethods-tokenInput {
|
|
|
|
vertical-align: middle;
|
|
|
|
margin: -3px 1em 0 0;
|
|
|
|
position: relative;
|
|
|
|
}
|
2016-05-10 14:05:55 +00:00
|
|
|
}
|
2016-05-26 11:42:29 +00:00
|
|
|
|
2016-05-10 14:05:55 +00:00
|
|
|
.wc-credit-card-form {
|
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
margin: 1em 0 0;
|
|
|
|
}
|
2014-11-13 11:43:26 +00:00
|
|
|
.wc-credit-card-form-card-number,
|
|
|
|
.wc-credit-card-form-card-expiry,
|
|
|
|
.wc-credit-card-form-card-cvc {
|
|
|
|
font-size: 1.5em;
|
|
|
|
padding: 8px;
|
|
|
|
background-repeat: no-repeat;
|
2016-08-09 16:28:32 +00:00
|
|
|
background-position: right 0.618em center;
|
2016-03-07 12:15:39 +00:00
|
|
|
background-size: 32px 20px;
|
2014-11-13 11:43:26 +00:00
|
|
|
|
|
|
|
&.visa {
|
2016-08-09 16:28:32 +00:00
|
|
|
background-image: url('../images/icons/credit-cards/visa.svg');
|
2014-11-13 11:43:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.mastercard {
|
2016-08-09 16:28:32 +00:00
|
|
|
background-image: url('../images/icons/credit-cards/mastercard.svg');
|
2014-11-13 11:43:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.laser {
|
2016-08-09 16:28:32 +00:00
|
|
|
background-image: url('../images/icons/credit-cards/laser.svg');
|
2014-11-13 11:43:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.dinersclub {
|
2016-08-09 16:28:32 +00:00
|
|
|
background-image: url('../images/icons/credit-cards/diners.svg');
|
2014-11-13 11:43:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.maestro {
|
2016-08-09 16:28:32 +00:00
|
|
|
background-image: url('../images/icons/credit-cards/maestro.svg');
|
2014-11-13 11:43:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.jcb {
|
2016-08-09 16:28:32 +00:00
|
|
|
background-image: url('../images/icons/credit-cards/jcb.svg');
|
2014-11-13 11:43:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.amex {
|
2016-08-09 16:28:32 +00:00
|
|
|
background-image: url('../images/icons/credit-cards/amex.svg');
|
2014-11-13 11:43:26 +00:00
|
|
|
}
|
|
|
|
&.discover {
|
2016-08-09 16:28:32 +00:00
|
|
|
background-image: url('../images/icons/credit-cards/discover.svg');
|
2014-11-13 11:43:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
span.help {
|
2016-08-09 16:28:32 +00:00
|
|
|
font-size: 0.857em;
|
2014-11-13 11:43:26 +00:00
|
|
|
color: $subtext;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-row {
|
|
|
|
margin: 0 0 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
p:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2016-08-09 16:28:32 +00:00
|
|
|
&::before {
|
|
|
|
content: '';
|
2014-11-13 11:43:26 +00:00
|
|
|
display: block;
|
2015-09-03 12:34:05 +00:00
|
|
|
border: 1em solid darken( $secondary, 5% ); /* arrow size / color */
|
2014-11-13 11:43:26 +00:00
|
|
|
border-right-color: transparent;
|
|
|
|
border-left-color: transparent;
|
|
|
|
border-top-color: transparent;
|
|
|
|
position: absolute;
|
2016-08-09 16:28:32 +00:00
|
|
|
top: -0.75em;
|
2014-11-13 11:43:26 +00:00
|
|
|
left: 0;
|
|
|
|
margin: -1em 0 0 2em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.payment_method_paypal {
|
|
|
|
.about_paypal {
|
|
|
|
float: right;
|
|
|
|
line-height: 52px;
|
|
|
|
font-size: 0.83em;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-height: 52px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-11-18 12:30:38 +00:00
|
|
|
}
|
2013-04-05 15:17:39 +00:00
|
|
|
|
2017-01-17 15:18:23 +00:00
|
|
|
.woocommerce-terms-and-conditions {
|
|
|
|
border: 1px solid rgba(0,0,0,.2);
|
|
|
|
box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
|
|
|
|
background: rgba(0,0,0,.05);
|
|
|
|
}
|
|
|
|
|
2015-10-13 20:42:26 +00:00
|
|
|
/**
|
2016-01-15 20:34:37 +00:00
|
|
|
* Password strength meter
|
2015-10-13 20:42:26 +00:00
|
|
|
*/
|
|
|
|
.woocommerce-password-strength {
|
|
|
|
text-align: center;
|
|
|
|
font-weight: 600;
|
2016-08-09 16:28:32 +00:00
|
|
|
padding: 3px 0.5em;
|
2016-01-28 15:52:39 +00:00
|
|
|
font-size: 1em;
|
2015-10-13 20:42:26 +00:00
|
|
|
|
|
|
|
&.strong {
|
|
|
|
background-color: #c1e1b9;
|
|
|
|
border-color: #83c373;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.short {
|
|
|
|
background-color: #f1adad;
|
|
|
|
border-color: #e35b5b;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.bad {
|
|
|
|
background-color: #fbc5a9;
|
|
|
|
border-color: #f78b53;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.good {
|
|
|
|
background-color: #ffe399;
|
|
|
|
border-color: #ffc733;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-27 10:53:59 +00:00
|
|
|
.woocommerce-password-hint {
|
2016-08-09 16:28:32 +00:00
|
|
|
margin: 0.5em 0 0;
|
2016-01-27 10:53:59 +00:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2014-11-18 12:30:38 +00:00
|
|
|
/**
|
|
|
|
* Twenty Eleven specific styles
|
|
|
|
*/
|
2017-04-04 17:14:33 +00:00
|
|
|
#content.twentyeleven .woocommerce-pagination a {
|
|
|
|
font-size: 1em;
|
|
|
|
line-height: 1;
|
2014-11-13 14:06:47 +00:00
|
|
|
}
|
|
|
|
|
2014-11-18 12:30:38 +00:00
|
|
|
/**
|
|
|
|
* Twenty Thirteen specific styles
|
|
|
|
*/
|
2017-04-04 17:14:33 +00:00
|
|
|
.single-product .twentythirteen {
|
|
|
|
.entry-summary,
|
|
|
|
#reply-title,
|
|
|
|
#respond #commentform {
|
|
|
|
padding: 0;
|
|
|
|
}
|
2014-02-17 12:49:19 +00:00
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
p.stars {
|
|
|
|
clear: both;
|
2013-04-05 15:17:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
.twentythirteen .woocommerce-breadcrumb {
|
|
|
|
padding-top: 40px;
|
2014-04-30 10:07:51 +00:00
|
|
|
}
|
|
|
|
|
2014-11-18 12:30:38 +00:00
|
|
|
/**
|
|
|
|
* Twenty Fourteen specific styles
|
|
|
|
*/
|
2017-04-04 17:14:33 +00:00
|
|
|
.twentyfourteen ul.products li.product {
|
|
|
|
margin-top: 0 !important;
|
2014-01-22 10:44:53 +00:00
|
|
|
}
|
2015-11-23 11:55:50 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Twenty Sixteen specific styles
|
|
|
|
*/
|
2017-04-04 17:14:33 +00:00
|
|
|
body:not( .search-results ) .twentysixteen .entry-summary {
|
|
|
|
color: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
line-height: inherit;
|
2015-11-23 11:55:50 +00:00
|
|
|
}
|
|
|
|
|
2017-04-04 17:14:33 +00:00
|
|
|
.twentysixteen .price ins {
|
|
|
|
background: inherit;
|
|
|
|
color: inherit;
|
2015-11-23 11:55:50 +00:00
|
|
|
}
|