0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-18 02:21:47 -05:00

Added in hover states for the members list so it matches other lists

no issue
This commit is contained in:
James Morris 2022-07-14 16:29:02 +01:00
parent db0929d07a
commit 587ae505f0
2 changed files with 16 additions and 0 deletions

View file

@ -738,6 +738,14 @@ input:focus,
background: var(--whitegrey);
}
.gh-list-scrolling tbody tr:hover > a:first-of-type {
background: linear-gradient(315deg, var(--whitegrey) 60%, var(--white) 100%);
}
.gh-list-scrolling tbody tr:hover > a:not(:first-of-type) {
background: var(--whitegrey);
}
.gh-content-status-published {
background: var(--whitegrey-l1);
}

View file

@ -403,6 +403,14 @@ ul.nostyle li {
border-bottom: var(--whitegrey) 1px solid;
}
.gh-list-scrolling tbody tr:hover > a:first-of-type {
background: linear-gradient(315deg, var(--whitegrey-l2) 60%, var(--white) 100%);
}
.gh-list-scrolling tbody tr:hover > a:not(:first-of-type) {
background: var(--whitegrey-l2);
}
@media (max-width: 800px) {
.gh-list-scrolling {
max-width: calc(100% + 8vw);