diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-05-16 11:57:04 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-05-16 11:57:04 +0200 |
commit | d9f449d4a523b00922cd957b4b47fda01457d95b (patch) | |
tree | 6f8ca2670c9cbc5db5ccce193e6a83a9bc82ddf4 | |
parent | 758d6d307fe6afcc4488360e7db03162103974f5 (diff) |
css: Draw multipart separator also when following an attachment.
-rw-r--r-- | assets/css/screen.css | 1 | ||||
-rw-r--r-- | mumi/web/view/html.scm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/assets/css/screen.css b/assets/css/screen.css index 0558794..684bc01 100644 --- a/assets/css/screen.css +++ b/assets/css/screen.css @@ -273,6 +273,7 @@ details { padding-bottom: 1rem; } +.message .body .attachment + .multipart, .message .body .multipart + .multipart { padding-top: 1rem; padding-bottom: 1rem; diff --git a/mumi/web/view/html.scm b/mumi/web/view/html.scm index cfc1018..f6d50e9 100644 --- a/mumi/web/view/html.scm +++ b/mumi/web/view/html.scm @@ -72,7 +72,7 @@ (@ (rel "stylesheet") (media "screen") (type "text/css") - (href "/css/screen.css?202005150000")))) + (href "/css/screen.css?202005160000")))) (body ,@body (footer (@ (class "text-center")) (p "Copyright © 2016—2020 by the GNU Guix community." |