Path of files: admin_menu\admin_menu_toolbar\ or all\modules\admin_menu\admin_menu_toolbar\
First:
In the file - admin_menu_toolbar.css on lines 62 trough 88... replace with this:
/* Shortcuts toggle */
#admin-menu li.admin-menu-shortcuts {
float: left !important; /* moves toggle to the far left to make it menu viable on hover */
}
#admin-menu li.admin-menu-shortcuts span.toggle {
background: url(toolbar.png) -25px -60px no-repeat !important; /* activates down arrow image */
cursor: pointer;
display: block;
height: 25px;
overflow: hidden;
text-indent: -999px;
width: 25px;
}
#admin-menu li.admin-menu-shortcuts-active span.toggle {
background-position: -25px -60px;
}
/* Shortcuts widget */
#admin-menu li.admin-menu-shortcuts-active ul {
display: block !important;
left: 0 !important;
width: 100%;
}
#admin-menu li.admin-menu-shortcuts ul {
background-color: #666;
padding: 5px 10px;
width: 120px; /* forces single column menu */
}
This css fix moves the #admin-menu li.admin-menu-shortcuts from off screen right to the left. Also, the #admin-menu li.admin-menu-shortcuts span.toggle shows the down arrow instead of the up arrow. I did not try to adjust the hover rollover.
In addition... To add direct links to "Add blog, Add page, Add image and Add story"...
In the file - admin_menu_toolbar.module at line 66, add:
// @todo *Move* this from $content['menu'] instead.
$content['shortcuts']['shortcuts']['node-add'] = array(
'#title' => t('Add content'),
'#href' => 'node/add',
);
$content['shortcuts']['shortcuts']['admin-content-node'] = array(
'#title' => t('Find content'),
'#href' => 'admin/content/node',
'#access' => user_access('administer nodes'),
);
$content['shortcuts']['shortcuts']['node-add-blog'] = array(
'#title' => t('Add Blog Post'),
'#href' => 'node/add/blog',
);
$content['shortcuts']['shortcuts']['node-add-page'] = array(
'#title' => t('Add Page'),
'#href' => 'node/add/page',
);
$content['shortcuts']['shortcuts']['node-add-image'] = array(
'#title' => t('Add Image'),
'#href' => 'node/add/image',
);
$content['shortcuts']['shortcuts']['node-add-story'] = array(
'#title' => t('Add Story'),
'#href' => 'node/add/story',
);
}
I'm sure the maintainers could make this more efficient but, this works for me.
Thanks,
Ralph
Comments
Comment #1
sunThanks for taking the time to report this issue.
However, marking as duplicate of #502500: Re-add Create content.
You can follow up on that issue to track its status instead. If any information from this issue is missing in the other issue, please make sure you provide it over there.