3scale/porta

View on GitHub
app/assets/stylesheets/provider/_fields_definitions.scss

Summary

Maintainability
Test Coverage
.fields-definitions-list {
  position: relative;
  margin-bottom: line-height-times(2);
  list-style: none inside;

  li {
    @include white-box-shadow;
    background: $background-color-base no-repeat line-height-times(1/2) center image-url("drag-icon.png");
    margin-bottom: line-height-times(1/2);
    overflow: visible !important;
    padding: line-height-times(1/2) 0 line-height-times(1/2) line-height-times(1);

    &.ui-sortable-helper {
      @include box-shadow(0 0 line-height-times(1/2) $box-shadow-color);
    }

    .name {
      font-weight: $font-weight-bold;
      @include inline-block;
      min-width: 10em;
    }

    .properties {
      margin-right: line-height-times(1/2);
      font-style: italic;
    }

    @include clearfix;

    .action-set {
      float: right;
      margin-right: line-height-times(1/2);
    }
  }
}
  a.new-field-definition.add {
    float: right;
    margin-top: line-height-times(-1);
}