mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-11-16 19:41:45 +00:00
5895bd048f
This is a quick-fix to support proper rendering of <sup>[1]</sup> elements when the sentence contains a right-to-left word. Amended: Changed from working through jQuery 'wrap' to CSS unicode-bidi. Amended: Dos2Unix conversion to get rid of pesky hidden characters, also corrected all of Amire80's comments. Bug: 36032 Change-Id: If85efe5ff1e0a3c57ee2523656702db89df07145
7 lines
184 B
CSS
7 lines
184 B
CSS
/* Isolation to fix references in case of RTL words at the end of a reference */
|
|
sup.reference {
|
|
unicode-bidi: -moz-isolate;
|
|
unicode-bidi: -webkit-isolate;
|
|
unicode-bidi: isolate;
|
|
}
|