diff options
author | Matthew Somerville <matthew@mysociety.org> | 2016-06-15 18:02:02 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-07-06 12:58:40 +0100 |
commit | 5aaf27a430686748c6ec1f672ff3c1124cfab793 (patch) | |
tree | 2afc5d1617427824e34b4d2bd29b65253819000e | |
parent | 25adf6e4187085bd48d96c808483a6a4fcfc6ebc (diff) |
Fix display in IE7, including front page text.
.tablewrapper was sometimes losing its background,
it needs to be given hasLayout.
-rw-r--r-- | web/cobrands/sass/_layout.scss | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/web/cobrands/sass/_layout.scss b/web/cobrands/sass/_layout.scss index 02dab82d8..5ed4ddb97 100644 --- a/web/cobrands/sass/_layout.scss +++ b/web/cobrands/sass/_layout.scss @@ -532,6 +532,7 @@ body.authpage { //fix table to be a block for ie, float the children .ie6, .ie7 { .tablewrapper { + *zoom: 1; display:block; div {//ie6 doesn't support '>div', so we'll go with the somewhat risker 'div' width:48%; |