diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2014-04-22 19:51:16 +0200 | 
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2014-04-22 19:51:16 +0200 | 
| commit | 121bd90873c4b7f4333480718e866edc51a84d16 (patch) | |
| tree | 2015050f502a18025551feda2d57bcd2e140c826 | |
| parent | 36ef90528bf819780797d18b72b3108aae3ca543 (diff) | |
| parent | 227949d10bdd12815ceb96fcdcccd31b3a8cb55f (diff) | |
| download | forums-121bd90873c4b7f4333480718e866edc51a84d16.tar forums-121bd90873c4b7f4333480718e866edc51a84d16.tar.gz forums-121bd90873c4b7f4333480718e866edc51a84d16.tar.bz2 forums-121bd90873c4b7f4333480718e866edc51a84d16.tar.xz forums-121bd90873c4b7f4333480718e866edc51a84d16.zip | |
Merge pull request #2337 from prototech/ticket/12130
[ticket/12130] Fix issue with li:first-child in <ul> having a bullet in IE8.
* prototech/ticket/12130:
  [ticket/12130] Fix issue with li:first-child in <ul> having a bullet in IE8.
| -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 { | 
