fix(powercord): readd media opening animation

This commit is contained in:
Infinidoge 2022-03-11 15:51:07 -05:00
parent 5a5640bc61
commit f7c3aff0b5
2 changed files with 37 additions and 2 deletions

View file

@ -59,6 +59,9 @@
"949001991567343616": { "949001991567343616": {
"title": "Expand Text Bar", "title": "Expand Text Bar",
"description": "Expands the text bar to be the width of the message screen, and aligns it with the user modal." "description": "Expands the text bar to be the width of the message screen, and aligns it with the user modal."
},
"951894639596666940": {
"title": "Readd Media Opening Animation"
} }
}, },
"collapsedSnippets": [ "collapsedSnippets": [
@ -73,7 +76,14 @@
"949001991567343616", "949001991567343616",
"931904851586195476", "931904851586195476",
"921928336802971699", "921928336802971699",
"949006652944834560" "949006652944834560",
"951894639596666940",
"885158901673230376",
"898512654849687592",
"875021875120582676",
"865701620201685012",
"863870341537071197",
"907442893608869888"
], ],
"show-quick-header": false "show-quick-header": false
} }

View file

@ -199,4 +199,29 @@
.clamped-2ZePhX { .clamped-2ZePhX {
-webkit-line-clamp: unset; -webkit-line-clamp: unset;
} }
/** 949006652944834560 */ /** 949006652944834560 */
/**
* Snippet from #css-snippets applied the 11 Mar 2022 at 15:48:07
* Created by Davri#0015 (457579346282938368)
* Snippet ID: 951894639596666940
*/
.modal-3Crloo .wrapper-2bCXfR {
opacity: 0;
animation: mediapopup 190ms ease-out forwards;
animation-delay: 80ms;
}
@keyframes mediapopup {
0% {
transform: scale(0.65);
}
70% {
opacity: 1;
transform: scale(1.012);
}
100% {
opacity: 1;
transform: scale(1);
}
}
/** 951894639596666940 */