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
59
60
61
62
63
64
65
|
#contextMenu{ /* The menu container */
border:1px solid #202867; /* Border around the entire menu */
background-color:#FFF; /* White background color of the menu */
margin:0px;
padding:0px;
width:175px; /* Width of context menu */
font-family:arial;
font-size:12px;
background-image:url('../images/gradient.gif');
background-repeat:repeat-y;
/* Never change these two values */
display:none;
position:absolute;
}
#contextMenu a{ /* Links in the context menu */
color: #000;
text-decoration:none;
line-height:25px;
vertical-align:middle;
height:28px;
/* Don't change these 3 values */
display:block;
width:100%;
clear:both;
}
#contextMenu li{ /* Each menu item */
list-style-type:none;
padding:1px;
margin:1px;
cursor:pointer;
clear:both;
}
#contextMenu li div{ /* Dynamically created divs */
cursor:pointer;
}
#contextMenu .contextMenuHighlighted{ /* Highlighted context menu item */
border:1px solid #000;
padding:0px;
background-color:#E2EBED;
}
#contextMenu img{
border:0px;
}
#contextMenu .imageBox{ /* Dynamically created divs for images in the menu */
float:left;
padding-left:2px;
padding-top:3px;
vertical-align:middle;
width: 30px; /* IE 5.x */
width/* */:/**/28px; /* Other browsers */
width: /**/28px;
}
#contextMenu .itemTxt{
float:left;
width: 120px; /* IE 5.x */
width/* */:/**/140px; /* Other browsers */
width: /**/140px;
}
|