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
This commit is contained in:
Sam Minnee 2008-01-24 00:01:44 +00:00
parent c3ab5b92f1
commit 17f796d0af
1 changed files with 10 additions and 4 deletions

View File

@ -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;
}