diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-05-25 15:02:31 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-05-25 15:02:31 +0100 |
commit | c86fb4cfa6fdf62c5d0ba968b6fda7eb46c3d027 (patch) | |
tree | 960c41aefe173f8a3be7fe6836c9e964f9606879 | |
parent | 4e0652313e183e4d74a49ea48ad4967a6576238e (diff) |
Deal with shrinking inputs in IE7.
-rw-r--r-- | web/cobrands/fixmystreet/_base.scss | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/web/cobrands/fixmystreet/_base.scss b/web/cobrands/fixmystreet/_base.scss index 644b015b5..efc65d1a2 100644 --- a/web/cobrands/fixmystreet/_base.scss +++ b/web/cobrands/fixmystreet/_base.scss @@ -151,6 +151,12 @@ select, input, textarea { font-size: 99%; max-width: 95%; } +.ie7 { + select, input, textarea { + max-width: none; + } +} + // To deal with bug from drop-down being wider than holder select { width: 100%; |