Growstuff/growstuff

View on GitHub
app/assets/stylesheets/_plantings.scss

Summary

Maintainability
Test Coverage
.planting {
  .planting-badges {
    font-size: 1em;
    position: absolute;
    top: 3em;

    .badge-super-late {
      background-color: $red;
    }

    .badge-harvest {
      background-color: $blue;
    }
  }

  .planting-thumbnail {
    padding: 0;
    width: 150px;

    .badge {
      font-size: 100%;
    }
  }

  .planting-name {
    position: relative;
    text-align: center;
    top: 0;
  }

  .planting-quick-actions {
    left: 0;
    position: absolute;
    top: 0;
  }

  .planting-thumbnail-photo {
    height: 150px;
  }

  dl.planting-attributes {
    dt {
      text-align: left;
    }

    dd {
      margin-left: auto;
    }
  }

  .card-footer {
    max-height: 2em;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.5em;
    padding-top: 0;
  }
}