Files
farmOS-dev/web/modules/entity_browser/css/entity_browser.iframe.css
2024-12-10 15:08:16 +01:00

25 lines
582 B
CSS

/**
* @file
* Styles for the iFrame Display Plugin.
*/
.entity-browser-iframe-container iframe {
/* IFrame is rendered as inline element by default and thus have a line height
which can add unwanted vertical space around it. */
display: block;
position: relative;
z-index: 501;
/* Remove the border on our iframe element. */
border: none;
}
.entity-browser-iframe-container .ajax-progress-fullscreen,
.entity-browser-iframe-container .ajax-progress--fullscreen {
position: absolute;
z-index: 500;
}
.entity-browser-iframe-container {
position: relative;
}