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
  • #12526
Closed
Open
Issue created Feb 02, 2014 by Administrator@rootContributor

Clean up the Dashboard Example

Created by: mrmv

The dashboard example is a nice starter template but is has some issues / needs some cleanup.

1. It uses the outdated .container-fluid classes, this should be the bs3.container (i assume with a width:100% override) 2. The sidebar should allow scrolling if the content is too long, the css for .sidebar could be someting like

@media (min-width: 768px) {
  .sidebar {
    position: fixed;
    top: 51px; /* use a top offset */
    left: 0;
    bottom: 0;
    z-index: 1000;
    display: block;
    padding: 20px 20px 20px; /* 50px less on padding-top now we have a top offset*/
    overflow: auto; /* make it scrollable */
    background-color: #f5f5f5;
    border-right: 1px solid #eee;
  }
}
Assignee
Assign to
Time tracking