From e6c1cf77438023e390f84d46f1c46d779f38abdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Fri, 28 May 2021 02:10:02 +0200 Subject: [PATCH] Simplify colors in admin header Not that we've simplified the top bar colors, we can just use a transparent header to get the same background as the body. --- app/assets/stylesheets/admin.scss | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/app/assets/stylesheets/admin.scss b/app/assets/stylesheets/admin.scss index f612c6eb1..d2d2915f4 100644 --- a/app/assets/stylesheets/admin.scss +++ b/app/assets/stylesheets/admin.scss @@ -53,6 +53,7 @@ $table-header: #ecf1f6; } .header { + background: transparent; border: 0; } @@ -64,14 +65,9 @@ $table-header: #ecf1f6; } } - .admin-top-bar { - background: #fff; - } - .top-bar { - background: #fff !important; border-bottom: 1px solid #eee; - color: #000; + color: $text; height: auto; padding-top: $line-height / 2; @@ -128,7 +124,7 @@ $table-header: #ecf1f6; } small { - color: #000; + color: inherit; text-transform: uppercase; } }