mirror of
https://github.com/pierre42100/comunic
synced 2024-11-16 18:41:13 +00:00
14 lines
501 B
CSS
Executable File
14 lines
501 B
CSS
Executable File
/**
|
|
* 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;
|
|
}
|