2014-12-02 23:02:35 +01:00
|
|
|
// Framework grid generation
|
|
|
|
//
|
|
|
|
// Used only by Bootstrap to generate the correct number of grid classes given
|
|
|
|
// any value of `$grid-columns`.
|
|
|
|
|
2014-12-20 16:03:30 +01:00
|
|
|
@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {
|
|
|
|
// Common properties for all breakpoints
|
2014-12-07 15:52:44 +01:00
|
|
|
%grid-column {
|
|
|
|
position: relative;
|
|
|
|
// Prevent columns from collapsing when empty
|
|
|
|
min-height: 1px;
|
|
|
|
// Inner gutter via padding
|
2014-12-20 16:03:30 +01:00
|
|
|
padding-left: ($gutter / 2);
|
|
|
|
padding-right: ($gutter / 2);
|
2014-12-02 23:02:35 +01:00
|
|
|
}
|
2015-12-08 10:50:42 +01:00
|
|
|
$breakpoint-counter: 0;
|
2014-12-20 16:03:30 +01:00
|
|
|
@each $breakpoint in map-keys($breakpoints) {
|
2015-12-08 10:50:42 +01:00
|
|
|
$breakpoint-counter: ($breakpoint-counter + 1);
|
2014-12-20 16:03:30 +01:00
|
|
|
@for $i from 1 through $columns {
|
2014-12-07 15:52:44 +01:00
|
|
|
.col-#{$breakpoint}-#{$i} {
|
|
|
|
@extend %grid-column;
|
|
|
|
}
|
2014-12-05 11:53:43 +01:00
|
|
|
}
|
2014-12-29 22:37:20 +01:00
|
|
|
@include media-breakpoint-up($breakpoint) {
|
2014-12-20 16:03:30 +01:00
|
|
|
// Work around cross-media @extend (https://github.com/sass/sass/issues/1050)
|
|
|
|
%grid-column-float-#{$breakpoint} {
|
2015-08-20 09:38:02 +02:00
|
|
|
float: left;
|
2014-12-20 16:03:30 +01:00
|
|
|
}
|
|
|
|
@for $i from 1 through $columns {
|
|
|
|
.col-#{$breakpoint}-#{$i} {
|
2015-08-20 09:38:02 +02:00
|
|
|
@if not $enable-flex {
|
|
|
|
@extend %grid-column-float-#{$breakpoint};
|
|
|
|
}
|
2014-12-20 16:03:30 +01:00
|
|
|
@include make-col-span($i, $columns);
|
|
|
|
}
|
|
|
|
}
|
2015-12-08 10:50:42 +01:00
|
|
|
@each $modifier in (pull, push) {
|
2014-12-20 16:03:30 +01:00
|
|
|
@for $i from 0 through $columns {
|
|
|
|
.col-#{$breakpoint}-#{$modifier}-#{$i} {
|
|
|
|
@include make-col-modifier($modifier, $i, $columns)
|
|
|
|
}
|
|
|
|
}
|
2014-12-07 15:52:44 +01:00
|
|
|
}
|
2015-12-08 10:50:42 +01:00
|
|
|
// `$columns - 1` because offsetting by the width of an entire row isn't possible
|
|
|
|
@for $i from 0 through ($columns - 1) {
|
|
|
|
@if $breakpoint-counter != 1 or $i != 0 { // Avoid emitting useless .col-xs-offset-0
|
|
|
|
.col-#{$breakpoint}-offset-#{$i} {
|
|
|
|
@include make-col-modifier(offset, $i, $columns)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-12-02 23:02:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|