mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-30 12:39:20 +03:00
Touch devices can be any size and can use (bluetooth/usb-c mouse/keyboard) these days. It's all about pixels and currently if the mode is mobile/no-mobile (this can be improved later).
24 lines
638 B
HTML
24 lines
638 B
HTML
<div class="modal fade b-ask-content g-ui-user-select-none" data-bind="modal: modalVisibility">
|
|
<div>
|
|
<div class="modal-body">
|
|
<br />
|
|
<br />
|
|
<span class="desc-place" data-bind="html: askDesc"></span>
|
|
<br />
|
|
<br />
|
|
<br />
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button class="btn buttonYes" data-bind="click: yesClick">
|
|
<i class="icon-ok"></i>
|
|
|
|
<span data-bind="text: yesButton"></span>
|
|
</button>
|
|
<button class="btn buttonNo" data-bind="click: noClick">
|
|
<i class=" icon-remove"></i>
|
|
|
|
<span data-bind="text: noButton"></span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|