mirror of https://github.com/portainer/portainer
fix application table background not working with dark mode (#5617)
parent
5316cca3de
commit
f10e0e4124
|
@ -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);
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue