summaryrefslogtreecommitdiff
path: root/inc/customizer/custom-controls/assets/css/unminified/sortable.css
blob: e12f420997646285c3452306f25bf4ac37f33406 (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
46
47
48
49
50
51
52
53
.customize-control-ast-sortable .sortable {
  cursor: default;
}

.customize-control-ast-sortable .sortable .dashicons-visibility {
  cursor: pointer;
}

.customize-control-ast-sortable .sortable div {
  padding: 0 0 0 12px;
  border: 1px solid #dddddd;
  color: #556068;
  background: #ffffff;
  cursor: move;
  line-height: 38px;
  margin: 0 0 10px;
  border-radius: 3px;
}
.customize-control-ast-sortable .sortable div:last-child {
  margin: 0;
}

.customize-control-ast-sortable .sortable div .dashicons.visibility {
  float: right;
  position: relative;
  font-size: 18px;
  padding: 9px 12px;
  line-height: 20px;
  border-left: 1px solid #ddd;
}

.customize-control-ast-sortable .sortable div.invisible {
  opacity: 0.6;
}

.customize-control-ast-sortable .sortable div.invisible .dashicons.visibility:after {
  opacity: 1;
  position: absolute;
  content: '';
  width: 20px;
  height: 2px;
  top: 18px;
  left: 12px;
  background: #656565;
  border-radius: 5px;
  transform: rotate(-45deg);
  box-shadow: 0px 0px 0px 1px #fff;
  transition: opacity 0.2s ease;
}

.customize-control-ast-sortable .sortable div:hover {
  opacity: 0.8;
}