.listItem { td { min-width: 10em; white-space: nowrap; &:first-of-type { width: 99%; display: flex; margin-right: 1em; & > span:nth-child(1) { text-overflow: ellipsis; overflow: hidden; flex-grow: 1; } & > span:nth-child(n+2){ margin-left: .25em; padding: .15em .5em; line-height: 1em; border-radius: 50%; visibility: hidden; opacity: 0; font-size: 80%; transition: .3s opacity linear .3s; @media(max-width: 40em) { display: none; } } } &:nth-of-type(n+2) span { padding-right: .5em; } } @media(hover: hover) { &:hover { background: var(--color-window-menu-alt); border-radius: .5em; // cursor: pointer; & > td:first-of-type > span:nth-child(n+2){ color: var(--color-window-buttons); visibility: visible; opacity: 1; } } & > td:first-of-type > span:nth-child(n+2):hover { color: var(--color-text-alt); background-color: var(--color-glass); } } }