1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-26 08:17:48 +01:00

feat: aggiunto modal-footer per modal

This commit is contained in:
Luca 2025-02-23 20:00:42 +01:00
parent d5c8901f26
commit 3af9e99bbf
2 changed files with 11 additions and 6 deletions

View File

@ -1658,8 +1658,6 @@ body:not(.sidebar-collapse) .sidebar .nav-treeview .nav-treeview .nav-link {
.large-modal .modal-dialog {
width: 90%;
max-width: 90%;
height: 90%;
max-height: 90%;
}
.large-modal .modal-content {
@ -1673,6 +1671,11 @@ body:not(.sidebar-collapse) .sidebar .nav-treeview .nav-treeview .nav-link {
overflow-y: auto;
}
.modal-footer{
margin: 15px -12px -10px -12px;
padding: 10px 0px 5px 0px;
}
.info-active ul.list{
list-style: none;
}

View File

@ -35,7 +35,6 @@ $stato = Stato::where('name', 'Bozza')->first()->id;
<input type="hidden" name="id_record" value="0">
<div class="row">
<div class="col-md-6">
{[ "type": "text", "label": "<?php echo tr('Nome'); ?>", "name": "nome", "required": 1 ]}
</div>
@ -69,11 +68,14 @@ $stato = Stato::where('name', 'Bozza')->first()->id;
</div>
<!-- PULSANTI -->
<div class="row">
<div class="col-md-12 text-right">
<button type="submit" class="btn btn-primary"><i class="fa fa-plus"></i> <?php echo tr('Aggiungi'); ?></button>
<div class="modal-footer">
<div class="row">
<div class="col-md-12 text-right">
<button type="submit" class="btn btn-primary"><i class="fa fa-plus"></i> <?php echo tr('Aggiungi'); ?></button>
</div>
</div>
</div>
</form>
<script>