2013-11-16 06:21:12 +08:00
|
|
|
|
|
|
|
.rl-strip-animation(@rgba, @stripOpacity) {
|
|
|
|
background-image: linear-gradient(135deg, rgba(@rgba, @rgba, @rgba, @stripOpacity) 25%, transparent 25%,
|
2014-08-28 23:27:30 +08:00
|
|
|
transparent 50%, rgba(@rgba, @rgba, @rgba, @stripOpacity) 50%, rgba(@rgba, @rgba, @rgba, @stripOpacity) 75%,
|
|
|
|
transparent 75%, transparent);
|
2013-11-16 06:21:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes highlight-folder-row {
|
2014-08-28 23:27:30 +08:00
|
|
|
0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); }
|
2013-11-16 06:21:12 +08:00
|
|
|
}
|
|
|
|
|
2015-03-31 08:12:05 +08:00
|
|
|
@keyframes bounce-me {
|
2015-04-29 04:51:20 +08:00
|
|
|
0% { transform: scale(1); } 50% { transform: scale(1.2); } 100% { transform: scale(1); }
|
2015-03-31 08:12:05 +08:00
|
|
|
}
|
|
|
|
|
2013-11-16 06:21:12 +08:00
|
|
|
@keyframes textLoadingAnimationKeyFrame {
|
|
|
|
0% { opacity: 1; } 33% { opacity: 0; } 100% { opacity: 1; }
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes animate-stripes {
|
|
|
|
0% {background-position: 0 0;} 100% {background-position: 60px 0;}
|
|
|
|
}
|
|
|
|
|
2015-04-14 02:45:09 +08:00
|
|
|
@keyframes login-form-shake {
|
|
|
|
0% {transform: translateX(0);}
|
|
|
|
12.5% {transform: translateX(-6px) rotateY(-5deg)}
|
|
|
|
37.5% {transform: translateX(5px) rotateY(4deg)}
|
|
|
|
62.5% {transform: translateX(-3px) rotateY(-2deg)}
|
|
|
|
87.5% {transform: translateX(2px) rotateY(1deg)}
|
|
|
|
100% {transform: translateX(0)}
|
|
|
|
}
|
|
|
|
|
2020-07-22 14:17:02 +08:00
|
|
|
html.rl-started-trigger.no-mobile .b-login-content .loginFormWrapper {
|
2015-02-17 23:52:33 +08:00
|
|
|
/*transform: scale(1.1);*/
|
2015-02-03 07:58:58 +08:00
|
|
|
transform: translateY(-20px);
|
2015-02-17 23:52:33 +08:00
|
|
|
opacity: 0.5;
|
2013-12-27 09:00:40 +08:00
|
|
|
}
|
|
|
|
|
2015-02-03 07:58:58 +08:00
|
|
|
/*html.rl-started-trigger.no-mobile #rl-content {
|
2014-08-28 23:27:30 +08:00
|
|
|
opacity: 0.7;
|
2015-02-03 07:58:58 +08:00
|
|
|
}*/
|
2013-12-27 09:00:40 +08:00
|
|
|
|
2013-12-29 04:42:07 +08:00
|
|
|
#rl-loading {
|
|
|
|
.transition(opacity 0.5s linear);
|
|
|
|
}
|
|
|
|
|
2020-07-22 14:17:02 +08:00
|
|
|
html.rl-started-delay {
|
2013-12-30 05:13:35 +08:00
|
|
|
|
2016-05-01 09:07:10 +08:00
|
|
|
#rl-left {
|
|
|
|
.transition(width 0.3s ease-out);
|
|
|
|
}
|
2013-12-30 05:13:35 +08:00
|
|
|
|
2016-05-01 09:07:10 +08:00
|
|
|
#rl-right {
|
|
|
|
.transition(~'left 0.3s ease-out, right 0.3s ease-out');
|
|
|
|
}
|
2015-01-09 07:31:31 +08:00
|
|
|
|
2016-05-01 09:07:10 +08:00
|
|
|
#rl-sub-left, #rl-sub-left .messageList .inputSearch {
|
|
|
|
.transition(width 0.3s ease-out);
|
|
|
|
}
|
2015-01-09 07:31:31 +08:00
|
|
|
|
2016-05-01 09:07:10 +08:00
|
|
|
#rl-sub-right {
|
|
|
|
.transition(left 0.3s ease-out);
|
2013-12-30 05:13:35 +08:00
|
|
|
}
|
2016-05-01 09:07:10 +08:00
|
|
|
}
|
|
|
|
|
2016-06-16 07:36:44 +08:00
|
|
|
html {
|
2020-07-22 14:17:02 +08:00
|
|
|
&.rgba.backgroundsize .e-strip-animation {
|
2016-06-16 07:36:44 +08:00
|
|
|
background-size: 60px 60px;
|
|
|
|
.rl-strip-animation(0, 0.1);
|
|
|
|
animation: animate-stripes 2s linear infinite;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-25 00:53:47 +08:00
|
|
|
html.no-mobile {
|
2013-12-30 05:13:35 +08:00
|
|
|
|
2020-08-15 02:35:39 +08:00
|
|
|
.b-login-content {
|
|
|
|
.alertError {
|
|
|
|
display: block;
|
|
|
|
opacity: 1;
|
|
|
|
.transition(opacity 0.5s linear);
|
|
|
|
}
|
|
|
|
.alertError[hidden] {
|
2016-08-17 06:01:20 +08:00
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-22 14:17:02 +08:00
|
|
|
&.no-mobile .b-login-content .errorAnimated {
|
2015-04-14 02:45:09 +08:00
|
|
|
animation: login-form-shake 400ms ease-in-out;
|
|
|
|
}
|
|
|
|
|
2015-09-18 03:48:52 +08:00
|
|
|
&.no-mobile .b-login-content .errorAnimated .buttonLogin {
|
|
|
|
color: #b94a48;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2020-07-22 14:17:02 +08:00
|
|
|
&.no-mobile .b-login-content .afterLoginHide {
|
2015-04-14 02:45:09 +08:00
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
2020-07-22 14:17:02 +08:00
|
|
|
&.no-mobile .btn-group.dropdown.colored-toggle.open .animate-this-icon-on-open {
|
2015-03-31 08:12:05 +08:00
|
|
|
animation: bounce-me .5s linear;
|
|
|
|
}
|
|
|
|
|
2020-07-22 14:17:02 +08:00
|
|
|
&.no-mobile .b-login-content .loginFormWrapper {
|
2013-12-28 22:11:19 +08:00
|
|
|
.transition(all 0.3s ease-out);
|
2013-12-27 09:00:40 +08:00
|
|
|
}
|
|
|
|
|
2020-07-22 14:17:02 +08:00
|
|
|
& .button-delete-transitions {
|
2014-04-27 00:09:38 +08:00
|
|
|
.transition(all 0.2s linear);
|
|
|
|
}
|
|
|
|
|
2020-07-22 14:17:02 +08:00
|
|
|
& .b-folders .e-item .anim-action-class {
|
2013-11-16 06:21:12 +08:00
|
|
|
animation: highlight-folder-row 0.5s linear;
|
|
|
|
}
|
|
|
|
|
2020-07-22 14:17:02 +08:00
|
|
|
& .b-folders .btn.buttonContacts {
|
2014-05-08 06:20:17 +08:00
|
|
|
.transition(margin 0.3s linear);
|
|
|
|
}
|
|
|
|
|
2020-07-22 14:17:02 +08:00
|
|
|
& .b-folders .b-content.opacity-on-panel-disabled {
|
2014-05-08 06:20:17 +08:00
|
|
|
.transition(opacity 0.3s linear);
|
|
|
|
}
|
|
|
|
|
2020-07-22 14:17:02 +08:00
|
|
|
& .messageList {
|
2013-11-16 06:21:12 +08:00
|
|
|
.messageListItem {
|
|
|
|
.transition(max-height 400ms ease);
|
|
|
|
}
|
|
|
|
.listDragOver {
|
|
|
|
.transition(all 400ms ease);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-22 14:17:02 +08:00
|
|
|
& .b-list-content {
|
2013-11-16 06:21:12 +08:00
|
|
|
.e-contact-item {
|
|
|
|
.transition(max-height 400ms ease);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-22 14:17:02 +08:00
|
|
|
& .modal.b-domain-content {
|
2013-11-16 06:21:12 +08:00
|
|
|
.modal-body {
|
|
|
|
.transition(left 500ms ease);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-02 23:06:35 +08:00
|
|
|
#rl-popups > .rl-view-model .modal {
|
|
|
|
transition: all .2s ease-out;
|
2015-02-15 08:30:21 +08:00
|
|
|
}
|
2020-09-02 23:06:35 +08:00
|
|
|
#rl-popups > .rl-view-model:not(.show) .modal {
|
|
|
|
top: -25%;
|
|
|
|
}
|
|
|
|
#rl-popups > .rl-view-model .modal.fade {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
#rl-popups > .rl-view-model:not(.show) .modal.fade {
|
|
|
|
opacity: 0;
|
2013-11-16 06:21:12 +08:00
|
|
|
}
|
|
|
|
|
2020-07-22 14:17:02 +08:00
|
|
|
& .b-compose.loading .b-header-toolbar {
|
2013-11-16 06:21:12 +08:00
|
|
|
background-size: 60px 60px;
|
|
|
|
.rl-strip-animation(255, 0.2);
|
|
|
|
animation: animate-stripes 2s linear infinite;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-02 23:06:35 +08:00
|
|
|
#rl-popups > .rl-view-model {
|
|
|
|
transition: background-color 0.2s linear;
|
|
|
|
}
|
|
|
|
#rl-popups > .rl-view-model:not(.show) {
|
|
|
|
background-color: rgba(0,0,0,0);
|
|
|
|
}
|
|
|
|
|
2013-11-16 06:21:12 +08:00
|
|
|
.textLoadingAnimationD1, .textLoadingAnimationD2, .textLoadingAnimationD3 {
|
|
|
|
animation: textLoadingAnimationKeyFrame 1s linear infinite 0s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.textLoadingAnimationD2 {
|
|
|
|
animation-delay: 0.3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.textLoadingAnimationD3 {
|
|
|
|
animation-delay: 0.6s;
|
|
|
|
}
|