diff options
author | Cesar G <prototech91@gmail.com> | 2014-04-20 19:32:35 -0700 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2014-04-20 19:32:35 -0700 |
commit | 227949d10bdd12815ceb96fcdcccd31b3a8cb55f (patch) | |
tree | 328735c3f19b6d55e1b5538a417b58dd7e9dd83f | |
parent | 52ebeb5f828738fea258d2ec62d8c702882e3b26 (diff) | |
download | forums-227949d10bdd12815ceb96fcdcccd31b3a8cb55f.tar forums-227949d10bdd12815ceb96fcdcccd31b3a8cb55f.tar.gz forums-227949d10bdd12815ceb96fcdcccd31b3a8cb55f.tar.bz2 forums-227949d10bdd12815ceb96fcdcccd31b3a8cb55f.tar.xz forums-227949d10bdd12815ceb96fcdcccd31b3a8cb55f.zip |
[ticket/12130] Fix issue with li:first-child in <ul> having a bullet in IE8.
PHPBB3-12130
-rw-r--r-- | phpBB/styles/prosilver/theme/common.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index 15ac63ca90..3d5a0a433d 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -433,11 +433,11 @@ ul.linklist.bulletin li:before { } ul.linklist.bulletin li:first-child:before, ul.linklist.bulletin li.rightside:last-child:before { - display: none; + content: none; } ul.linklist.bulletin li.no-bulletin:before { - display: none; + content: none; } .responsive-menu:before { |