seasons 0.9.3.beta13 → 0.9.3.beta14

Sign up to get free protection for your applications and to get access to all the features.
data/seasons.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{seasons}
5
- s.version = "0.9.3.beta13"
5
+ s.version = "0.9.3.beta14"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.3.5")
8
8
  s.authors = ["Scott Kellum"]
@@ -283,10 +283,13 @@ $fullbleed: true !default
283
283
 
284
284
  // BLUR LIGHTBOX BACKGROUND
285
285
  @if $blur-lightbox
286
- .chrome:first-child .grid, .chrome:first-child nav
287
- +prefix(filter, blur($blur-radius))
288
- .chrome:last-child .grid, .chrome:last-child nav
289
- +prefix(filter, blur(0))
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
metadata CHANGED
@@ -6,8 +6,8 @@ version: !ruby/object:Gem::Version
6
6
  - 0
7
7
  - 9
8
8
  - 3
9
- - beta13
10
- version: 0.9.3.beta13
9
+ - beta14
10
+ version: 0.9.3.beta14
11
11
  platform: ruby
12
12
  authors:
13
13
  - Scott Kellum