From: Jean-Philippe Lang Date: Wed, 7 Jun 2017 20:54:35 +0000 (+0000) Subject: Add table border to email notifications (#25842). X-Git-Tag: 3.4.0~60 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=43c69c370c62da8fc976a53da4eb947c38728212;p=redmine.git Add table border to email notifications (#25842). Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@16642 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/layouts/mailer.html.erb b/app/views/layouts/mailer.html.erb index a7d289f98..f6a457ef9 100644 --- a/app/views/layouts/mailer.html.erb +++ b/app/views/layouts/mailer.html.erb @@ -39,6 +39,14 @@ pre { overflow-y: hidden; } ul.details {color:#959595; margin-bottom: 1.5em;} +table { + border-collapse: collapse; + margin-bottom: 1em; +} +table, td, th { + border: 1px solid #bbb; + padding: 4px; +}