diff options
author | Anika Henke <anika@selfthinker.org> | 2012-04-09 19:52:06 +0100 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2012-04-09 19:52:06 +0100 |
commit | 47260a57d569ff440e40a675d0afde195befbfcd (patch) | |
tree | 5765756bbeaa0ceda4d34d990cb2aef2a0a0f10b /lib/tpl/dokuwiki | |
parent | 79504989f948613597d5516c9b31ba7e1529a303 (diff) | |
download | rpg-47260a57d569ff440e40a675d0afde195befbfcd.tar.gz rpg-47260a57d569ff440e40a675d0afde195befbfcd.tar.bz2 |
added minimal RTL print styles (part of FS#2185)
Diffstat (limited to 'lib/tpl/dokuwiki')
-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; |