diff options
author | Anika Henke <anika@selfthinker.org> | 2012-01-05 01:23:51 +0000 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2012-01-08 12:50:28 +0100 |
commit | cd6a1470058700ab34d11f7c701304873100256e (patch) | |
tree | 56c172dd49db2f11a47bedde8b2cc52130de2a5b | |
parent | faefe2d963001701e6424e59b5423fb22d071808 (diff) | |
download | rpg-cd6a1470058700ab34d11f7c701304873100256e.tar.gz rpg-cd6a1470058700ab34d11f7c701304873100256e.tar.bz2 |
make too wide content fit (fixes #7)
-rwxr-xr-x | css/basic.css | 3 | ||||
-rwxr-xr-x | css/design.css | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/css/basic.css b/css/basic.css index 2ad21b6ca..793f5cca0 100755 --- a/css/basic.css +++ b/css/basic.css @@ -168,6 +168,9 @@ img { background-color: transparent; font-style: italic; } +img, object { + max-width: 100%; +} hr { border-top: solid __border__; diff --git a/css/design.css b/css/design.css index f798b03cc..f75df1140 100755 --- a/css/design.css +++ b/css/design.css @@ -358,6 +358,8 @@ #dokuwiki__aside .pad { line-height: 1.2; font-size: 0.875em; + overflow: hidden; + word-wrap: break-word; } /* make sidebar more condensed */ @@ -419,6 +421,8 @@ border-radius: 2px; padding: 2em; margin-bottom: .5em; + overflow: hidden; + word-wrap: break-word; } .dokuwiki .docInfo { |