Skip to content

Commit

Permalink
Updated to v4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
m-spyratos committed Apr 18, 2018
1 parent 0001a52 commit f591eb6
Show file tree
Hide file tree
Showing 9 changed files with 1,303 additions and 65 deletions.
1 change: 1 addition & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ module.exports = function (grunt) {
src: [
'bootstrap-grid.scss',
'utilities/_display.scss',
'utilities/_flex.scss',
'mixins/_breakpoints.scss',
'mixins/_grid-framework.scss',
'mixins/_grid.scss',
Expand Down
171 changes: 153 additions & 18 deletions css/grid.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Bootstrap Grid v4.0.0 (https://getbootstrap.com)
* Bootstrap Grid v4.1.0 (https://getbootstrap.com/)
* Copyright 2011-2018 The Bootstrap Authors
* Copyright 2011-2018 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
Expand All @@ -8,14 +8,16 @@
width: device-width;
}
html {
box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
box-sizing: inherit;
-webkit-box-sizing: inherit;
box-sizing: inherit;
}

.container {
Expand Down Expand Up @@ -1570,6 +1572,34 @@ html {
flex-wrap: wrap-reverse !important;
}

.flex-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}

.flex-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}

.flex-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}

.flex-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}

.flex-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}

.justify-content-start {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
Expand Down Expand Up @@ -1661,7 +1691,6 @@ html {

.align-self-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}

Expand All @@ -1677,7 +1706,6 @@ html {

.align-self-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}

Expand All @@ -1688,7 +1716,6 @@ html {

.align-self-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}

Expand Down Expand Up @@ -1736,6 +1763,34 @@ html {
flex-wrap: wrap-reverse !important;
}

.flex-sm-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}

.flex-sm-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}

.flex-sm-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}

.flex-sm-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}

.flex-sm-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}

.justify-content-sm-start {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
Expand Down Expand Up @@ -1827,7 +1882,6 @@ html {

.align-self-sm-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}

Expand All @@ -1843,7 +1897,6 @@ html {

.align-self-sm-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}

Expand All @@ -1854,7 +1907,6 @@ html {

.align-self-sm-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
}
Expand Down Expand Up @@ -1902,6 +1954,34 @@ html {
flex-wrap: wrap-reverse !important;
}

.flex-md-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}

.flex-md-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}

.flex-md-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}

.flex-md-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}

.flex-md-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}

.justify-content-md-start {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
Expand Down Expand Up @@ -1993,7 +2073,6 @@ html {

.align-self-md-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}

Expand All @@ -2009,7 +2088,6 @@ html {

.align-self-md-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}

Expand All @@ -2020,7 +2098,6 @@ html {

.align-self-md-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
}
Expand Down Expand Up @@ -2068,6 +2145,34 @@ html {
flex-wrap: wrap-reverse !important;
}

.flex-lg-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}

.flex-lg-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}

.flex-lg-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}

.flex-lg-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}

.flex-lg-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}

.justify-content-lg-start {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
Expand Down Expand Up @@ -2159,7 +2264,6 @@ html {

.align-self-lg-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}

Expand All @@ -2175,7 +2279,6 @@ html {

.align-self-lg-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}

Expand All @@ -2186,7 +2289,6 @@ html {

.align-self-lg-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
}
Expand Down Expand Up @@ -2234,6 +2336,34 @@ html {
flex-wrap: wrap-reverse !important;
}

.flex-xl-fill {
-webkit-box-flex: 1 !important;
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}

.flex-xl-grow-0 {
-webkit-box-flex: 0 !important;
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}

.flex-xl-grow-1 {
-webkit-box-flex: 1 !important;
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}

.flex-xl-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}

.flex-xl-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}

.justify-content-xl-start {
-webkit-box-pack: start !important;
-ms-flex-pack: start !important;
Expand Down Expand Up @@ -2325,7 +2455,6 @@ html {

.align-self-xl-auto {
-ms-flex-item-align: auto !important;
-ms-grid-row-align: auto !important;
align-self: auto !important;
}

Expand All @@ -2341,7 +2470,6 @@ html {

.align-self-xl-center {
-ms-flex-item-align: center !important;
-ms-grid-row-align: center !important;
align-self: center !important;
}

Expand All @@ -2352,7 +2480,6 @@ html {

.align-self-xl-stretch {
-ms-flex-item-align: stretch !important;
-ms-grid-row-align: stretch !important;
align-self: stretch !important;
}
}
Expand All @@ -2372,6 +2499,10 @@ html {
width: 100% !important;
}

.w-auto {
width: auto !important;
}

.h-25 {
height: 25% !important;
}
Expand All @@ -2388,6 +2519,10 @@ html {
height: 100% !important;
}

.h-auto {
height: auto !important;
}

.mw-100 {
max-width: 100% !important;
}
Expand Down
4 changes: 2 additions & 2 deletions css/grid.min.css

Large diffs are not rendered by default.

Loading

0 comments on commit f591eb6

Please sign in to comment.