aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLouise Crow <louise.crow@gmail.com>2014-06-04 10:26:24 +0100
committerLouise Crow <louise.crow@gmail.com>2014-06-04 10:26:24 +0100
commit96f7b81c70ae297dd8e45e8ca02b9019415307b8 (patch)
treed7e0bc3d9dde7440ced409cea258c749966916d7
parent2b39b1f0cc5a04247abc938dda551e78c5f5cf9e (diff)
Handle IE7 not understanding css inherit.
-rw-r--r--app/assets/stylesheets/responsive/_footer_layout.scss4
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;
+ }
}
+
}
}