diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2013-05-17 13:00:21 +0200 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2013-05-17 13:00:21 +0200 |
commit | ab60a8ea86e2b4d0174a4bcdd6a7c1abdb78f9e5 (patch) | |
tree | 48714e22497cf5a3c9d607b6d53e621159f88d28 /hyperkitty/static/css | |
parent | 9f7faaf261dab699cb0ab386ad29a650b6c61e08 (diff) | |
download | hyperkitty-ab60a8ea86e2b4d0174a4bcdd6a7c1abdb78f9e5.tar.gz hyperkitty-ab60a8ea86e2b4d0174a4bcdd6a7c1abdb78f9e5.tar.xz hyperkitty-ab60a8ea86e2b4d0174a4bcdd6a7c1abdb78f9e5.zip |
Dynamically insert replies in the thread
Closes: #47
Diffstat (limited to 'hyperkitty/static/css')
-rw-r--r-- | hyperkitty/static/css/hyperkitty-message.css | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hyperkitty/static/css/hyperkitty-message.css b/hyperkitty/static/css/hyperkitty-message.css index edc5cab..3978015 100644 --- a/hyperkitty/static/css/hyperkitty-message.css +++ b/hyperkitty/static/css/hyperkitty-message.css @@ -194,7 +194,7 @@ } /* The email thread */ -.even, .odd { +.even, .odd, .temporary { border-top: 1px solid rgb(179, 179, 179); padding: 1em; margin: 20px 0px 20px 0px; @@ -205,6 +205,10 @@ .odd { background-color: rgb(238, 238, 238); } +.temporary { + background-color: rgb(215, 215, 229); + display: none; +} .email-body { white-space: pre; |