diff options
author | Arun Persaud <arun@nubati.net> | 2008-10-07 22:01:31 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2008-10-07 22:01:31 -0700 |
commit | 9cbbe2da9cde298ec2fbacc5029388b2a33db9f8 (patch) | |
tree | 12ec3fe3d8e558833ee610b1dc7a9b2291f766c5 | |
parent | 25f45a694daa56b32b357e9a5fb06b7b10577a58 (diff) | |
download | e-DoKo-9cbbe2da9cde298ec2fbacc5029388b2a33db9f8.tar.gz e-DoKo-9cbbe2da9cde298ec2fbacc5029388b2a33db9f8.tar.bz2 e-DoKo-9cbbe2da9cde298ec2fbacc5029388b2a33db9f8.zip |
LAYOUT: fixed overflow of comment area (issue #28)
found by Sean during extensive testing ;) should behave better now.
Signed-off-by: Arun Persaud <arun@nubati.net>
-rw-r--r-- | css/standard013.css (renamed from css/standard012.css) | 3 | ||||
-rw-r--r-- | include/output.php | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/css/standard012.css b/css/standard013.css index e7fd8a4..39172f5 100644 --- a/css/standard012.css +++ b/css/standard013.css @@ -354,6 +354,9 @@ ul.tricks li div div.card3 span.comment{ span.comment{ border: 3px solid green; + max-height:6em; + overflow: auto; + word-wrap: break-word; } ul.tricks li div div span.comment span{ diff --git a/include/output.php b/include/output.php index f2fe524..dd2e535 100644 --- a/include/output.php +++ b/include/output.php @@ -270,7 +270,7 @@ function output_header() <title>e-Doko</title> <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type" /> <link rel="shortcut icon" type="image/x-icon" href="pics/edoko-favicon.png" /> - <link rel="stylesheet" type="text/css" href="css/standard012.css" /> + <link rel="stylesheet" type="text/css" href="css/standard013.css" /> <script type="text/javascript"> var current=0; function hl(num) { |