diff options
author | Anika Henke <anika@selfthinker.org> | 2012-04-09 19:52:06 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2012-04-16 19:42:48 +0200 |
commit | 60bb88f04355d34b37fa3f9b3cfcaea279f584bf (patch) | |
tree | 9275963bc2d4adc3b67056809b8074b863f7b458 | |
parent | 237afca1bdc4d34f518cf7d33239ccc8d2de6dd9 (diff) | |
download | rpg-60bb88f04355d34b37fa3f9b3cfcaea279f584bf.tar.gz rpg-60bb88f04355d34b37fa3f9b3cfcaea279f584bf.tar.bz2 |
added minimal RTL print styles (part of FS#2185)
-rw-r--r-- | lib/tpl/dokuwiki/css/print.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/tpl/dokuwiki/css/print.css b/lib/tpl/dokuwiki/css/print.css index f4f81d741..58b8a5f0d 100644 --- a/lib/tpl/dokuwiki/css/print.css +++ b/lib/tpl/dokuwiki/css/print.css @@ -137,6 +137,9 @@ div.clearer { border: solid #ccc; border-width: 0 0 0 2pt; } +[dir=rtl] .dokuwiki blockquote { + border-width: 0 2pt 0 0; +} /* tables */ .dokuwiki table { @@ -153,6 +156,10 @@ div.clearer { border: 1pt solid #666; text-align: left; } +[dir=rtl] .dokuwiki th, +[dir=rtl] .dokuwiki td { + text-align: right; +} .dokuwiki th { font-weight: bold; } @@ -173,6 +180,11 @@ div.clearer { float: left; margin-right: .5em; } +[dir=rtl] #dokuwiki__header h1 img { + float: right; + margin-right: 0; + margin-left: .5em; +} .dokuwiki div.footnotes { clear: both; border-top: 1pt solid #000; |