Actions
Bug #2083
closedtab content extending beyond tab borders
Description
Tab content in DIV and Table design extends beyond its tabs borders.
Updated by beat almost 14 years ago
- 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.
Updated by beat almost 14 years ago
Adding width:auto; as follows fixes that issue:
.dynamic-tab-pane-control .tab-page .tab-content { margin: 10px; width: auto; }
Updated by beat almost 14 years ago
- 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 .
Actions