mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-28 19:49:20 +03:00
Add "move to folder" description
This commit is contained in:
parent
4e87568408
commit
a45e9ba9c8
6 changed files with 45 additions and 6 deletions
|
|
@ -78,8 +78,7 @@
|
|||
color: #999;
|
||||
font-weight: bold;
|
||||
line-height: 55px;
|
||||
|
||||
text-shadow: 0 1px 0 #FFF;
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -81,6 +81,36 @@ html.rl-mobile {
|
|||
bottom: 0;
|
||||
right: 0;
|
||||
left: 500px;
|
||||
|
||||
.b-message-view-backdrop {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: rgba(0, 0, 0, .4);
|
||||
z-index: 10;
|
||||
|
||||
.backdrop-message-wrp {
|
||||
|
||||
position: absolute;
|
||||
top: calc(~'50% - 50px');
|
||||
left: 0;
|
||||
right: 0;
|
||||
text-align: center;
|
||||
|
||||
.backdrop-message {
|
||||
display: inline-block;
|
||||
color: white;
|
||||
font-size: 20px;
|
||||
line-height: 30px;
|
||||
background: rgba(0, 0, 0, .6);
|
||||
padding: 15px;
|
||||
border-radius: 5px;
|
||||
text-shadow: 0px 1px 1px #000;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
html.ssm-state-desktop-large {
|
||||
|
|
@ -317,8 +347,6 @@ html.rl-bottom-preview-pane {
|
|||
top: 356px;
|
||||
left: 0;
|
||||
right: 5px;
|
||||
|
||||
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ html.rl-no-preview-pane {
|
|||
text-align: center;
|
||||
font-size: 70px;
|
||||
line-height: 70px;
|
||||
padding-top: 140px;
|
||||
padding-top: 100px;
|
||||
color: #999;
|
||||
|
||||
.icon-mail {
|
||||
|
|
|
|||
|
|
@ -16,7 +16,8 @@ import {
|
|||
$html,
|
||||
leftPanelDisabled,
|
||||
keyScopeReal,
|
||||
useKeyboardShortcuts
|
||||
useKeyboardShortcuts,
|
||||
moveAction
|
||||
} from 'Common/Globals';
|
||||
|
||||
import {
|
||||
|
|
@ -90,6 +91,8 @@ class MessageViewMailBoxUserView extends AbstractViewNext
|
|||
|
||||
this.pswp = null;
|
||||
|
||||
this.moveAction = moveAction;
|
||||
|
||||
this.allowComposer = !!Settings.capa(Capa.Composer);
|
||||
this.allowMessageActions = !!Settings.capa(Capa.MessageActions);
|
||||
this.allowMessageListActions = !!Settings.capa(Capa.MessageListActions);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue