From 4cf18a1d9e05bfb450c54371ef882a376ddb9107 Mon Sep 17 00:00:00 2001 From: Brian Federle Date: Thu, 3 Oct 2013 16:11:11 -0700 Subject: [PATCH] Use border instead of BG-coloring for detail group --- ui/stylesheets/csui/_details.scss | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/ui/stylesheets/csui/_details.scss b/ui/stylesheets/csui/_details.scss index 345b6357719..3cbe3cf1827 100644 --- a/ui/stylesheets/csui/_details.scss +++ b/ui/stylesheets/csui/_details.scss @@ -23,7 +23,7 @@ } @mixin csui-tab-active { - background: lighten(#ccc, 10%); + background: lighten(#ccc, 15%); border-radius: 8px 8px 0 0; margin: 0; } @@ -40,17 +40,28 @@ } @mixin csui-details { - background: lighten(#ccc, 10%); + background: lighten(#ccc, 15%); padding: 10px; + border-bottom: 1px solid #ccc; &:not(.detail-actions) { table { - background: lighten(#ccc, 15%); width: 100%; + tr { + &:nth-child(even) { + background: lighten(#ccc, 12%); + } + } + th, td { padding: 10px; } } } + + .detail-actions { + background: white; + border-radius: 6px; + } } \ No newline at end of file