blob: 145ee54d29aec5130cbcc3d06d448269ab52bcd5 (
plain) (
blame)
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
|
.product-form-image-thumbnail {
max-width: 250px;
min-width: 250px;
.card {
height: 100%;
}
img {
object-fit: cover;
height: 100%;
}
.context-menu-button {
margin: -1rem;
background: rgba(0, 0, 0, .4);
color: white;
border: none;
border-radius: 0 0 0 0.25rem;
padding: 0 0 2px 0;
cursor: pointer !important;
}
}
#input-images-row {
flex-wrap: unset;
overflow-x: auto;
}
.draghandle {
margin-left: -74px;
padding-right: 24px;
cursor: move;
display: none;
}
#products.dragging .draghandle {
display: inline-block !important;
}
#products.dragging .products-wrapper {
display: none !important;
}
|