From 17f796d0afc71634562767d43513983a756dccff Mon Sep 17 00:00:00 2001 From: Sam Minnee Date: Thu, 24 Jan 2008 00:01:44 +0000 Subject: [PATCH] Merged revisions 48474 via svnmerge from http://svn.silverstripe.com/open/modules/cms/branches/2.2.1asfonz ........ r48474 | sminnee | 2008-01-23 16:22:59 +1300 (Wed, 23 Jan 2008) | 1 line Fixed context menus in CMS ........ git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@48523 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- css/cms_left.css | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/css/cms_left.css b/css/cms_left.css index f16f0ed3..b715c2d3 100644 --- a/css/cms_left.css +++ b/css/cms_left.css @@ -288,17 +288,23 @@ ul#sitetree.tree ul ul { } - +/* This applies to both the LHS context menu and the TinyMCE context menu */ .contextMenu { + z-index: 1000; + background-color: white; + border: 1px #CCC solid; +} + +ul.contextMenu { padding: 0; margin: 0; } -.contextMenu li { +ul.contextMenu li { list-style-type: none; margin: 0; padding: 0; } -.contextMenu li a { +ul.contextMenu li a { display: block; font-family: Tahoma, Verdana, Arial, Helvetica; font-size: 11px; @@ -306,7 +312,7 @@ ul#sitetree.tree ul ul { color: black; text-decoration: none; } -.contextMenu li a:hover { +ul.contextMenu li a:hover { background-color: #B6BDD2; text-decoration: none; }