| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- // Container widths
- //
- // Set the container width, and override it for fixed navbars in media queries.
- & when (@enable-grid-classes) {
- // Single container class with breakpoint max-widths
- .container,
- // 100% wide container at all breakpoints
- .container-fluid {
- #make-container();
- }
- // Responsive containers that are 100% wide until a breakpoint
- //@each $breakpoint, $container-max-width in $container-max-widths {
- // .container-#{$breakpoint} {
- // @extend .container-fluid;
- // }
- //
- // @include media-breakpoint-up($breakpoint, $grid-breakpoints) {
- // %responsive-container-#{$breakpoint} {
- // max-width: $container-max-width;
- // }
- //
- // @each $name, $width in $grid-breakpoints {
- // @if ($container-max-width > $width or $breakpoint == $name) {
- // .container#{breakpoint-infix($name, $grid-breakpoints)} {
- // @extend %responsive-container-#{$breakpoint};
- // }
- // }
- // }
- // }
- //}
- each(@container-max-widths, #(@container-max-width, @breakpoint) {
- .container-@{breakpoint} {
- &:extend(.container-fluid all);
- }
- #media-breakpoint-up(@breakpoint, {
- // LESS PORT: Unfortunately we have to use an actual selector here in order to be able to
- // `:extend()` it later. This means that the selector is output in the compiled CSS,
- // creating a small disparity between the Less and Sass versions.
- // LESS PORT: Less cannot currently extend interpolated selectors, however, when a plain
- // selector is used this appears to compile correctly anyway. Because of this, the
- // `-@{breakpoint}` suffix is omitted from this selector.
- \%responsive-container {
- max-width: @container-max-width;
- }
- each(@grid-breakpoints, #(@width, @name) {
- & when ((@container-max-width > @width) or (@breakpoint = @name)) {
- // LESS PORT: A variable is required here to do the selector interpolation, since an
- // expression cannot be interpolated like in the Sass version.
- @infix: breakpoint-infix(@name, @grid-breakpoints);
- .container@{infix} {
- // LESS PORT: Less cannot currently extend interpolated selectors, however, when a
- // plain selector is used this appears to compile correctly anyway. Because of
- // this, the `-@{breakpoint}` suffix is omitted from this selector.
- &:extend(\%responsive-container);
- }
- }
- });
- }, @grid-breakpoints);
- });
- }
- // Row
- //
- // Rows contain your columns.
- .row when (@enable-grid-classes) {
- #make-row();
- }
- // Remove the negative margin from default .row, then the horizontal padding
- // from all immediate children columns (to prevent runaway style inheritance).
- .no-gutters when (@enable-grid-classes) {
- margin-right: 0;
- margin-left: 0;
- > .col,
- > [class*="col-"] {
- padding-right: 0;
- padding-left: 0;
- }
- }
- // Columns
- //
- // Common styles for small and large grid columns
- & when (@enable-grid-classes) {
- #make-grid-columns();
- }
|