contentstyle.css 535 B

12345678910111213141516171819202122
  1. /**
  2. * Detect creation of <embed> and <object> tags.
  3. */
  4. @-webkit-keyframes pdfjs-detected-object-or-embed {
  5. from {
  6. /* empty */
  7. }
  8. }
  9. @keyframes pdfjs-detected-object-or-embed {
  10. from {
  11. /* empty */
  12. }
  13. }
  14. object,
  15. embed {
  16. -webkit-animation-delay: 0s !important;
  17. -webkit-animation-name: pdfjs-detected-object-or-embed !important;
  18. -webkit-animation-play-state: running !important;
  19. animation-delay: 0s !important;
  20. animation-name: pdfjs-detected-object-or-embed !important;
  21. animation-play-state: running !important;
  22. }