-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.less
75 lines (67 loc) · 1.33 KB
/
plugin.less
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
.rwProducts-input {
width: 640px;
input, textarea { padding: 4px; }
input { height: 2em; }
.productImage {
img {
width: 120px; height: 120px;
}
}
.productOptionGroups {
overflow: scroll;
overflow-y: hidden;
.productOptionGroup {
display: table-cell;
width: 300px;
min-width: 300px;
padding-right: 1em;
input {
width: 100%;
}
.optionName {
width: 75%;
}
.optionPrice {
width: 25%;
}
}
}
}
.rw-products {
position: relative;
clear: both;
}
#products_editor {
.rw-product-thumbnail {
.tile;
img {
.border-radius(3px);
}
&.hidden {
opacity: 0.5;
}
.doDelete {
position: absolute;
right: 0;
}
.doHide {
position: absolute;
left: 0;
}
p {
text-align: center;
}
}
.insertion-point {
.tile;
background-color: #D80;
height: 100px;
}
.tile {
position: relative;
width: 100px;
display: inline-block;
margin: 0 6px;
vertical-align: top;
}
}