From abd233f2f0d366263f5551919fdfd439e6bc18d4 Mon Sep 17 00:00:00 2001 From: Volker E Date: Mon, 3 May 2021 01:48:51 -0700 Subject: [PATCH] Unify `list-style` CSS `list-style: none none` was a workaround for an IE 6 & 7 rendering issue. Same goes for `list-style-image: none; list-style-type: none;` combination. Let's unify to shorthand `list-style: none` for any non-ancient browser. Change-Id: If091ad82c7f73dbae826aeddc6c65c56ea92c73d --- modules/ext.categoryTree.styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ext.categoryTree.styles.css b/modules/ext.categoryTree.styles.css index 15e2ef3d..10985813 100644 --- a/modules/ext.categoryTree.styles.css +++ b/modules/ext.categoryTree.styles.css @@ -24,7 +24,7 @@ */ .client-js #mw-subcategories ul { - list-style: none none; + list-style: none; margin-left: 0.25em; }