
.compressed-entries {
  .entry {
    &:has(:focus-visible):not(.entry--unread) {
      .entry__avatar .avatar {
        box-shadow: none;
      }
    }
  }
}

.entry__avatar:hover {
  display: block;
  cursor: pointer;

  &::before,
  &::after {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 2.5em;
    height: 2.5em;
    border-radius: 100%;
  }

  &::before {
    filter: var(--colorize-inverted-ink);
    background: url("/assets/icons/more-b85a2fb5.svg") no-repeat center;
    background-size: 55%;
    z-index: 1;
  }

  &::after {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-tertiary) 100%);
    z-index: 0;
  }

  .disable-bulk-actions & { cursor: default; }
}
