syncthing/gui/default/modal.html

23 lines
886 B
HTML
Raw Normal View History

<div class="modal fade" tabindex="-1" ng-attr-data-backdrop="{{ closeable == 'yes' ? true : 'static' }}" ng-attr-data-keyboard="{{ closeable == 'yes' ? true : false }}">
2014-10-03 16:18:22 +02:00
<!--
2014-11-16 21:13:20 +01:00
// Copyright (C) 2014 The Syncthing Authors.
2014-10-03 16:18:22 +02:00
//
2015-03-07 21:36:35 +01:00
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// You can obtain one at https://mozilla.org/MPL/2.0/.
2014-10-03 16:18:22 +02:00
-->
<div class="modal-dialog {{ large == 'yes' ? 'modal-lg' : '' }}">
2014-07-14 14:14:26 +02:00
<div class="modal-content">
<div class="modal-header {{status == 'default' ? '' : 'alert alert-'+status }}">
2014-07-14 14:14:26 +02:00
<h4 class="modal-title">
<div ng-if="icon" class="panel-icon">
<span class="fa fa-{{icon}}"></span>
</div>
{{heading}}
2014-07-14 14:14:26 +02:00
</h4>
</div>
<div ng-transclude></div>
2014-07-14 14:14:26 +02:00
</div>
</div>
</div>