mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-01 13:24:25 +01:00
Ugh, Sass doesn't do extends across media, so we can't use placeholder here
This commit is contained in:
parent
50e854affa
commit
15018a6d8a
@ -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();
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user