liuxiaolong
2019-05-06 acc45d2ece02563964d7b8a22ff0c40bd8358889
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
@import '../_custom-variables/pages';
 
$product-discounts-cell-padding-y: .75rem !default;
 
// Display slider tooltips only on hover / drag
.product-list-slider.noUi-target,
.product-list-slider .noUi-target {
  .noUi-tooltip {
    opacity: 0;
    transition: opacity .2s;
  }
 
  &.noUi-state-drag .noUi-tooltip,
  &:hover .noUi-tooltip {
    opacity: 1;
  }
}
 
.product-item-table {
  tr:first-child td {
    border-top: 0 !important;
  }
 
  tr td:first-child {
    width: 9rem;
  }
}
 
.product-item-discounts-table,
.product-discounts-edit {
  thead tr:first-child th {
    border-top: 0 !important;
  }
 
  td,
  th {
    padding-top: $product-discounts-cell-padding-y;
    padding-bottom:$product-discounts-cell-padding-y;
    vertical-align: middle;
  }
}
 
.product-discounts-edit td > .input-group,
.product-discounts-edit td > .form-control,
.product-discounts-edit td > .custom-select {
  min-width: 7.5rem !important;
}
 
.product-image-move {
  cursor: grab;
}