mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 17:51:40 +09:00
41 lines
1,002 B
HTML
41 lines
1,002 B
HTML
@version(2)
|
|
@load('../../modules/admin/tpl/css/admin.bootstrap.css')
|
|
@load('../../modules/admin/tpl/css/admin.css')
|
|
|
|
<div class="x popup">
|
|
{!! $content !!}
|
|
</div>
|
|
|
|
@if (isset($iframe_sequence) && preg_match('/^\w+$/', $iframe_sequence))
|
|
<script>
|
|
const iframe_sequence = '{{ $iframe_sequence }}';
|
|
window.opener = window.parent;
|
|
window.close = function() {
|
|
const iframe = parent.document.getElementById('_rx_iframe_' + iframe_sequence);
|
|
if (iframe) {
|
|
iframe.remove();
|
|
}
|
|
};
|
|
</script>
|
|
<style>
|
|
.x.popup {
|
|
width: 100vw; height: 100vh;
|
|
display: flex; flex-direction: column;
|
|
}
|
|
.x.popup > form {
|
|
width: 100vw; height: 100vh;
|
|
display: flex; flex-direction: column;
|
|
margin: 0 !important;
|
|
}
|
|
.x_modal-header { flex: 0 0 auto; }
|
|
.x_modal-body { flex: 1; overflow: scroll; }
|
|
.x_modal-footer { padding-bottom: 24px !important; }
|
|
</style>
|
|
@else
|
|
<script>
|
|
jQuery(function() {
|
|
setTimeout(setFixedPopupSize, 500);
|
|
});
|
|
var _isPoped = true;
|
|
</script>
|
|
@endif
|