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
// /**
// * Copyright © Magento, Inc. All rights reserved.
// * See COPYING.txt for license details.
// */
//
// Common
// _____________________________________________
& when (@media-common = true) {
// Prices
.price-style-1() {
.price {
&-tier_price .price-excluding-tax,
&-tier_price .price-including-tax {
display: inline;
}
}
}
.price-style-2() {
.price {
&-including-tax,
&-excluding-tax {
display: inline !important;
}
&-including-tax:before {
content: ' / ';
}
&-including-tax:after {
content: '('attr(data-label)')';
}
}
}
.price-style-3() {
.price-including-tax,
.price-excluding-tax {
display: block;
.lib-font-size(18);
line-height: 1;
.price {
font-weight: @font-weight__bold;
}
.cart-tax-total {
&:extend(.abs-tax-total all);
&-expanded {
&:extend(.abs-tax-total-expanded all);
}
}
}
.price-including-tax + .price-excluding-tax,
.weee[data-label] {
display: block;
.lib-font-size(18);
&:before {
content: attr(data-label) ': ';
.lib-font-size(11);
}
.price {
.lib-font-size(11);
}
}
}
.price-style-1();
.price-style-3();
}