The accordion render is for some reason resizing slightly too small, causing a scrollbar to appear, in any quicktab tab with a view inside. (See attached screenshot.)
It resizes correctly when a block is rendered in the tab and no scrollbar appears.
| Comment | File | Size | Author |
|---|---|---|---|
| screenshot.png | 21.25 KB | jcassano |
Comments
Comment #1
oneidprod commentedI have the same problem with using nodes instead of views. It appears not be not enough padding-bottom that is inserted to the container div. But I don't know where you can change this as it is part of the element style attribute, I'm not able to override it.
element.style {
display: block;
overflow: auto;
padding-bottom: 17.6px; "21.9 works"
padding-top: 17.6px;
}
Comment #2
oneidprod commentedAfter doing some searching on overriding inline styles, there is a way using the !important css property. This will work for IE7 and newer.
I added this to my themes css
.ui-accordion-content {
padding-bottom: 22.9px !important;
}
The 21.9 from my previous post worked in firefox, but the minimum that worked in IE was 22.9. I've only tested in IE 7,8,9 and firefox(latest).
Comment #3
smustgrave commentedWith D7 EOL approaching in a month I'm starting to triage the D7 side of quicktabs queue. This doesn't appear to have any code so believe this may not make it, sorry! Thanks though!
If still an issue or needed for 4.0.x (latest branch) feel free to reopen