mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-10 14:44:04 +01:00
Fix sezione allegati
This commit is contained in:
parent
3ae94863a8
commit
72ec540d3f
@ -927,10 +927,6 @@ div.tip {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.hide, .hidden{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.number-input {
|
||||
text-align: right;
|
||||
}
|
||||
@ -1017,7 +1013,11 @@ table.dataTable {
|
||||
.select2-container--bootstrap4{
|
||||
display: block;
|
||||
flex: 1 1 auto;
|
||||
width: 1% !important
|
||||
width: 85% !important
|
||||
}
|
||||
|
||||
.card-lg{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field {
|
||||
@ -1552,6 +1552,10 @@ body:not(.sidebar-collapse) .sidebar .nav-treeview .nav-treeview .nav-link {
|
||||
text-align: left !important;
|
||||
}
|
||||
|
||||
.hide, .hidden{
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 767px) {
|
||||
.navbar-left {
|
||||
display: inline-block;
|
||||
|
@ -85,36 +85,17 @@ class FileManager implements ManagerInterface
|
||||
|
||||
if (!empty($rs)) {
|
||||
$result .= '
|
||||
<div class="box box-success">
|
||||
<div class="box-header with-border">
|
||||
<h3 class="box-title">'.(!empty($category) ? $category : tr('Generale')).'</h3>
|
||||
<div class="card card-success">
|
||||
<div class="card-header with-border">
|
||||
<h3 class="card-title">'.(!empty($category) ? $category : tr('Generale')).'</h3>
|
||||
|
||||
{[ "type": "text", "class": "hidden category-name", "value": "'.$category.'" ]}
|
||||
|
||||
<div class="box-tools pull-right">';
|
||||
|
||||
if (!empty($category) && !in_array($category, ['Fattura Elettronica'])) {
|
||||
$result .= '
|
||||
<button type="button" class="btn btn-box-tool category-save hidden">
|
||||
<i class="fa fa-check"></i>
|
||||
</button>
|
||||
|
||||
<button type="button" class="btn btn-box-tool category-cancel hidden">
|
||||
<i class="fa fa-close"></i>
|
||||
</button>
|
||||
|
||||
<button type="button" class="btn btn-box-tool category-edit">
|
||||
<i class="fa fa-edit"></i>
|
||||
</button>';
|
||||
}
|
||||
|
||||
$result .= '
|
||||
<button type="button" class="btn btn-box-tool" data-widget="collapse">
|
||||
<div class="card-tools pull-right">
|
||||
<button type="button" class="btn btn-card-tool" data-card-widget="collapse">
|
||||
<i class="fa fa-minus"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="box-body no-padding table-responsive">
|
||||
<div class="card-body no-padding table-responsive">
|
||||
<table class="table table-striped table-condensed ">
|
||||
<thead>
|
||||
<tr>
|
||||
|
Loading…
Reference in New Issue
Block a user