init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
25
KretaWeb/Views/Shared/EditorTemplates/PopUp.cshtml
Normal file
25
KretaWeb/Views/Shared/EditorTemplates/PopUp.cshtml
Normal file
|
@ -0,0 +1,25 @@
|
|||
@model Kreta.Web.Models.EditorTemplates.PopUpModel
|
||||
@{
|
||||
Layout = null;
|
||||
}
|
||||
@if (Model.Buttons.Any(x => x.SecondLine))
|
||||
{
|
||||
<style>
|
||||
.modalContainer .modalOuter {
|
||||
height: calc(100% - 102px) !important;
|
||||
}
|
||||
</style>
|
||||
}
|
||||
|
||||
<div class="modalContainer">
|
||||
<div class="modalOuter">
|
||||
<div class="modalContent">
|
||||
<div class="k-content">
|
||||
@Html.Partial(Model.View, Model.Instance)
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modalFooter">
|
||||
@Html.Partial("EditorTemplates/ModalButton", Model.Buttons)
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue