2008-07-28 22:01:05 +04:00
|
|
|
#context-menu { position: absolute; z-index: 40; font-size: 0.9em;}
|
2007-10-28 13:55:59 +03:00
|
|
|
|
|
|
|
#context-menu ul, #context-menu li, #context-menu a {
|
2012-08-13 17:48:20 +04:00
|
|
|
display:block;
|
|
|
|
margin:0;
|
|
|
|
padding:0;
|
|
|
|
border:0;
|
2007-10-28 13:55:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#context-menu ul {
|
2012-08-13 17:48:20 +04:00
|
|
|
width:150px;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
background:white;
|
|
|
|
list-style:none;
|
|
|
|
padding:2px;
|
|
|
|
border-radius:2px;
|
2007-10-28 13:55:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#context-menu li {
|
2012-08-13 17:48:20 +04:00
|
|
|
position:relative;
|
|
|
|
padding:1px;
|
|
|
|
z-index:39;
|
|
|
|
border:1px solid white;
|
2007-10-28 13:55:59 +03:00
|
|
|
}
|
2010-05-01 15:54:40 +04:00
|
|
|
#context-menu li.folder ul { position:absolute; left:168px; /* IE6 */ top:-2px; max-height:300px; overflow:hidden; overflow-y: auto; }
|
2007-10-28 13:55:59 +03:00
|
|
|
#context-menu li.folder>ul { left:148px; }
|
|
|
|
|
2008-04-03 20:38:06 +04:00
|
|
|
#context-menu.reverse-y li.folder>ul { top:auto; bottom:0; }
|
|
|
|
#context-menu.reverse-x li.folder ul { left:auto; right:168px; /* IE6 */ }
|
|
|
|
#context-menu.reverse-x li.folder>ul { right:148px; }
|
|
|
|
|
2007-10-28 13:55:59 +03:00
|
|
|
#context-menu a {
|
2012-08-13 17:48:20 +04:00
|
|
|
text-decoration:none !important;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 1px 50%;
|
|
|
|
padding: 2px 0px 2px 20px;
|
|
|
|
width:100%; /* IE */
|
2007-10-28 13:55:59 +03:00
|
|
|
}
|
|
|
|
#context-menu li>a { width:auto; } /* others */
|
2012-02-10 00:18:21 +04:00
|
|
|
#context-menu a.disabled, #context-menu a.disabled:hover {color: #aaa;}
|
2012-02-09 22:22:11 +04:00
|
|
|
#context-menu li a.submenu { padding-right:16px; background:url("../images/bullet_arrow_right.png") right no-repeat; }
|
2012-08-13 17:48:20 +04:00
|
|
|
#context-menu li:hover { border:1px solid #628db6; background-color:#eef5fd; border-radius:3px; }
|
2011-03-28 23:24:02 +04:00
|
|
|
#context-menu a:hover {color:#2A5685;}
|
2011-10-21 03:02:23 +04:00
|
|
|
#context-menu li.folder:hover { z-index:40; }
|
2007-10-28 13:55:59 +03:00
|
|
|
#context-menu ul ul, #context-menu li:hover ul ul { display:none; }
|
2011-10-21 03:02:23 +04:00
|
|
|
#context-menu li:hover ul, #context-menu li:hover li:hover ul { display:block; }
|
2012-02-10 00:18:21 +04:00
|
|
|
#context-menu a.icon-checked {background: url(../images/toggle_check.png) no-repeat 3px 40%;}
|
2007-10-28 13:55:59 +03:00
|
|
|
|
|
|
|
/* selected element */
|
|
|
|
.context-menu-selection { background-color:#507AAA !important; color:#f8f8f8 !important; }
|
|
|
|
.context-menu-selection a, .context-menu-selection a:hover { color:#f8f8f8 !important; }
|
|
|
|
.context-menu-selection:hover { background-color:#507AAA !important; color:#f8f8f8 !important; }
|