Browse Source

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

pull/1886/head
gingervitis 4 years ago
parent
commit
14d15ed5e0
  1. 7
      web/styles/ant-overrides.scss
  2. 2
      web/styles/variables.scss

7
web/styles/ant-overrides.scss

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

2
web/styles/variables.scss

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

Loading…
Cancel
Save