fix application table background not working with dark mode (#5617)

pull/5698/head
Richard Wei 2021-09-21 19:29:25 +12:00 committed by GitHub
parent 5316cca3de
commit f10e0e4124
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View File

@ -150,6 +150,8 @@ html {
--bg-btn-focus: var(--grey-59);
--bg-boxselector-disabled-color: var(--white-color);
--bg-small-select-color: var(--white-color);
--bg-app-datatable-thead: var(--grey-23);
--bg-app-datatable-tbody: var(--grey-24);
--text-main-color: var(--grey-7);
--text-body-color: var(--grey-6);
@ -318,6 +320,8 @@ html {
--bg-btn-focus: var(--grey-3);
--bg-boxselector-disabled-color: var(--grey-54);
--bg-small-select-color: var(--grey-2);
--bg-app-datatable-thead: var(--grey-1);
--bg-app-datatable-tbody: var(--grey-1);
--text-main-color: var(--white-color);
--text-body-color: var(--white-color);
@ -485,6 +489,8 @@ html {
--bg-boxselector-color: var(--black-color);
--bg-boxselector-disabled-color: var(--black-color);
--bg-small-select-color: var(--black-color);
--bg-app-datatable-thead: var(--black-color);
--bg-app-datatable-tbody: var(--black-color);
--text-main-color: var(--white-color);
--text-body-color: var(--white-color);

View File

@ -1,9 +1,9 @@
.secondary-heading {
background-color: #e7f6ff !important;
background-color: var(--bg-app-datatable-thead) !important;
}
.secondary-body {
background-color: #f1f9fd;
background-color: var(--bg-app-datatable-tbody);
}
.datatable-wide {