Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • B bootstrap
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 263
    • Issues 263
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 114
    • Merge requests 114
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Bootstrap
  • bootstrap
  • Issues
  • #2811
Closed
Open
Issue created Mar 26, 2012 by Administrator@rootContributor

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; }

Assignee
Assign to
Time tracking