Ugh, Sass doesn't do extends across media, so we can't use placeholder here

This commit is contained in:
Mark Otto 2016-02-06 11:48:28 -08:00
parent 50e854affa
commit 15018a6d8a
3 changed files with 5 additions and 21 deletions

View File

@ -30,23 +30,10 @@
}
}
// Columns
//
// Common styles for small and large grid columns
@if $enable-grid-classes {
[class^="col"] {
position: relative;
min-height: 1px;
padding-right: ($grid-gutter-width / 2);
padding-left: ($grid-gutter-width / 2);
//
// // Allow `.col` to use an automatic, even width when flex mode is enabled
// @if $enable-flex {
// flex: 1;
// }
}
@include make-grid-columns();
}

View File

@ -10,10 +10,13 @@
@include media-breakpoint-up($breakpoint, $breakpoints) {
@if $enable-flex {
.col-#{$breakpoint} {
@extend column-basics; // Relative position, min-height, and horizontal padding
position: relative;
max-width: 100%;
min-height: 1px;
flex-basis: 0;
flex-grow: 1;
padding-right: ($grid-gutter-width / 2);
padding-left: ($grid-gutter-width / 2);
}
}

View File

@ -33,17 +33,11 @@
margin-right: ($gutter / -2);
}
// Used here for `make-col` and in the `grid-framework` for generating
// predefined grid classes.
%column-basics {
@mixin make-col($size, $columns: $grid-columns) {
position: relative;
min-height: 1px;
padding-right: ($grid-gutter-width / 2);
padding-left: ($grid-gutter-width / 2);
}
@mixin make-col($size, $columns: $grid-columns) {
@extend column-basics;
@if $enable-flex {
flex: 0 0 percentage($size / $columns);