really important fix to hide non-sensical 'no-data' icon from table

This commit is contained in:
gingervitis 2021-02-19 18:27:24 -08:00
parent 74c81dc461
commit 14d15ed5e0
2 changed files with 6 additions and 3 deletions

View File

@ -314,7 +314,7 @@ textarea.ant-input {
} }
.ant-table-tbody > tr > td { .ant-table-tbody > tr > td {
transition-duration: var(--ant-transition-duration); transition-duration: var(--ant-transition-duration);
background-color: #222325; background-color: var(--gray-dark); // #222325;
color: var(--white-75); color: var(--white-75);
} }
.ant-table-tbody > tr.ant-table-row:hover > td { .ant-table-tbody > tr.ant-table-row:hover > td {
@ -325,8 +325,11 @@ textarea.ant-input {
color: var(--white-75); color: var(--white-75);
} }
.ant-table-empty .ant-table-tbody > tr.ant-table-placeholder { .ant-table-empty .ant-table-tbody > tr.ant-table-placeholder {
.ant-empty-image {
display: none;
}
&:hover > td { &:hover > td {
background-color: transparent; background-color: var(--gray-dark);
} }
} }
.ant-table-thead th.ant-table-column-has-sorters:hover { .ant-table-thead th.ant-table-column-has-sorters:hover {

View File

@ -19,7 +19,7 @@
--pink: rgba(201,139,254,1); // #D18BFE; --pink: rgba(201,139,254,1); // #D18BFE;
--blue: rgba(32,134,225,1); // #2086E1; --blue: rgba(32,134,225,1); // #2086E1;
// owncast puprple variations // owncast purple variations
--owncast-purple-25: rgba(120,113,255,.25); --owncast-purple-25: rgba(120,113,255,.25);
--owncast-purple-50: rgba(120,113,255,.5); --owncast-purple-50: rgba(120,113,255,.5);