12345678910111213141516171819202122 |
- @-webkit-keyframes pdfjs-detected-object-or-embed {
- from {
-
- }
- }
- @keyframes pdfjs-detected-object-or-embed {
- from {
-
- }
- }
- object,
- embed {
- -webkit-animation-delay: 0s !important;
- -webkit-animation-name: pdfjs-detected-object-or-embed !important;
- -webkit-animation-play-state: running !important;
- animation-delay: 0s !important;
- animation-name: pdfjs-detected-object-or-embed !important;
- animation-play-state: running !important;
- }
|