##// END OF EJS Templates
Merged r9389 from trunk....
Merged r9389 from trunk. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.4-stable@9402 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8708:e1072a3c4fb8
r9268:baa4ebd05f39
Show More
context_menu.css
53 lines | 2.0 KiB | text/css | LassoCssLexer
Jean-Philippe Lang
Smaller font in context menu....
r1699 #context-menu { position: absolute; z-index: 40; font-size: 0.9em;}
Jean-Philippe Lang
Added AJAX based context menu on the project issue list that provide shortcuts for editing, re-assigning, changing the status or the priority, moving or deleting an issue....
r859
#context-menu ul, #context-menu li, #context-menu a {
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at public/stylesheets/context_menu.css...
r7514 display:block;
margin:0;
padding:0;
border:0;
Jean-Philippe Lang
Added AJAX based context menu on the project issue list that provide shortcuts for editing, re-assigning, changing the status or the priority, moving or deleting an issue....
r859 }
#context-menu ul {
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at public/stylesheets/context_menu.css...
r7514 width:150px;
border-top:1px solid #ddd;
border-left:1px solid #ddd;
border-bottom:1px solid #777;
border-right:1px solid #777;
background:white;
list-style:none;
Jean-Philippe Lang
Added AJAX based context menu on the project issue list that provide shortcuts for editing, re-assigning, changing the status or the priority, moving or deleting an issue....
r859 }
#context-menu li {
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at public/stylesheets/context_menu.css...
r7514 position:relative;
padding:1px;
z-index:39;
border:1px solid white;
Jean-Philippe Lang
Added AJAX based context menu on the project issue list that provide shortcuts for editing, re-assigning, changing the status or the priority, moving or deleting an issue....
r859 }
Jean-Philippe Lang
Adds auto scroll to context submenus (#2863)....
r3611 #context-menu li.folder ul { position:absolute; left:168px; /* IE6 */ top:-2px; max-height:300px; overflow:hidden; overflow-y: auto; }
Jean-Philippe Lang
Added AJAX based context menu on the project issue list that provide shortcuts for editing, re-assigning, changing the status or the priority, moving or deleting an issue....
r859 #context-menu li.folder>ul { left:148px; }
Jean-Philippe Lang
Display the context menu above and/or to the left of the click if needed (patch by Mike Duchene, closes #960)....
r1308 #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; }
Jean-Philippe Lang
Added AJAX based context menu on the project issue list that provide shortcuts for editing, re-assigning, changing the status or the priority, moving or deleting an issue....
r859 #context-menu a {
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at public/stylesheets/context_menu.css...
r7514 text-decoration:none !important;
background-repeat: no-repeat;
background-position: 1px 50%;
padding: 1px 0px 1px 20px;
width:100%; /* IE */
Jean-Philippe Lang
Added AJAX based context menu on the project issue list that provide shortcuts for editing, re-assigning, changing the status or the priority, moving or deleting an issue....
r859 }
#context-menu li>a { width:auto; } /* others */
Jean-Philippe Lang
Slight change to the context menu style....
r8708 #context-menu a.disabled, #context-menu a.disabled:hover {color: #aaa;}
Jean-Philippe Lang
Bulk-edit custom fields through context menu (#6296)....
r8704 #context-menu li a.submenu { padding-right:16px; background:url("../images/bullet_arrow_right.png") right no-repeat; }
Jean-Philippe Lang
Context menu: keep parent item highlighted when hovering a submenu item....
r5117 #context-menu li:hover { border:1px solid gray; background-color:#eee; }
#context-menu a:hover {color:#2A5685;}
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at public/stylesheets/context_menu.css...
r7514 #context-menu li.folder:hover { z-index:40; }
Jean-Philippe Lang
Added AJAX based context menu on the project issue list that provide shortcuts for editing, re-assigning, changing the status or the priority, moving or deleting an issue....
r859 #context-menu ul ul, #context-menu li:hover ul ul { display:none; }
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at public/stylesheets/context_menu.css...
r7514 #context-menu li:hover ul, #context-menu li:hover li:hover ul { display:block; }
Jean-Philippe Lang
Slight change to the context menu style....
r8708 #context-menu a.icon-checked {background: url(../images/toggle_check.png) no-repeat 3px 40%;}
Jean-Philippe Lang
Added AJAX based context menu on the project issue list that provide shortcuts for editing, re-assigning, changing the status or the priority, moving or deleting an issue....
r859
/* 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; }