mix part and loader

This commit is contained in:
2025-07-30 15:43:14 +02:00
parent b3f19be47d
commit 6d66c5cf97
60 changed files with 3973 additions and 55 deletions
+9 -4
View File
@@ -25,6 +25,7 @@
<td><input type="text" class="form-control form-control-sm part-description" placeholder="Inserisci descrizione" style="width: 100%;"></td>
<td>
<button type="button" class="btn btn-success btn-sm add-row" style="padding: 0.1rem 0.3rem; font-size: 0.8rem;"><i class="fas fa-plus fa-xs"></i></button>
<button type="button" class="btn btn-primary btn-sm add-mix-row" style="padding: 0.1rem 0.3rem; font-size: 0.8rem;">M</button>
<button type="button" class="btn btn-danger btn-sm remove-row" style="padding: 0.1rem 0.3rem; font-size: 0.8rem; display: none;"><i class="fas fa-trash fa-xs"></i></button>
<span class="save-status text-success" style="display: none; margin-left: 5px;"><i class="fas fa-check fa-xs"></i></span>
<span class="save-loading text-warning" style="display: none; margin-left: 5px;"><i class="fas fa-spinner fa-spin fa-xs"></i></span>
@@ -92,6 +93,9 @@
#partsList .list-group-item {
cursor: pointer;
transition: background-color 0.2s;
display: flex;
justify-content: space-between;
align-items: center;
}
#partsList .list-group-item:hover {
@@ -113,18 +117,14 @@
.draggable-marker {
position: absolute;
width: 24px;
/* Aumentato da 16px */
height: 24px;
/* Aumentato da 16px */
background: rgba(255, 0, 0, 0.5);
border: 1px solid #ff0000;
border-radius: 50%;
color: #ffffff;
text-align: center;
line-height: 24px;
/* Aumentato per allineare il testo */
font-size: 12px;
/* Aumentato da 8px */
cursor: move;
user-select: none;
z-index: 1000;
@@ -137,4 +137,9 @@
width: 100%;
height: 100%;
}
.add-to-mix-btn {
padding: 0.1rem 0.3rem;
font-size: 0.8rem;
}
</style>