I've just updated to 7.x-2.0-alpha10 and find a small gap in my layout at the top of the Content zone . On inspection the div is called div#actions-container. I can't find in the theme settings where this is being generated to close it up (or make use of it when the time comes). I can hide this with CSS, but don't want to do that without understanding where it's in use.

Any clues?

Comments

himerus’s picture

This is used in the administrative section for links like "Add new Template" near the upper left of the page usually...

This code is not supposed to be getting dumped out when there are no action links. (I do see the issue in the html though, and do know how to rectify this one quickly)

For now, you should be using Rubik (http://drupal.org/project/rubik) for the admin theme (my preference until i build my own) and if that is the case, you can CSS it out until the next release fixes that HTML.

himerus’s picture

I've actually solved this quickly by in omega/omega/process/process-page.inc added the following lines:

// unset the action links array if it's empty
if (!element_children($vars['action_links'])) {
  unset($vars['action_links']);
}

I will make sure this doesn't cause any other bugs, and commit to the dev version soon, and will be in the next alpha release.

backwardgraphics’s picture

Quick Fix: Workaround until this is commited.

Simply add this to your css.

.action-links {
margin: 0;
}

himerus’s picture

Status: Active » Fixed

This has been committed to dev, and will be in alpha11 shortly.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

nilsja’s picture

Status: Closed (fixed) » Active

I need an action link (clone content) outside the administration theme. Right now it appears with a confusing themeing on the bottom of the dashboard. Looks like it got lost from the main navigation with a bullet point in front of it. I think this is not fixed, is it?

Argus’s picture

Status: Active » Closed (fixed)

5 months old, alpha version. If you still have an problem please post a new issue.