From: Trevor Parscal Date: Wed, 5 Aug 2009 18:30:42 +0000 (+0000) Subject: Fixes IE bug that causes lists in panel to show bullets. X-Git-Tag: 1.31.0-rc.0~40477 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dcompta/comptes/journal.php?a=commitdiff_plain;h=0b730ef78432aa7f8c36cd43dda9f8e7e863eb91;p=lhc%2Fweb%2Fwiklou.git Fixes IE bug that causes lists in panel to show bullets. --- diff --git a/skins/vector/main-ltr.css b/skins/vector/main-ltr.css index 319c7e9cb4..dd27fc6ea4 100644 --- a/skins/vector/main-ltr.css +++ b/skins/vector/main-ltr.css @@ -360,6 +360,8 @@ body { } #panel div.portal div.body ul { list-style: none; + list-style-image: none; + list-style-type: none; padding: 0; margin: 0; } diff --git a/skins/vector/main-rtl.css b/skins/vector/main-rtl.css index 4814550c06..bacbbc537c 100644 --- a/skins/vector/main-rtl.css +++ b/skins/vector/main-rtl.css @@ -360,6 +360,8 @@ body { } #panel div.portal div.body ul { list-style: none; + list-style-image: none; + list-style-type: none; padding: 0; margin: 0; }