openam / bootstrap-responsive-tabs

Bootstrap responsive tabs are tabs that switch to collapsible components (accordions) when resized.
openam.github.io/bootstrap-responsive-tabs
MIT License
132 stars 60 forks source link

Make entire panel clickable #5

Closed mcestone4 closed 10 years ago

mcestone4 commented 10 years ago

Collapse/expand panel on click of entire .panel div rather than just the .accordion-collapse link.

openam commented 10 years ago

This probably isn't going to happen since it's not the default behavior of Bootstrap.

openam commented 10 years ago

You can do this with your own custom CSS though. Try something like:

a.accordion-toggle {
  display: block;
  padding: 10px  15px;
}

div.panel-heading {
  padding: 0;
}

That will remove the padding from panel-heading, and add it to the accordion toggle.

mcestone4 commented 10 years ago

Thanks for the quick response @openam, the CSS fix is perfect.

niyazpoyilan commented 6 years ago

Can this be done without the bootstrap framework or is it dependent on it

openam commented 6 years ago

This project depends on bootstrap framework.