From d92b6e292da091e61ac492c05ee829c38bc5aa84 Mon Sep 17 00:00:00 2001 From: Felix Niklas Date: Tue, 9 Jun 2015 11:17:54 +0200 Subject: [PATCH] adjust table style --- app/assets/stylesheets/zammad.css.scss | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/app/assets/stylesheets/zammad.css.scss b/app/assets/stylesheets/zammad.css.scss index 6823e7531..8c3ffc770 100644 --- a/app/assets/stylesheets/zammad.css.scss +++ b/app/assets/stylesheets/zammad.css.scss @@ -471,7 +471,6 @@ table { @extend .u-textTruncate; } -.table > thead:first-child > tr:first-child > th, .table > thead > tr > th { padding: 12px 9px 10px; border-bottom: none; @@ -487,14 +486,16 @@ table { .table > tbody > tr > td { padding: 10px 9px 9px; border: none; - box-shadow: 0 1px rgba(0,0,0,.02) inset; + box-shadow: 0 1px rgba(0,0,0,.02); } -.table > tbody > tr:first-child > td { - box-shadow: none; +.table-hover > tbody > tr:hover > td { + background: white; + box-shadow: + 0 1px rgba(0,0,0,.02), + 0 -1px rgba(0,0,0,.02); } - -.table-hover > tbody > tr:hover > td, + .table-hover > tbody > tr:hover > th { background: rgba(0,8,14,.015); }