From d77d02567cb97a28aedc5ea9d8f4b34b02a1137a Mon Sep 17 00:00:00 2001 From: Angie Byron <webchick@24967.no-reply.drupal.org> Date: Tue, 23 Nov 2010 01:58:21 +0000 Subject: [PATCH] #674082 by seutje: Fixed Table borders are not correctly drawn in Webkit in Seven theme --- themes/seven/style.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/themes/seven/style.css b/themes/seven/style.css index df7f3de363a9..0be35fab27cc 100644 --- a/themes/seven/style.css +++ b/themes/seven/style.css @@ -506,6 +506,13 @@ table.system-status-report tr.error { color: #8c2e0b; background-color: #fef5f1; } +/** + * Exception for webkit bug with the right border of the last cell + * in some tables, since it's webkit only, we can use :last-child + */ +tr td:last-child { + border-right: 1px solid #BEBFB9; +} /** -- GitLab