seasons 0.9.3.beta13 → 0.9.3.beta14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/seasons.gemspec +1 -1
- data/stylesheets/seasons/_core.sass +7 -4
- metadata +2 -2
data/seasons.gemspec
CHANGED
|
@@ -283,10 +283,13 @@ $fullbleed: true !default
|
|
|
283
283
|
|
|
284
284
|
// BLUR LIGHTBOX BACKGROUND
|
|
285
285
|
@if $blur-lightbox
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
286
|
+
// This blurs the grids and nav when the chrome is the first-child but overrides the blur when it is also the last-child.
|
|
287
|
+
// When the lightbox is enabled, the lightbox becomes the last-child, removing the override and blurring the grid and nav.
|
|
288
|
+
// IE has a bug where they don’t remove the blur. Therefore no blur can be written in the first place.
|
|
289
|
+
html:not(.browser-msie) .chrome:first-child .grid, html:not(.browser-msie) .chrome:first-child nav
|
|
290
|
+
+prefix(filter, blur($blur-radius), -moz- -webkit- -o-)
|
|
291
|
+
html:not(.browser-msie) .chrome:last-child .grid, html:not(.browser-msie) .chrome:last-child nav
|
|
292
|
+
+prefix(filter, blur(0), -moz- -webkit- -o-)
|
|
290
293
|
|
|
291
294
|
|
|
292
295
|
// MOBILE OPTIMIZATIONS
|