Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dropdown menu inside Bootstrap panel group not completely visible

I am trying to get a dropdown menu to work with a collapsible panel group. The dropdown works fine if I take it out of the .panel-group div. I am using Bootstrap 3.0.3

Non-working js fiddle: http://jsfiddle.net/E2rqA/

and this is how it should look: http://jsfiddle.net/ShCaf/

like image 672
Mike_G Avatar asked Feb 02 '26 07:02

Mike_G


1 Answers

This is because of the following rule applied from bootstrap.css.

.panel-group .panel {
   margin-bottom: 0;
   overflow: hidden; /*This is the issue*/
   border-radius: 4px;
}

You can override the overflow for your own panel. You can add the following rule to make it more specific to your panel.

#sessionaccordion.panel-group .panel {
   overflow: visible;
}

Demo

like image 129
PSL Avatar answered Feb 05 '26 02:02

PSL



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!