Sha256: f232a24ea88fa73e8050d13d76cc14584be3f92e0d3e0be4c9360ea6005a8880
Contents?: true
Size: 1.26 KB
Versions: 3
Compression:
Stored size: 1.26 KB
Contents
/* Generic context menu styles */ .contextMenu { position: absolute; width: 120px; z-index: 99999; border: solid 1px #CCC; background: #EEE; padding: 0px; margin: 0px; display: none; } .contextMenu LI { list-style: none; padding: 0px; margin: 0px; } .contextMenu A { color: #333; 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; } .contextMenu LI.hover A { color: #FFF; background-color: #3399FF; } .contextMenu LI.disabled A { color: #AAA; cursor: default; } .contextMenu LI.hover.disabled A { background-color: transparent; } .contextMenu 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) */ .contextMenu LI.view A { background-image: url(/images/cms/icons/actions/view.png); } .contextMenu LI.publish A { background-image: url(/images/cms/icons/status/published.gif); } .contextMenu LI.edit A { background-image: url(/images/cms/icons/actions/edit.png); } .contextMenu LI.delete A { background-image: url(/images/cms/icons/actions/delete.png); }
Version data entries
3 entries across 3 versions & 2 rubygems