mirror of
https://github.com/zen-browser/pdf.js.git
synced 2025-07-09 01:35:43 +02:00
13 lines
501 B
CSS
13 lines
501 B
CSS
/**
|
|
* Detect creation of <embed> and <object> tags.
|
|
*/
|
|
@-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;
|
|
}
|