When the "Move local tasks into menu" option is ticked, primary and secondary local tasks do indeed move nicely into the horizontal menu bar. However, the selected task (tab) is not in any way distinguishable from the other tabs.
As a CSS style class of "active" is output in the HTML, I presume this can be fixed by adding this class to the admin_menu.ccs stylesheet, e.g. with the "admin-menu-tab"?

Comments

rdeboer’s picture

Version: 6.x-3.0-alpha1 » 6.x-1.5

Putting this in admin_menu/admin_menu.css did the trick for me for both primary and secondary local tasks (tabs), as used on the My account page (repositioned at the far end of the menu bar in Admin menu) or .../admin/build/themes/settings/garland.

#admin-menu li.active a, #admin-menu li.active .secondary a.active {
  font-weight: bold;
  text-decoration: underline;
}
#admin-menu li.active .secondary a {
  font-weight: normal;
  text-decoration: none;
}

Of course, there's 101 ways to tart up the mark-up, using colours etc, but this should suffice to demonstrate the principle.

rdeboer’s picture

Title: "Move local tasks into menu" » Selected local task tab to be highlighted
Version: 6.x-1.5 » 6.x-3.0-alpha1
sun’s picture

Version: 6.x-1.5 » 7.x-3.x-dev
sun’s picture

Status: Active » Closed (duplicate)

Thanks for taking the time to report this issue.

However, marking as duplicate of #686000: Improve "Move local tasks to menu" or remove the feature.
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.