Closed (fixed)
Project:
Content Menu
Version:
7.x-1.x-dev
Component:
User interface
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
5 Jun 2012 at 06:34 UTC
Updated:
4 Mar 2013 at 19:40 UTC
If using the Rubik admin theme, then the edit title text box always displays.
i posted a similar issue here:
http://drupal.org/node/1606940
Comments
Comment #1
danielnolde commentedThe css in Rubik's core.css at line 704 is more specific and overrides content_menu.css' line 20/21. Made the latter more specific to fix this, but prepare that there can always some css of some theme that tries to control everything so tight that it interferes with module's css. In such a case, custom css fix are necessary (do them clean, e.g. in a custom sub theme css file).
For the vertical displacement of the ctools dropbuttons used in content_menu, such a custom fix might look like:
.ctools-button {
margin-top: 0em;
}
Fix committed, issue marked fixed.