Skip to content
Snippets Groups Projects
components.scss 1.93 KiB
Newer Older
.button {
  background-color: #2b90d9;

  &:hover {
    background-color: #489fde;
  }

  &:disabled {
    background-color: #9baec8;
  }

  &.button-secondary {
    background-color: #282c37;

    &:hover {
      background-color: #282c37;
    }

    &:disabled {
      background-color: #9baec8;
    }
  }
}

.icon-button {
  color: #616b86;
  cursor: pointer;

  &:hover {
    color: #717b98;
  }

  &.disabled {
    color: #535b72;
    cursor: default;
  }
.compose-form__textarea, .follow-form__input {
  background: #fff;

  &:disabled {
    background: #d9e1e8;
  }
}

.status__content, .reply-indicator__content {
  font-size: 15px;
  line-height: 20px;
  word-wrap: break-word;
  font-weight: 300;

  p {
    margin-bottom: 20px;

    &:last-child {
      margin-bottom: 0;
    }
  }

Eugen Rochko's avatar
Eugen Rochko committed
  a {
    color: #d9e1e8;
Eugen Rochko's avatar
Eugen Rochko committed
    text-decoration: none;

    &:hover {
      text-decoration: underline;
    }

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

        span {
          text-decoration: underline;
        }
      }
    }
  }
}
.detailed-status {
  .status__content {
    font-size: 19px;
    line-height: 24px;
  }
}

.reply-indicator__content {
  color: #282c37;
  font-size: 14px;

  a {
    color: #535b72;
  }
}

.status__display-name, .status__relative-time, .detailed-status__display-name, .detailed-status__datetime {
  text-decoration: none;
}

Eugen Rochko's avatar
Eugen Rochko committed
.status__display-name {
  strong {
    color: #fff;
  }
}

.status__display-name, .reply-indicator__display-name, .detailed-status__display-name {
  &:hover {
    strong {
      text-decoration: underline;
    }
  }
}

.detailed-status__display-name {
  color: #d9e1e8;
  line-height: 24px;

  strong, span {
    display: block;
  }

  strong {
    font-size: 16px;
    color: #fff;
  }
}

.status__relative-time, .detailed-status__datetime {
  &:hover {
    text-decoration: underline;
  }
}

.transparent-background {
  background: image-url('void.png');
}