Add "move to folder" description

This commit is contained in:
RainLoop Team 2017-03-01 21:38:18 +03:00
parent 4e87568408
commit a45e9ba9c8
6 changed files with 45 additions and 6 deletions

View file

@ -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);
}

View file

@ -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;
}
}

View file

@ -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 {

View file

@ -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);