Bug #2083
closed
tab content extending beyond tab borders
Added by krileon almost 14 years ago.
Updated almost 14 years ago.
Start date:
24 November 2010
Description
Tab content in DIV and Table design extends beyond its tabs borders.
- Status changed from New to Assigned
- Assignee set to beat
- % Done changed from 0 to 40
Real issue is in CB templates (default at least):
.dynamic-tab-pane-control .tab-page .tab-content {
margin: 10px;
}
does not set width: auto.
then as:
form.cb_form , .cb_tab_content { width: 100%; margin: 0px; padding: 0px; border-width: 0px; }
Does set width 100%, that setting is not overridden, while the margin is. So we end up too wide.
Adding width:auto; as follows fixes that issue:
.dynamic-tab-pane-control .tab-page .tab-content {
margin: 10px;
width: auto;
}
- Status changed from Assigned to Closed
- Priority changed from High to Normal
- % Done changed from 40 to 100
- Estimated time set to 0:30 h
CB r1200 and coolness/mycommunity r1504 fixes this bug and the related bug #2021 .
Also available in: Atom
PDF