mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-10 17:13:38 +08:00
Improve composer pop-up on mobile (#1106)
This commit is contained in:
parent
641fb3e532
commit
c145137b25
3 changed files with 11 additions and 4 deletions
|
@ -112,6 +112,10 @@
|
|||
width: 1%;
|
||||
min-width: 70px;
|
||||
padding: 6px 10px;
|
||||
|
||||
html.rl-modal {
|
||||
min-width: 50px;
|
||||
}
|
||||
}
|
||||
|
||||
.e-value {
|
||||
|
|
|
@ -88,3 +88,8 @@ svg-icon {
|
|||
.lg-backdrop.in {
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
|
||||
.btn .btn-text {
|
||||
padding-left: 8px;
|
||||
}
|
||||
|
|
|
@ -3,13 +3,11 @@
|
|||
<div class="modal-header b-header-toolbar g-ui-user-select-none">
|
||||
<a class="btn btn-large button-send" data-bind="command: sendCommand, tooltipErrorTip: sendErrorDesc, css: {'btn-success': sendButtonSuccess, 'btn-danger': sendError, 'btn-warning': sendSuccessButSaveError }">
|
||||
<i class="icon-white" data-bind="css: {'icon-paper-plane': !sending(), 'icon-spinner animated big': sending()}"></i>
|
||||
|
||||
<span class="i18n" data-i18n="COMPOSE/BUTTON_SEND"></span>
|
||||
<span class="i18n btn-text hide-on-mobile" data-i18n="COMPOSE/BUTTON_SEND"></span>
|
||||
</a>
|
||||
<a class="btn button-save" data-bind="visible: allowFolders, command: saveCommand, tooltipErrorTip: savedErrorDesc, css: {'btn-danger': savedError }">
|
||||
<i data-bind="css: {'icon-floppy': !saving(), 'icon-spinner animated': saving(), 'icon-white': savedError()}"></i>
|
||||
|
||||
<span class="i18n" data-i18n="COMPOSE/BUTTON_SAVE"></span>
|
||||
<span class="i18n btn-text hide-on-mobile" data-i18n="COMPOSE/BUTTON_SAVE"></span>
|
||||
</a>
|
||||
|
||||
<a class="close-custom" data-tooltip-join="top" data-bind="click: tryToClosePopup, tooltip: 'COMPOSE/BUTTON_CANCEL'">×</a>
|
||||
|
|
Loading…
Reference in a new issue