Skip to content
Snippets Groups Projects
stream_entries.scss 2.89 KiB
Newer Older
.activity-stream {
  clear: both;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #d9e1e8;
    background: #fff;
    border-left: 2px solid #fff;
Eugen Rochko's avatar
Eugen Rochko committed
    &.entry-reblog {
    &.entry-predecessor, &.entry-successor {
      background: #d9e1e8;
      border-left-color: #d9e1e8;

      .header {
        .header__right {
          .counter-btn {
            color: darken(#d9e1e8, 15%);
          }
        }
      }
    &.entry-follow, &.entry-favourite {
      .content {
        padding-top: 10px;
        padding-bottom: 10px;
    &:last-child {
      border-bottom: 0;
      border-radius: 0 0 4px 4px;
    }
  }

  &.activity-stream-headless {
    .entry:first-child {
      border-radius: 4px 4px 0 0;

      &:last-child {
        border-radius: 4px;
      }
  &.activity-stream-embedded {
    box-shadow: none;

    .entry {
      border-radius: 0;
    }
  }

    display: flex;
  }

  .avatar {
      display: block;
  .entry__container__container {
Eugen Rochko's avatar
Eugen Rochko committed
    padding-bottom: 0;
    display: flex;

    .header__left {
      flex: 1;
    }

    .header__right {
      .counter-btn {
        color: #d9e1e8;
        display: inline-block;
        padding: 0 10px;
        cursor: default;

        .counter-number {
          font-weight: 500;
          display: inline-block;
          margin-left: 3px;
          font-size: 12px;
        }

        &.reblogged {
          color: #2b90d9;
        }

        &.favourited {
          color: #df405a;
        }
      }
    }
Eugen Rochko's avatar
Eugen Rochko committed

    .name {
      text-decoration: none;
Eugen Rochko's avatar
Eugen Rochko committed

      strong {
Eugen Rochko's avatar
Eugen Rochko committed
      }

      &:hover {
        strong {
          text-decoration: underline;
        }
      }
    }
Eugen Rochko's avatar
Eugen Rochko committed
  .pre-header {
    border-bottom: 1px solid #d9e1e8;
    color: #2b90d9;
Eugen Rochko's avatar
Eugen Rochko committed
    padding: 5px 10px;
    padding-left: 8px;
Eugen Rochko's avatar
Eugen Rochko committed
    .name {
Eugen Rochko's avatar
Eugen Rochko committed
      text-decoration: none;
Eugen Rochko's avatar
Eugen Rochko committed
      &:hover {
        text-decoration: underline;
      }
    }
  }

  .content {
Eugen Rochko's avatar
Eugen Rochko committed
    padding: 0 10px;
    padding-left: 8px;
      text-decoration: none;

      &:hover {
        text-decoration: underline;
      }

      &.mention {
        &:hover {
          text-decoration: none;

          span {
            text-decoration: underline;
          }
        }
      }
  }

  .time {
    text-decoration: none;

    &:hover {
      text-decoration: underline;
    }
  }
}