From 43c69c370c62da8fc976a53da4eb947c38728212 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Wed, 7 Jun 2017 20:54:35 +0000 Subject: [PATCH] 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 --- app/views/layouts/mailer.html.erb | 8 ++++++++ 1 file changed, 8 insertions(+) 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; +} -- 2.39.5