Tabs on the left - Content is not fluid
Created by: tysonnero
In the 2.0.3-wip branch, a fix was put in place to ensure the content next to side (left/right) tabs did not go the the next line but stayed beside the tabs. This was the fix:
.tab-content { display: table; width: 100%; }
.tabs-left .tab-content, .tabs-right .tab-content { width: auto; }
However, this causes the content to not grow with the width of the page. I propose the below solution which I have only tested on left side tabs so that the content is fluid.
.tab-content { display: table; width: 100%; }
.tabs-left .tab-content, .tabs-right .tab-content { display: block; overflow: hidden; width: auto; }