Bug 20489 Configure illegal file characters https://bugzilla.wikimedia.org/show_bug...
[mediawiki.git] / js2 / mwEmbed / jquery / plugins / jquery.contextMenu.css
blobcc670018f90d3ff0cba02990ca9000099dfc8745
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;
13 .contextMenu LI {
14 list-style: none;
15 padding: 0px;
16 margin: 0px;
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;
32 .contextMenu LI.hover A {
33 color: #FFF;
34 background-color: #3399FF;
37 .contextMenu LI.disabled A {
38 color: #AAA;
39 cursor: default;
42 .contextMenu LI.hover.disabled A {
43 background-color: transparent;
46 .contextMenu LI.separator {
47 border-top: solid 1px #CCC;
51 Adding Icons
53 You can add icons to the context menu by adding
54 classes to the respective LI element(s)
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); }