diff options
author | Jesús <heckyel@hyperbola.info> | 2019-04-03 16:44:35 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-04-03 16:44:35 -0500 |
commit | 30babccf3367379e4e2d3baf93d6284bbd143680 (patch) | |
tree | 32458bed0ebd43e7262e4b1af384e82d8bb667db /src/scss/bootstrap/mixins/_grid-framework.scss | |
download | libretube-theme-30babccf3367379e4e2d3baf93d6284bbd143680.tar.lz libretube-theme-30babccf3367379e4e2d3baf93d6284bbd143680.tar.xz libretube-theme-30babccf3367379e4e2d3baf93d6284bbd143680.zip |
first commit
Diffstat (limited to 'src/scss/bootstrap/mixins/_grid-framework.scss')
-rw-r--r-- | src/scss/bootstrap/mixins/_grid-framework.scss | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/src/scss/bootstrap/mixins/_grid-framework.scss b/src/scss/bootstrap/mixins/_grid-framework.scss new file mode 100644 index 0000000..649c28b --- /dev/null +++ b/src/scss/bootstrap/mixins/_grid-framework.scss @@ -0,0 +1,66 @@ +// Framework grid generation +// +// Used only by Bootstrap to generate the correct number of grid classes given +// any value of `$grid-columns`. + +@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) { + // Common properties for all breakpoints + %grid-column { + position: relative; + width: 100%; + padding-right: $gutter / 2; + padding-left: $gutter / 2; + } + + @each $breakpoint in map-keys($breakpoints) { + $infix: breakpoint-infix($breakpoint, $breakpoints); + + // Allow columns to stretch full width below their breakpoints + @for $i from 1 through $columns { + .col#{$infix}-#{$i} { + @extend %grid-column; + } + } + .col#{$infix}, + .col#{$infix}-auto { + @extend %grid-column; + } + + @include media-breakpoint-up($breakpoint, $breakpoints) { + // Provide basic `.col-{bp}` classes for equal-width flexbox columns + .col#{$infix} { + flex-basis: 0; + flex-grow: 1; + max-width: 100%; + } + .col#{$infix}-auto { + flex: 0 0 auto; + width: auto; + max-width: 100%; // Reset earlier grid tiers + } + + @for $i from 1 through $columns { + .col#{$infix}-#{$i} { + @include make-col($i, $columns); + } + } + + .order#{$infix}-first { order: -1; } + + .order#{$infix}-last { order: $columns + 1; } + + @for $i from 0 through $columns { + .order#{$infix}-#{$i} { order: $i; } + } + + // `$columns - 1` because offsetting by the width of an entire row isn't possible + @for $i from 0 through ($columns - 1) { + @if not ($infix == "" and $i == 0) { // Avoid emitting useless .offset-0 + .offset#{$infix}-#{$i} { + @include make-col-offset($i, $columns); + } + } + } + } + } +} |