bundles.scss
1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/**
* WooCommerce AJAX Layered Nav
*/
/**
* Imports
*/
@import 'bourbon';
@import '../../../sass/utils/variables';
@import '../../../sass/utils/mixins';
@import '../../../node_modules/susy/sass/susy';
.bundle_form {
div.bundled_product_summary {
padding-bottom: 1.618em !important;
margin-bottom: 1.618em;
border-bottom: 1px solid $color_border;
p.stock,
.price {
margin-bottom: 0 !important;
margin-top: 0 !important;
}
}
}
@include susy-media($desktop) {
.bundle_form {
div.bundled_product_summary {
padding-left: 0;
.bundled_product_images {
margin-left: 0;
@include span( 2 of 10 );
a {
margin: 0 !important;
}
img {
width: 100% !important;
}
}
.details {
@include span( last 8 of 10 );
font-size: .857em;
}
}
div.bundled_product_summary.thumbnail_hidden {
padding-left: 0;
.details {
@include span( 10 of 10 );
}
}
}
.page-template-template-fullwidth-php,
.storefront-full-width-content {
.bundle_form {
div.bundled_product_summary {
padding-left: 0;
.bundled_product_images {
margin-left: 0;
@include span( 2 of 8 );
}
.details {
@include span( last 6 of 8 );
font-size: 1em;
}
}
div.bundled_product_summary.thumbnail_hidden {
padding-left: 0;
.details {
@include span( 8 of 8 );
}
}
}
}
}