Sha256: 4bf947c380855ba9f0c6f911bdf3e8a3bb328550c1e312ed414c4204e3f631be

Contents?: true

Size: 1.69 KB

Versions: 2

Compression:

Stored size: 1.69 KB

Contents

.aggregator {
  // Fancy UI things
  .dim {
    @include opacity(30);
    @include transition(opacity 0.1s linear)
  }

  // Override the Twitter pagination
  // To reduce the padding
  .pagination {
    margin: 0 0 10px 0;
  }

  input {
    max-width: 250px;
  }

  .drop-zone.empty {
    position: relative;
    color: $grayLight;

    h1 {
      z-index: 0;
      position: absolute;
      top: 60px;
      left: 50px;
    }
  }

  .drop-zone {
    max-height: 500px;
    overflow: auto;

    .alert {
      // Make alerts show in front of "Empty Message"
      z-index: 1;
      position: relative;
    }
  }

  .content-list, .help-content {
    max-height: 455px;
    overflow: auto;
  }

  &.short {
    .content-list, .help-content {
      max-height: 200px;
    }
  }

  .help-content {
    padding-right: 10px;
  }

  .drop-zone, .content-list {
    min-height: 200px;
    @extend .unstyled;

    li {
      @extend .clearfix;

      background: #fff;
      border: 1px solid $grayLight;
      margin: 5px 0;
      padding: 5px;
      cursor: move;

      @include box-shadow(2px 2px 6px #ccc);
      @include border-radius(3px);

      // Dragging any content
      &.dragging {
        @include box-shadow(2px 2px 10px #ccc);
      }

      // Adding content from the right panel
      &.adding {
        border-color: #0f0;
      }

      // Removing content from drop zone
      &.removing {
        background-color: #f2dede;
        border-color: #f00;
        &>div { @include opacity(30); }
      }

      img {
        float: left;
        margin-right: 5px;
      }
    }
  }

  .content-full {
    img {
      max-width: 120px;
    }
  }

  .content-minimal {
    img {
      max-width: 60px;
    }
  }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
outpost-aggregator-1.2.0 lib/assets/stylesheets/outpost/aggregator.css.scss
outpost-aggregator-1.1.3 lib/assets/stylesheets/outpost/aggregator.css.scss