Opened 12 years ago
Closed 12 years ago
#11122 closed defect (fixed)
RTL for wiki-toc broken?
Reported by: | Dirk Stöcker | Owned by: | Christian Boos |
---|---|---|---|
Priority: | normal | Milestone: | 1.0.2 |
Component: | general | Version: | |
Severity: | normal | Keywords: | css rtl |
Cc: | ryan.j.ollos@… | Branch: | |
Release Notes: |
The |
||
API Changes: | |||
Internal Changes: |
Attachments (0)
Change History (5)
comment:1 by , 12 years ago
Keywords: | css added |
---|---|
Milestone: | → 1.0.2 |
Owner: | set to |
Release Notes: | modified (diff) |
Status: | new → assigned |
comment:2 by , 12 years ago
Are we in need of some documentation for the rtl
WikiProcessor? Am I overlooking its documentation somewhere, or is this some web common-knowledge that I haven't obtained yet ? :) I wasn't aware that it exists, and don't see a mention of it on the WikiProcessors page.
comment:3 by , 12 years ago
I've also recently discovered the table
WikiProcessor (via th:#10832), and it looks like we need documentation on the WikiProcessors page for that one as well.
comment:4 by , 12 years ago
Cc: | added |
---|
comment:5 by , 12 years ago
Keywords: | rtl added |
---|---|
Resolution: | → fixed |
Status: | assigned → closed |
Added a note to WikiProcessors and move the CSS from wiki.css to trac.css in r11757.
With #9406, you're supposed to write:
Right 1
RTL 1
Right 2
RTL 2
Or at the very least:
Right 1
RTL 1
Right 2
RTL 2
so that the
.rtl div.wiki-toc
CSS rule can apply.However that rule is only in wiki.css, and should probably be moved into trac.css so that it could work in tickets as well.
Now the other issues with this specific example (
.wiki-toc
) is that.wiki-toc
is also only in wiki.css. Here it looks "correct" because the TH:WikiExtrasPlugin overrides it (withfloat: right !important;
so this would even override the.rtl .wiki-toc
one). The joy of bringing together bits and pieces of CSS ;-)