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

--- Comment #4 from RolandUnger <roland.un...@soziologie.uni-halle.de> ---
I used Seamonkey/Firefox for test. Yesterday we introduced indicators at
Wikivoyage/de as you can see it on screen for instance at
https://de.wikivoyage.org/wiki/Siwa in the upper right corner consisting of
three items (two icons and a coordinate).

There are two default css lines for this behavior:

.mw-body
.mw-indicators{float:right;line-height:1.6;font-size:0.875em;position:relative;z-index:1}

.mw-body
.mw-indicator{display:-moz-inline-block;display:inline-block;zoom:1;*display:inline}

But these rules are not working if you print the article (or use print preview
or print version in the side bar). In the print, all three items are on the
left side once below the other. Therefore I introduced workaround styles in
Mediawiki:Common.css like:

.mw-indicators { /* Workaround for bug 73297 */
 float:right;
 line-height:1.6;
 font-size:0.875em;
 position:relative;
 z-index:1
}
.mw-indicator { /* Workaround for bug 73297 */
 display:-moz-inline-block;
 display:inline-block;
 zoom:1;
 *display:inline
}

And now it works. These are the same rules but without mw-body ie without
descendant combinators.

You should also think about rtl writing fpr Hebrew and Arabic sites

-- 
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
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to