alphanodes / additionals

Redmine plugin for easy customization of settings, text and content display by using personal or role-based dashboards (drag&drop), providing wiki macros and act as library for other plugins.
https://www.redmine.org/plugins/additionals
GNU General Public License v2.0
131 stars 43 forks source link

Additionals with redmine_cms, css breaking dropdown menus #124

Open jcormier opened 2 years ago

jcormier commented 2 years ago

Menu items appear to be exceeding their container

Without additionals: image

With addtionals: image

In developer tools, if I delete the following, the menu goes back to looking correct. However, I've not been able to figure out what the offending line is.

#top-menu li:hover ul.menu-children,
#top-menu li ul.menu-children.visible { display: block; }

#top-menu .menu-children {
  display: none;
  position: absolute;
  width: inherit;
  z-index: 45;
  background-color: #fff;
  box-shadow: 2px 2px 14px #000;
  top: 17px;
  font-size: 110%;
}

#top-menu .menu-children li {
  float: left;
  clear: both;
  width: 100%;
}

#top-menu .menu-children li a {
  display: block;
  color: #555;
  padding: 5px 10px;
  background-color: #fff;
  font-weight: normal;
  /*! margin-right: 0; */
}

#top-menu .menu-children li a:hover {
  color: #fff;
  background-color: #759fcf;
}
jcormier commented 2 years ago

Tested on Firefox 94.0

alexandermeindl commented 2 years ago

Hi @jcormier,

looks like a problem with another plugin. Can you try it without redmine_cms?

jcormier commented 2 years ago

Yes, looks like redmine_cms is adding the Admin drop-down menu. And is conflicting with the css from additionals.