blob: 204d9d1b69d203cd81b781b0554209266c1d444e (
plain)
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
|
.o_product_feature_panel {
position: fixed;
bottom: 0;
left: 50%;
transform: translateX(-50%);
z-index:10;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom: 0px;
padding: 10px 20px;
text-align: center;
border: 2px solid theme-color('primary');
border-bottom: 0px;
background-color: white;
opacity: 0.95;
.o_product_panel {
position: relative;
.o_product_panel_header {
margin: 0 10px 0 10px;
cursor: pointer;
.o_product_icon {
margin-right: 5px;
}
.o_product_text {
text-transform: uppercase;
vertical-align: middle;
font-size: 16px;
}
.o_product_circle {
vertical-align: 6px;
padding: 0 3px;
line-height: 14px;
}
}
.o_product_panel_content {
display: none !important;
}
}
}
.oe_website_sale {
.product_summary > *{
display: block;
margin: 15px 0 15px 0;
}
.table-comparator {
.o_product_comparison_collpase {
margin-right: 8px;
}
}
div.css_not_available .o_add_compare_dyn {
display: none;
}
.o_comparelist_remove {
@include o-position-absolute($top: 0, $right: 0.5rem);
}
.o_ws_compare_image {
vertical-align: middle;
}
}
|