Commit RELEASE-NOTES line for the wgCategories js variable I added some time ago.
[lhc/web/wiklou.git] / js2 / mwEmbed / jquery / plugins / jquery.contextMenu.css
1 /* Generic context menu styles */
2 .contextMenu {
3 position: absolute;
4 width: 120px;
5 z-index: 99999;
6 border: solid 1px #CCC;
7 background: #EEE;
8 padding: 0px;
9 margin: 0px;
10 display: none;
11 }
12
13 .contextMenu LI {
14 list-style: none;
15 padding: 0px;
16 margin: 0px;
17 }
18
19 .contextMenu A {
20 color: #333;
21 text-decoration: none;
22 display: block;
23 line-height: 20px;
24 height: 20px;
25 background-position: 6px center;
26 background-repeat: no-repeat;
27 outline: none;
28 padding: 1px 5px;
29 padding-left: 28px;
30 }
31
32 .contextMenu LI.hover A {
33 color: #FFF;
34 background-color: #3399FF;
35 }
36
37 .contextMenu LI.disabled A {
38 color: #AAA;
39 cursor: default;
40 }
41
42 .contextMenu LI.hover.disabled A {
43 background-color: transparent;
44 }
45
46 .contextMenu LI.separator {
47 border-top: solid 1px #CCC;
48 }
49
50 /*
51 Adding Icons
52
53 You can add icons to the context menu by adding
54 classes to the respective LI element(s)
55 */
56
57 .contextMenu LI.edit A { background-image: url(images/page_white_edit.png); }
58 .contextMenu LI.cut A { background-image: url(images/cut.png); }
59 .contextMenu LI.copy A { background-image: url(images/page_white_copy.png); }
60 .contextMenu LI.paste A { background-image: url(images/page_white_paste.png); }
61 .contextMenu LI.delete A { background-image: url(images/page_white_delete.png); }
62 .contextMenu LI.quit A { background-image: url(images/door.png); }