@diagramers/admin
Version:
Diagramers Admin Template - React starter for admin dashboards.
17 lines (14 loc) • 531 B
CSS
/* This file is reserved for overriding and extending the template styles. */
/* Remove blocking iframe overlays */
iframe[style*="z-index: 2147483647"],
iframe[style*="z-index:2147483647"] {
display: none ;
}
/* Alternative: Hide any iframe with very high z-index */
iframe[style*="z-index: 214748364"] {
display: none ;
}
/* Hide any fixed positioned iframe that covers the entire viewport */
iframe[style*="position: fixed"][style*="width: 100%"][style*="height: 100%"] {
display: none ;
}