Skip to content

Commit c9ed47b

Browse files
committed
refactor: miglioria grafica modulo Log operazioni
1 parent 0a8a84b commit c9ed47b

1 file changed

Lines changed: 34 additions & 0 deletions

File tree

assets/src/css/style.css

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3640,6 +3640,40 @@ section.content, .main-footer {
36403640
border-bottom: 1px solid #f0f0f0; /* Bordo sottile per separare le righe */
36413641
}
36423642

3643+
/* Stili specifici per il modulo Log operazioni */
3644+
/* Impedisce il word-wrap nella colonna Data e ora */
3645+
table.dataTable tbody td:nth-child(6) {
3646+
white-space: nowrap !important;
3647+
min-width: 150px;
3648+
max-width: 150px;
3649+
overflow: hidden;
3650+
text-overflow: ellipsis;
3651+
}
3652+
3653+
/* Stile specifico per la colonna Data e ora nel modulo Log operazioni */
3654+
.log-operazioni-datetime {
3655+
white-space: nowrap !important;
3656+
font-family: 'Courier New', monospace;
3657+
font-size: 11px;
3658+
min-width: 150px;
3659+
max-width: 150px;
3660+
overflow: hidden;
3661+
text-overflow: ellipsis;
3662+
padding: 4px 6px !important;
3663+
}
3664+
3665+
/* Stili generali per migliorare le tabelle DataTables */
3666+
table.dataTable tbody td {
3667+
vertical-align: middle;
3668+
}
3669+
3670+
/* Stile per header della colonna Data e ora */
3671+
table.dataTable thead th:nth-child(6) {
3672+
min-width: 150px;
3673+
max-width: 150px;
3674+
text-align: center;
3675+
}
3676+
36433677
/* Mantieni lo sfondo giallo per le righe nella sezione problemi impostazioni */
36443678
.table-title + .table-database .row-warning td {
36453679
background-color: #fff3cd;

0 commit comments

Comments
 (0)