blob: 3e9a88430f266e6a62ffe470b888fec34f6dbc8b (
plain)
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
|
.gQuick {
margin: 0 !important;
padding: 0 !important;
border: none !important;
}
#gQuickPane {
background: #fff;
opacity: 0.8;
border-bottom: 1px dashed #000;
}
#gQuickPane div {
background-color: red;
float: right;
display: inline;
cursor: pointer;
margin: 8px;
}
#gQuickPane .rotate-clockwise {
background: url('../images/arrow_rotate_clockwise.png');
width: 16px;
height: 16px;
position: absolute;
top: 0px;
right: 0px;
}
#gQuickPane .rotate-clockwise span {
display: none;
}
#gQuickPane .rotate-counter-clockwise {
background: url('../images/arrow_rotate_anticlockwise.png');
width: 16px;
height: 16px;
position: absolute;
top: 0px;
left: 0px;
}
#gQuickPane .rotate-counter-clockwise span {
display: none;
}
#gQuickPane .edit {
background: url('../images/image_edit.png');
width: 16px;
height: 16px;
position: absolute;
top: 0px;
left: 50%;
}
#gQuickPane .edit span {
display: none;
}
|