From: Trevor Parscal Date: Wed, 8 Jul 2009 18:02:17 +0000 (+0000) Subject: Resolves bug #19599 using specific rules rather than !important X-Git-Tag: 1.31.0-rc.0~41037 X-Git-Url: http://git.cyclocoop.org/data/%24self?a=commitdiff_plain;h=148144cb272c15ccaece3d0d309bcd09574384e8;p=lhc%2Fweb%2Fwiklou.git Resolves bug #19599 using specific rules rather than !important --- diff --git a/skins/vector/main-ltr.css b/skins/vector/main-ltr.css index 238f8bb296..445d5bc196 100644 --- a/skins/vector/main-ltr.css +++ b/skins/vector/main-ltr.css @@ -628,11 +628,11 @@ div#content select { .toc .toctitle { text-align: center; } -#toc ul, -.toc ul { - list-style-type: none !important; - list-style-image: none !important; - margin-left: 0 !important; +div#content #toc ul, +div#content .toc ul { + list-style-type: none; + list-style-image: none; + margin-left: 0; padding-left: 0; text-align: left; } diff --git a/skins/vector/main-rtl.css b/skins/vector/main-rtl.css index 8ce4513fe8..07b753485a 100644 --- a/skins/vector/main-rtl.css +++ b/skins/vector/main-rtl.css @@ -641,11 +641,11 @@ div#content select { .toc .toctitle { text-align: center; } -#toc ul, -.toc ul { - list-style-type: none !important; - list-style-image: none !important; - margin-right: 0 !important; +div#content #toc ul, +div#content .toc ul { + list-style-type: none; + list-style-image: none; + margin-right: 0; padding-right: 0; text-align: right; }