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
This commit is contained in:
Volker E 2021-05-03 01:48:51 -07:00
parent 9db8af8baa
commit abd233f2f0

View file

@ -24,7 +24,7 @@
*/
.client-js #mw-subcategories ul {
list-style: none none;
list-style: none;
margin-left: 0.25em;
}