Skip to content

Releases: techfromsage/bootstrap-theme

2.1.0

03 Mar 13:31
Compare
Choose a tag to compare

Adds styles for sortable table controls. See https://talis.github.io/bootstrap-theme/otis/playlist/ for example

  • Add .o-table--sortable to the table
  • Add o-table__sort-btn to controls

2.1.0 (2022-03-03)

Features

Bug Fixes

  • table: remove focus state (3f3b1a7)

2.0.1

01 Mar 17:50
Compare
Choose a tag to compare

2.0.1 (2022-03-01)

Bug Fixes

  • define $grid-breakpoints (5dbd8ad)

Full Changelog: v2.0.0...v2.0.1

2.0.0

28 Feb 13:16
Compare
Choose a tag to compare

You'll want to pay attention to how you are consuming Bootstrap v5. Previously, you could get away with using the bootstrap-theme package alone. Now you will need to install Bootstrap v5 and this package, before configuring a stylesheet per Bootstrap instructions.

What's Changed

Full Changelog: v1.3.3...v2.0.0

1.3.3

26 Jan 11:17
Compare
Choose a tag to compare

Manual release to include .o-list--striped util: apply it to a list in order to receive striped rows behind the list children.

1.3.2

06 Jan 09:19
Compare
Choose a tag to compare

1.3.2 (2022-01-06)

Bug Fixes

  • table: monkey patch top table border (827eae1)

Full Changelog: v1.3.1...v1.3.2

1.3.1

24 Nov 14:18
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.3.0...v1.3.1

1.3.0

05 Nov 13:12
Compare
Choose a tag to compare

What's Changed

  • fix(toasts): increase z-index to sit above modals by @camillef in #12
  • feat(tables): introduce table-lg utility by @camillef in #13

Full Changelog: v1.2.2...v1.3.0

1.2.2

28 Oct 13:11
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.2.1...v1.2.2

1.2.1

08 Oct 12:13
Compare
Choose a tag to compare

Full Changelog: v1.2.0...v1.2.1

1.2.0

06 Oct 09:48
Compare
Choose a tag to compare

The Confirmation Dialog[ue] Release

image

The modal is dead; long live the modal!

Until we phase out the old style modals, apply .o-confirmation-modal to your .modal. Don't forget to add a whizzy .modal-image to the top of the display.

<div class="modal o-confirmation-modal fade" id="confirmation-modal" tabindex="-1" role="dialog" aria-labelledby="confirmation-label" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <img src="{{ '/assets/img/discard.svg' | url }}" class="modal-image" alt="" width="149" height="158" />
      <div class="modal-header">
        <h2 class="modal-title" id="confirmation-label">Are you sure?</h2>
      </div>
      <div class="modal-body">
        <p>
          You will lose your unsaved data.
        </p>
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-lg btn-danger" data-bs-dismiss="modal">
          Yes
        </button>
        <button type="button" class="btn btn-lg btn-default">
          Cancel
        </button>
      </div>
    </div>
    <!-- /.modal-content -->
  </div>
  <!-- /.modal-dialog -->
</div>

1.2.0 (2021-10-06)

Features