blob: 7bf78464484f02232d95d1905c48074d02021705 (
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
|
.gQuick {
border: none !important;
margin: 0 !important;
padding: 0 !important;
}
#gQuickPane {
background: #000;
border-bottom: 1px solid #fff;
opacity: 0.8;
}
#gQuickPane a {
background-color: #333;
background-image: url(../images/d8e7f3_edit_icons.png);
background-repeat: no-repeat;
cursor: pointer;
display: block;
float: right;
height: 16px;
margin: 8px;
top: 0px;
width: 16px;
}
#gQuickPane a:hover {
background-color: #666;
}
#gQuickPane a span {
display: none;
}
#gQuickPane .clockwise {
background-position: -16px 0;
position: absolute;
right: 0px;
}
#gQuickPane .counter-clockwise {
background-position: 0 0;
left: 0px;
position: absolute;
}
#gQuickPane .edit {
background-position: 0 -16px;
left: 42%;
position: absolute;
}
|