blob: e026fcdde79a0f93fe66b1293502a9e1b6f6eb26 (
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 12px 0 0;
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: left;
position: relative;
font-size: 18px;
padding: 9px 12px;
line-height: 20px;
border-right: 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;
right: 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;
}
|