SumOfUs/Champaign

View on GitHub
app/assets/stylesheets/member-facing/campaigner-overlay.scss

Summary

Maintainability
Test Coverage
.campaigner-overlay{
  position: fixed;
  bottom: -20px;
  left: 6px;
  z-index: 10000;
  color: black;
  width: 175px;
  @include box-sizing(border-box);
  @include transition(bottom 1s linear);
  padding: 15px 15px 30px;
  font-size: 12px;
  border-radius: 5px;

  &--active {
    background: #00B800;
    .campaigner-overlay__info--inactive {
      display: none;
    }
  }
  &--inactive {
    background: darkorange;
    .campaigner-overlay__info--active {
      display: none;
    }
  }
  &__status {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 15px;
  }
  &__close {
    position: absolute;
    top: 3px;
    right: 3px;
    cursor: pointer;
  }
  &__toggle-publish {
    background: none;
    border: none;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    float: left;
    position: relative;
    padding-top: 2px;
  }
  &__edit-link {
    float: right;
    padding-top: 2px;
  }
  &__copy-url-link, &__copy-url-copied{
    color: black;
    float: left;
    padding-top: 2px;
    margin-left: 4px;
    margin-right: 2px;
  }
  &__edit-link, &__toggle-publish, &__copy-url-link {
    line-height: 12px;
    height: 14px;
    font-size: 12px;
    text-decoration: underline;
    color: black;
    cursor: pointer;
    display: inline;
    &:hover {
      text-decoration: none;
    }
  }

  &__copy-url-copied {
    line-height: 12px;
    height: 14px;
    font-size: 12px;
    display: none;
  }

  &__actions {
    float: left;
    display: block;
    width: 100%;
    color: white;
    margin-top: 10px;
    form {
      float: left;
    }
  }
}