Skip to content

Commit

Permalink
Fix admin table styles in dark mode (#7920)
Browse files Browse the repository at this point in the history
  • Loading branch information
isoos committed Aug 8, 2024
1 parent 33332a0 commit 849728a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/web_css/lib/src/_form.scss
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@
border-width: 0px;

.mdc-data-table__row {
border-top-color: #f5f5f7;
border-top-color: var(--pub-code-background-color);

&:hover {
background: inherit;
}

&:nth-child(even) {
background: #f5f5f7;
background: var(--pub-code-background-color);
}
}

Expand All @@ -78,7 +78,7 @@
}

.mdc-data-table__cell {
color: rgba(0, 0, 0, 0.85);
color: var(--pub-default-text-color);
}

.email-header { width: 60%; }
Expand Down

0 comments on commit 849728a

Please sign in to comment.