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.
This commit is contained in:
Javi Martín
2021-05-28 02:10:02 +02:00
parent 8e8a4d784c
commit e6c1cf7743

View File

@@ -53,6 +53,7 @@ $table-header: #ecf1f6;
} }
.header { .header {
background: transparent;
border: 0; border: 0;
} }
@@ -64,14 +65,9 @@ $table-header: #ecf1f6;
} }
} }
.admin-top-bar {
background: #fff;
}
.top-bar { .top-bar {
background: #fff !important;
border-bottom: 1px solid #eee; border-bottom: 1px solid #eee;
color: #000; color: $text;
height: auto; height: auto;
padding-top: $line-height / 2; padding-top: $line-height / 2;
@@ -128,7 +124,7 @@ $table-header: #ecf1f6;
} }
small { small {
color: #000; color: inherit;
text-transform: uppercase; text-transform: uppercase;
} }
} }