https://bugzilla.wikimedia.org/show_bug.cgi?id=31738

--- Comment #8 from Fomafix <[email protected]> 2012-05-31 07:33:18 UTC ---
For enwiki and other wikis with [[Template:Top icon]] containing absolute
positioning and individual position per icon the text direction issue can be
fixed:

Actual:

<div class="topicon" style="display: none; right: 55px;">
div.topicon {
    display: block !important;
    position: absolute;
    top: 10px;
    z-index: 10;
}

Solution:

<div class="topicon" style="display: none; margin-right: 55px; margin-left:
55px;">
div.topicon {
    display: block !important;
    position: absolute;
    top: 10px;
    z-index: 10;
    right: 0; /* gets flipped for RTL */
}

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
You are on the CC list for the bug.

_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to