-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.css
70 lines (58 loc) · 1.41 KB
/
style.css
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
66
67
68
69
70
/* Generic context menu styles */
#dtable_context_menu {
position: absolute;
/*For funthure options*/
/*width: 340px;*/
width: 140px;
z-index: 99999;
border: solid 1px #CCC;
background: #EEE;
padding: 0px;
margin: 0px;
display: none;
}
#dtable_context_menu li {
list-style: none;
padding: 0px;
margin: 0px;
}
#dtable_context_menu a {
color: #2B73B7;
text-decoration: none;
display: block;
line-height: 20px;
height: 20px;
background-position: 6px center;
background-repeat: no-repeat;
outline: none;
padding: 1px 5px;
padding-left: 28px;
}
#dtable_context_menu a:hover {
text-decoration: underline;
}
#dtable_context_menu li.separator {
border-top: solid 1px #CCC;
}
/*
adding Icons
You can add icons to the context menu by adding
classes to the respective li element(s)
*/
#dtable_context_menu li.edit a { background-image: url(images/edit.png); }
#dtable_context_menu li.remove a { background-image: url(images/remove.png); }
#dtable_context_menu li.insert_after a { background-image: url(images/insert_after.png); }
#dtable_context_menu li.insert_before a { background-image: url(images/insert_before.png); }
.dtable .panlock { background-image: url("images/panlock.png"); }
.dtable .panunlock { background-image: url("images/panunlock.png"); }
.dtable .panlock span
{
font-weight:bold;
}
.dtable textarea.tableheader_open {
background-color: #CCCCCC;
}
.dtable textarea {
margin: 0;
padding:0;
}