From 6f2422f09ec2a9c159bb7e495f60713e58ebf276 Mon Sep 17 00:00:00 2001 From: MAEDA Go Date: Mon, 15 May 2017 14:43:01 +0900 Subject: [PATCH] Add table border to email notifications. --- 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.11.0 (Apple Git-81)