Added a gradient for post list tables that works in dark mode

- in dark mode, the nice gradient to the left didn't show but this fixes that so matches light mode
This commit is contained in:
James Morris 2022-01-11 11:56:17 +00:00
parent 54ca2a53d2
commit adcd957eca

View File

@ -674,13 +674,19 @@ input:focus,
.gh-posts-list-item:hover,
.ember-power-select-group .ember-power-select-option[aria-current=true],
.gh-list-row:not(.header):not(.loading):hover .gh-list-cell,
.gh-list-row:not(.header):not(.loading):hover .gh-list-data,
.settings-tag .tag-edit-button.active,
.gh-portal-site-frame-cover {
background: var(--whitegrey);
}
.gh-list-row:not(.loading):hover .gh-list-data:first-of-type {
background: linear-gradient(315deg, var(--whitegrey) 60%, var(--white) 100%);
}
.gh-list-row:not(.loading):hover .gh-list-data:not(:first-of-type) {
background: var(--whitegrey);
}
.gh-content-status-published {
background: var(--whitegrey-l1);
}