1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-18 14:18:23 +02:00
pdf.js/extensions/chromium/contentstyle.css

14 lines
289 B
CSS

/**
* Detect creation of <embed> and <object> tags.
*/
@keyframes pdfjs-detected-object-or-embed {
from {
/* empty */
}
}
object,
embed {
animation-delay: 0s !important;
animation-name: pdfjs-detected-object-or-embed !important;
animation-play-state: running !important;
}