mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-09 17:37:02 +03:00
Fixed "Viewing small (image) attachments" (Closes #369)
This commit is contained in:
parent
eb30a1fe27
commit
96e4741a57
17 changed files with 2827 additions and 178 deletions
45
vendors/_jquery-magnific-popup/magnific-popup-animations.css
vendored
Normal file
45
vendors/_jquery-magnific-popup/magnific-popup-animations.css
vendored
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
|
||||
/* overlay at start */
|
||||
.mfp-fade.mfp-bg {
|
||||
opacity: 0;
|
||||
|
||||
-webkit-transition: all 0.2s ease-out;
|
||||
-moz-transition: all 0.2s ease-out;
|
||||
transition: all 0.2s ease-out;
|
||||
}
|
||||
/* overlay animate in */
|
||||
.mfp-fade.mfp-bg.mfp-ready {
|
||||
opacity: 0.8;
|
||||
}
|
||||
/* overlay animate out */
|
||||
.mfp-fade.mfp-bg.mfp-removing {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
/* content at start */
|
||||
.mfp-fade.mfp-wrap .mfp-content {
|
||||
opacity: 0;
|
||||
|
||||
-webkit-transition: all 0.15s ease-out;
|
||||
-moz-transition: all 0.15s ease-out;
|
||||
transition: all 0.15s ease-out;
|
||||
|
||||
-webkit-transform: translateX(-50px);
|
||||
-moz-transform: translateX(-50px);
|
||||
transform: translateX(-50px);
|
||||
}
|
||||
|
||||
/* content animate it */
|
||||
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateX(0);
|
||||
-moz-transform: translateX(0);
|
||||
transform: translateX(0);
|
||||
}
|
||||
/* content animate out */
|
||||
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
|
||||
opacity: 0;
|
||||
-webkit-transform: translateX(50px);
|
||||
-moz-transform: translateX(50px);
|
||||
transform: translateX(50px);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue