Skip to content

Commit

Permalink
fix colored dashboard item table background (#838)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusandra committed May 25, 2020
1 parent 1e988da commit 3a7f9dd
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions frontend/src/scenes/dashboard/DashboardItems.scss
Expand Up @@ -75,10 +75,6 @@
background: transparent;
}

table.table {
margin: 0;
}

&.blue {
--item-background: hsl(212, 63%, 40%);
--item-darker: hsl(212, 63%, 35%);
Expand Down Expand Up @@ -139,11 +135,20 @@
h1 {
color: rgba(255, 255, 255, 0.9);
}
table.table {
color: white;
tr td,
tr th {
border-top-color: rgba(255, 255, 255, 0.2);
.ant-table {
background: none;
table {
color: white;
tr td,
tr th {
color: white;
background: rgba(255, 255, 255, 0.1);
border-top-color: rgba(255, 255, 255, 0.2);
border-bottom-color: rgba(255, 255, 255, 0.2);
}
tr th {
background: rgba(255, 255, 255, 0.2);
}
}
}
}
Expand Down

0 comments on commit 3a7f9dd

Please sign in to comment.