blob: 1ab00de5393c467ebb3c3333ca967c0faecc95cd (
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
|
div.gQuickEdit {
margin: 0px !important;
padding: 0px !important;
border: none !important;
}
#gQuickEditPane {
background: white;
opacity: 0.8;
border-bottom: 1px dashed black;
}
#gQuickEditPane div {
background: red;
float: right;
display: inline;
cursor: pointer;
margin: 8px;
}
#gQuickEditPane div.rotate-clockwise {
background: url(../images/arrow_rotate_clockwise.png);
width: 16px;
height: 16px;
position: absolute;
top: 0px;
right: 0px;
}
#gQuickEditPane div.rotate-clockwise span {
display: none;
}
#gQuickEditPane div.rotate-counter-clockwise {
background: url(../images/arrow_rotate_anticlockwise.png);
width: 16px;
height: 16px;
position: absolute;
top: 0px;
left: 0px;
}
#gQuickEditPane div.rotate-counter-clockwise span {
display: none;
}
|