Page MenuHomePhabricator

Arabic Wikipedia Category Line break
Closed, ResolvedPublic

Description

If You check any categorized article in Arabic Wikipedia, for instance http://ar.wikipedia.org/wiki/A, you will certainly notice the irregular line break between the prefix 'Category:' (تصنيف:‏ in Arabic) and the actual category line. Anyone please?


Version: unspecified
Severity: trivial

Details

Reference
bz32867
TitleReferenceAuthorSource BranchDest Branch
WasmEdge: Pin binary to 0.13.4repos/abstract-wiki/wikifunctions/function-evaluator!75jforresterT348673main
Pin version of wasmtime to v13.0.0 so that v14.0.0 doesn't break everything.repos/abstract-wiki/wikifunctions/function-evaluator!74apineapine-pin-wasmtimemain
Customize query in GitLab

Event Timeline

bzimport raised the priority of this task from to Medium.Nov 22 2014, 12:05 AM
bzimport set Reference to bz32867.
bzimport added a subscriber: Unknown Object (MLST).

Problem is with [[ar:ميدياويكي:Common.css]] which contains
div#content ul {

display: table;

}

This can be fixed by adding
div#catlinks ul {

display: inline-block;

}

This is broken again because "div#catlinks ul" was replaced with "#catlinks ul" and CSS says (in firefox and opera at least) that "div#content ul" as overriding "#catlinks ul" because it is more specific. See http://www.w3.org/TR/CSS2/cascade.html#specificity and http://www.w3.org/TR/CSS2/cascade.html#cascading-order for more info.