modal.html 1023 B

1234567891011121314151617181920212223242526
  1. <div class="modal fade" tabindex="-1" ng-attr-data-backdrop="{{ close ? true : 'static' }}" ng-attr-data-keyboard="{{ Boolean(close) }}">
  2. <!--
  3. // Copyright (C) 2014 The Syncthing Authors.
  4. //
  5. // This Source Code Form is subject to the terms of the Mozilla Public
  6. // License, v. 2.0. If a copy of the MPL was not distributed with this file,
  7. // You can obtain one at http://mozilla.org/MPL/2.0/.
  8. -->
  9. <div class="modal-dialog" ng-class="{'modal-lg': large}">
  10. <div class="modal-content">
  11. <div class="modal-header alert alert-{{status}}">
  12. <h4 class="modal-title">
  13. <span ng-if="icon" class="fa fa-{{icon}}"></span>
  14. {{title}}
  15. </h4>
  16. </div>
  17. <div class="modal-body" ng-transclude>
  18. </div>
  19. <div ng-if="close" class="modal-footer">
  20. <button type="button" class="btn btn-default btn-sm" data-dismiss="modal">
  21. <span class="fa fa-times"></span>&nbsp;<span translate>Close</span>
  22. </button>
  23. </div>
  24. </div>
  25. </div>
  26. </div>