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
  • Merge requests
  • !12893

Subdivide xs range into xs-A and xs-B, to introduce a fully BC 480px break point.

  • Review changes

  • Download
  • Email patches
  • Plain diff
Closed Administrator requested to merge github/fork/donquixote/xs-AB-subdivision into master Mar 02, 2014
  • Overview 0
  • Commits 1
  • Pipelines 0
  • Changes 2

Created by: donquixote

See https://github.com/twbs/bootstrap/issues/10203#issuecomment-36443874 An additional breakpoint at 480px has been requested heavily, but there have been concerns about BC, especially regarding features that regard those ranges as min-max intervals instead of open-end intervals.

Instead of redefining existing ranges, this PR introduces subdivisions of the old ranges:

  • xs = 0..767 or 0..* (no change)
  • xs-A = 0..479 or 0..*
  • xs-B = 480..767 or 480..*
  • sm = 768..991 or 768..* (no change)
  • md = 992..1199 or 992..* (no change)
  • lg = 1200..* (no change)

E.g. you can now write

<div class="row">
  <div class="col-xs-B-6 col-sm-4 col-md-3">..</div>
  ..

with the following effect:

  • 0..479px: 1 column
  • 480px..767px: 2 columns
  • 768px..991px: 3 columns
  • 992px..*: 4 columns
Assignee
Assign to
Reviewers
Request review from
Time tracking
Source branch: github/fork/donquixote/xs-AB-subdivision