Sha256: 10c6f318f13db99721639daece2a0fb4a580ecc2fbf0ee0e632310009a33479c

Contents?: true

Size: 711 Bytes

Versions: 3

Compression:

Stored size: 711 Bytes

Contents

// Facet field headings and buttons
.facet-field-heading {
  --bl-facet-field-heading-font-weight: #{$headings-font-weight};
  border-bottom: 0;

  button {
    font-weight: var(--bl-facet-field-heading-font-weight);

    &::after {
      content: "❯";
      float: right;
      transform: rotate(90deg);
    }

    &.collapsed {
      border-bottom: 0;

      &::after {
        transform: rotate(0deg);
        transition: transform 0.1s ease;
      }
    }
  }
}

.page-link {
  white-space: nowrap;
}

.modal[open] {
  // override bootstrap .modal class default display: none
  // since we aren't using bootstrap JS that sets and unsets the display
  display: block;
  background: none;
  border: none;
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
blacklight-8.8.2 app/assets/stylesheets/blacklight/_bootstrap_overrides.scss
blacklight-8.8.1 app/assets/stylesheets/blacklight/_bootstrap_overrides.scss
blacklight-8.8.0 app/assets/stylesheets/blacklight/_bootstrap_overrides.scss