diff options
author | Chris Mytton <self@hecticjeff.net> | 2013-09-24 16:10:08 +0100 |
---|---|---|
committer | Chris Mytton <self@hecticjeff.net> | 2013-09-24 16:15:58 +0100 |
commit | 2a96f054e51a1a0e8319cc0a0c09b309d91439c2 (patch) | |
tree | 3caf884ddf0822f0deebfcbd055311eb07928cdd /web | |
parent | 0388429012dabd4381cc0d96d2c784947de74cf6 (diff) |
[Bromley] Fix right click links in IE8
When IE8 encounters a link with block level elements inside it (i.e.
elements with `display: block`) then it won't give the option to "Open
in a new tab" when you right click the link.
This fix simply makes all elements inside the link inline, which fixes
the problem.
This is a Bromley-specific fix.
Closes FixMyStreet-Commercial/issues#100
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/bromley/bromley.scss | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/web/cobrands/bromley/bromley.scss b/web/cobrands/bromley/bromley.scss index 91ec75fea..eee4359de 100644 --- a/web/cobrands/bromley/bromley.scss +++ b/web/cobrands/bromley/bromley.scss @@ -108,3 +108,6 @@ body { color: #333; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; clear: both; } +.issue-list-a li .text small { + display: inline; +} |