Fix missing submenu hint on issue context menu #882

Contributed by Andrew Smith
This commit is contained in:
Felix Schäfer 2012-02-24 15:55:21 +01:00 committed by Felix Schäfer
parent e678612d75
commit f327298f88
1 changed files with 12 additions and 1 deletions

View File

@ -39,7 +39,6 @@
}
#context-menu li>a { width:auto; } /* others */
#context-menu a.disabled, #context-menu a.disabled:hover {color: #ccc;}
#context-menu li a.submenu { background:url("../images/bullet_arrow_right.png") right no-repeat; }
#context-menu li:hover { border:1px solid gray; background-color:#eee; }
#context-menu a:hover {color:#2A5685;}
#context-menu li.folder:hover { z-index:40; }
@ -49,3 +48,15 @@
/* selected element */
.context-menu-selection { background-color:#507AAA !important; color:#000 !important; }
.context-menu-selection:hover { background-color:#507AAA !important; color:#000 !important; }
#context-menu .submenu {
border: transparent solid 5px;
border-left-color: #6A0406;
position: absolute;
top: 5px;
right: 3px;
}
#context-menu .folder:hover .submenu {
border-left-color: #2A5685;
}