Sha256: c762c6a4ab70b7384ccc41ce1d79e394fde2c3fc6cc489a1c1dffa64bf7e24d5

Contents?: true

Size: 848 Bytes

Versions: 2

Compression:

Stored size: 848 Bytes

Contents

@mixin toggle-arrow($content) {
  content: $content;
  display: inline-block;
  font-family: 'FontAwesome';
  margin-left: 5px;
  text-decoration: none;
}

.collection-types-wrapper {
  @media (min-width: 900px) {
    .collection-types-table {
      th:last-child,
      td:last-child {
        width: 20%;
      }
    }
  }

  .screen-hidden {
    height: 1px;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    top: auto;
    width: 1px;
  }

  .panel-heading {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }

  .collapse-header {
    &:focus {
      text-decoration: none;
    }

    &::after {
      @include toggle-arrow('\f0da');
    }

    &.open {
      &::after {
        @include toggle-arrow('\f0d7');
      }
    }
  }
}

.collection-type-share-applies-to {
  margin-left: 3em;
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
hyrax-2.1.0.beta2 app/assets/stylesheets/hyrax/_collection_types.scss
hyrax-2.1.0.beta1 app/assets/stylesheets/hyrax/_collection_types.scss