vendor/assets/stylesheets/purecss/_grids.scss in purecss-sass-0.6.0 vs vendor/assets/stylesheets/purecss/_grids.scss in purecss-sass-0.6.1
- old
+ new
@@ -1,8 +1,8 @@
/*!
-Pure v0.6.0
-Copyright 2014 Yahoo! Inc. All rights reserved.
+Pure v0.6.1
+Copyright 2013 Yahoo!
Licensed under the BSD License.
https://github.com/yahoo/pure/blob/master/LICENSE.md
*/
/*csslint regex-selectors:false, known-properties:false, duplicate-properties:false*/
@@ -36,27 +36,29 @@
* Helvetica, Arial, sans-serif: Common font stack on OS X and Windows.
*/
font-family: FreeSans, Arimo, "Droid Sans", Helvetica, Arial, sans-serif;
- /*
- Use flexbox when possible to avoid `letter-spacing` side-effects.
-
- NOTE: Firefox (as of 25) does not currently support flex-wrap, so the
- `-moz-` prefix version is omitted.
- */
-
+ /* Use flexbox when possible to avoid `letter-spacing` side-effects. */
+ display: -webkit-box;
display: -webkit-flex;
- -webkit-flex-flow: row wrap;
-
- /* IE10 uses display: flexbox */
display: -ms-flexbox;
+ display: flex;
+ -webkit-flex-flow: row wrap;
-ms-flex-flow: row wrap;
+ flex-flow: row wrap;
/* Prevents distributing space between rows */
- -ms-align-content: flex-start;
-webkit-align-content: flex-start;
+ -ms-flex-line-pack: start;
align-content: flex-start;
+}
+
+/* IE10 display: -ms-flexbox (and display: flex in IE 11) does not work inside a table; fall back to block and rely on font hack */
+@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
+ table .pure-g {
+ display: block;
+ }
}
/* Opera as of 12 on Windows needs word-spacing.
The ".opera-only" selector is used to prevent actual prefocus styling
and is not required in markup.