summaryrefslogtreecommitdiff
path: root/themes/seven
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-11-23 01:58:21 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-11-23 01:58:21 +0000
commitd77d02567cb97a28aedc5ea9d8f4b34b02a1137a (patch)
treef89609f066b96d65e0d803744e77e109e8a2ed5a /themes/seven
parent3974c6c4f05102e1b2a2f932763fccac1054c544 (diff)
downloadbrdo-d77d02567cb97a28aedc5ea9d8f4b34b02a1137a.tar.gz
brdo-d77d02567cb97a28aedc5ea9d8f4b34b02a1137a.tar.bz2
#674082 by seutje: Fixed Table borders are not correctly drawn in Webkit in Seven theme
Diffstat (limited to 'themes/seven')
-rw-r--r--themes/seven/style.css7
1 files changed, 7 insertions, 0 deletions
diff --git a/themes/seven/style.css b/themes/seven/style.css
index df7f3de36..0be35fab2 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;
+}
/**