mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-10 01:47:03 +03:00
Make ComposeType numeric
This commit is contained in:
parent
cb3b9d6921
commit
4b8e77be5c
2 changed files with 10 additions and 10 deletions
|
|
@ -41,11 +41,11 @@
|
|||
<div class="message-fixed-button-toolbar">
|
||||
<div class="btn-group" style="margin-right: -8px">
|
||||
<a class="btn btn-thin btn-transparent buttonReply fontastic"
|
||||
data-bind="visible: 'reply' === lastReplyAction(), command: replyCommand" data-i18n="[title]MESSAGE/BUTTON_REPLY">←</a>
|
||||
data-bind="visible: 1 == lastReplyAction(), command: replyCommand" data-i18n="[title]MESSAGE/BUTTON_REPLY">←</a>
|
||||
<a class="btn btn-thin btn-transparent buttonReplyAll fontastic"
|
||||
data-bind="visible: 'replyall' === lastReplyAction(), command: replyAllCommand" data-i18n="[title]MESSAGE/BUTTON_REPLY_ALL">↞</a>
|
||||
data-bind="visible: 2 == lastReplyAction(), command: replyAllCommand" data-i18n="[title]MESSAGE/BUTTON_REPLY_ALL">↞</a>
|
||||
<a class="btn btn-thin btn-transparent buttonForward fontastic"
|
||||
data-bind="visible: 'forward' === lastReplyAction(), command: forwardCommand" data-i18n="[title]MESSAGE/BUTTON_FORWARD">→</a>
|
||||
data-bind="visible: 3 == lastReplyAction(), command: forwardCommand" data-i18n="[title]MESSAGE/BUTTON_FORWARD">→</a>
|
||||
<div class="btn-group" data-bind="registerBootstrapDropdown: true" style="display: inline-block">
|
||||
<a class="btn btn-thin btn-transparent dropdown-toggle fontastic" id="more-view-dropdown-id" href="#" tabindex="-1">☰</a>
|
||||
<ul class="dropdown-menu right-edge" role="menu" aria-labelledby="more-view-dropdown-id">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue