aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Vilcans <martin@librador.com>2011-11-28 00:54:30 +0100
committerMartin Vilcans <martin@librador.com>2011-11-28 00:54:30 +0100
commitf7746d7f32eb3b8ce0810dc046d63ae5895c24e7 (patch)
tree2a55245e2617a506dce043c429997e5dae9141e1
parentbba2e3d43d1dfa268f68e4bba9173d14d4813bc2 (diff)
downloadscreenplain-f7746d7f32eb3b8ce0810dc046d63ae5895c24e7.tar.gz
Cleaned up a little CSS.
-rw-r--r--screenplain/export/html.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/screenplain/export/html.py b/screenplain/export/html.py
index c5d08be..fe3de9b 100644
--- a/screenplain/export/html.py
+++ b/screenplain/export/html.py
@@ -41,12 +41,12 @@ def format_dialog(dialog, out):
def format_dual(dual, out):
out.write(
- '<div class="left dialog">'
+ '<div class="left">'
)
format_dialog(dual.left, out)
out.write(
'</div>'
- '<div class="right dialog">'
+ '<div class="right">'
)
format_dialog(dual.right, out)
out.write(