mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-11 09:45:54 +08:00
178 lines
3.8 KiB
Text
178 lines
3.8 KiB
Text
|
|
.rl-strip-animation(@rgba, @stripOpacity) {
|
|
background-image: linear-gradient(135deg, rgba(@rgba, @rgba, @rgba, @stripOpacity) 25%, transparent 25%,
|
|
transparent 50%, rgba(@rgba, @rgba, @rgba, @stripOpacity) 50%, rgba(@rgba, @rgba, @rgba, @stripOpacity) 75%,
|
|
transparent 75%, transparent);
|
|
}
|
|
|
|
@keyframes highlight-folder-row {
|
|
0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); }
|
|
}
|
|
|
|
@keyframes bounce-me {
|
|
0% { transform: scale(1); } 50% { transform: scale(1.2); } 100% { transform: scale(1); }
|
|
}
|
|
|
|
@keyframes textLoadingAnimationKeyFrame {
|
|
0% { opacity: 1; } 33% { opacity: 0; } 100% { opacity: 1; }
|
|
}
|
|
|
|
@keyframes animate-stripes {
|
|
0% {background-position: 0 0;} 100% {background-position: 60px 0;}
|
|
}
|
|
|
|
@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)}
|
|
}
|
|
|
|
html.rl-started-trigger.no-mobile .b-login-content .loginFormWrapper {
|
|
/*transform: scale(1.1);*/
|
|
transform: translateY(-20px);
|
|
opacity: 0.5;
|
|
}
|
|
|
|
/*html.rl-started-trigger.no-mobile #rl-content {
|
|
opacity: 0.7;
|
|
}*/
|
|
|
|
html.rl-started-delay {
|
|
|
|
#rl-left {
|
|
transition: width 0.3s ease-out;
|
|
}
|
|
|
|
#rl-right {
|
|
transition: left 0.3s ease-out, right 0.3s ease-out;
|
|
}
|
|
|
|
#rl-sub-left, #rl-sub-left .messageList .inputSearch {
|
|
transition: width 0.3s ease-out;
|
|
}
|
|
|
|
#rl-sub-right {
|
|
transition: left 0.3s ease-out;
|
|
}
|
|
}
|
|
|
|
html {
|
|
&.rgba.backgroundsize .e-strip-animation {
|
|
background-size: 60px 60px;
|
|
.rl-strip-animation(0, 0.1);
|
|
animation: animate-stripes 2s linear infinite;
|
|
}
|
|
}
|
|
|
|
html.no-mobile {
|
|
|
|
.b-login-content {
|
|
.alertError {
|
|
display: block;
|
|
opacity: 1;
|
|
transition: opacity 0.5s linear;
|
|
}
|
|
.alertError[hidden] {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
&.no-mobile .b-login-content .errorAnimated {
|
|
animation: login-form-shake 400ms ease-in-out;
|
|
}
|
|
|
|
&.no-mobile .b-login-content .errorAnimated .buttonLogin {
|
|
color: #b94a48;
|
|
font-weight: bold;
|
|
}
|
|
|
|
&.no-mobile .b-login-content .afterLoginHide {
|
|
opacity: 0;
|
|
}
|
|
|
|
&.no-mobile .btn-group.dropdown.colored-toggle.open .animate-this-icon-on-open {
|
|
animation: bounce-me .5s linear;
|
|
}
|
|
|
|
&.no-mobile .b-login-content .loginFormWrapper {
|
|
transition: all 0.3s ease-out;
|
|
}
|
|
|
|
& .button-delete-transitions {
|
|
transition: all 0.2s linear;
|
|
}
|
|
|
|
& .b-folders .e-item .anim-action-class {
|
|
animation: highlight-folder-row 0.5s linear;
|
|
}
|
|
|
|
& .b-folders .btn.buttonContacts {
|
|
transition: margin 0.3s linear;
|
|
}
|
|
|
|
& .b-folders .b-content.opacity-on-panel-disabled {
|
|
transition: opacity 0.3s linear;
|
|
}
|
|
|
|
& .messageList {
|
|
.messageListItem {
|
|
transition: max-height 400ms ease;
|
|
}
|
|
.listDragOver {
|
|
transition: all 400ms ease;
|
|
}
|
|
}
|
|
|
|
& .b-list-content {
|
|
.e-contact-item {
|
|
transition: max-height 400ms ease;
|
|
}
|
|
}
|
|
|
|
& .modal.b-domain-content {
|
|
.modal-body {
|
|
transition: left 500ms ease;
|
|
}
|
|
}
|
|
|
|
#rl-popups > .rl-view-model .modal {
|
|
transition: all .2s ease-out;
|
|
}
|
|
#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;
|
|
}
|
|
|
|
& .b-compose.loading .b-header-toolbar {
|
|
background-size: 60px 60px;
|
|
.rl-strip-animation(255, 0.2);
|
|
animation: animate-stripes 2s linear infinite;
|
|
}
|
|
}
|
|
|
|
#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);
|
|
}
|
|
|
|
.textLoadingAnimationD1, .textLoadingAnimationD2, .textLoadingAnimationD3 {
|
|
animation: textLoadingAnimationKeyFrame 1s linear infinite 0s;
|
|
}
|
|
|
|
.textLoadingAnimationD2 {
|
|
animation-delay: 0.3s;
|
|
}
|
|
|
|
.textLoadingAnimationD3 {
|
|
animation-delay: 0.6s;
|
|
}
|