diff options
author | Louise Crow <louise.crow@gmail.com> | 2014-06-04 10:26:24 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2014-06-04 10:26:24 +0100 |
commit | 96f7b81c70ae297dd8e45e8ca02b9019415307b8 (patch) | |
tree | d7e0bc3d9dde7440ced409cea258c749966916d7 | |
parent | 2b39b1f0cc5a04247abc938dda551e78c5f5cf9e (diff) |
Handle IE7 not understanding css inherit.
-rw-r--r-- | app/assets/stylesheets/responsive/_footer_layout.scss | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/assets/stylesheets/responsive/_footer_layout.scss b/app/assets/stylesheets/responsive/_footer_layout.scss index 2b0c956fa..55b6839c2 100644 --- a/app/assets/stylesheets/responsive/_footer_layout.scss +++ b/app/assets/stylesheets/responsive/_footer_layout.scss @@ -45,6 +45,10 @@ img { display: inherit; + @include lte-ie7 { + display: block; + } } + } } |