1/* Generic context menu styles */
2#dtable_context_menu {
3	position: absolute;
4	/*For funthure options*/
5	/*width: 340px;*/
6	width: 140px;
7	z-index: 99999;
8	border: solid 1px #CCC;
9	background: #EEE;
10	padding: 0px;
11	margin: 0px;
12	display: none;
13}
14
15#dtable_context_menu li {
16	list-style: none;
17	padding: 0px;
18	margin: 0px;
19}
20
21#dtable_context_menu a {
22	color: #2B73B7;
23	text-decoration: none;
24	display: block;
25	line-height: 20px;
26	height: 20px;
27	background-position: 6px center;
28	background-repeat: no-repeat;
29	outline: none;
30	padding: 1px 5px;
31	padding-left: 28px;
32}
33
34#dtable_context_menu a:hover {
35	text-decoration: underline;
36}
37
38#dtable_context_menu li.separator {
39	border-top: solid 1px #CCC;
40}
41
42/*
43	adding Icons
44
45	You can add icons to the context menu by adding
46	classes to the respective li element(s)
47*/
48
49#dtable_context_menu li.edit a { background-image: url(images/edit.png); }
50#dtable_context_menu li.remove a { background-image: url(images/remove.png); }
51#dtable_context_menu li.insert_after a { background-image: url(images/insert_after.png); }
52#dtable_context_menu li.insert_before a { background-image: url(images/insert_before.png); }
53
54
55.dtable .panlock { background-image: url("images/panlock.png"); }
56.dtable .panunlock { background-image: url("images/panunlock.png"); }
57
58.dtable .panlock span
59{
60    font-weight:bold;
61}
62
63.dtable textarea.tableheader_open {
64	background-color: #CCCCCC;
65}
66
67.dtable textarea {
68	margin: 0;
69	padding:0;
70}
71