Accordion links: clickable area
Created by: pom-pom
The accordion header links are small and easy to miss on mobile devices. It would be nice if the whole panel-heading area would be clickable …
On solution could be to make the accordion links full width like so:
In panels.less:
// Within heading, strip any `h*` tag of it's default margins for spacing.
.panel-title {
margin-top: 0;
margin-bottom: 0;
font-size: ceil((@font-size-base * 1.125));
> a {
display: block;
width: 100%
color: inherit;
}
}