Przeglądaj źródła

fix grafiche da email 06/08/2025 19:12

ferrari 5 miesięcy temu
rodzic
commit
c074b73596

+ 6 - 0
public/css/calendar.css

@@ -89,6 +89,12 @@ body label.form-label {
     margin-bottom: 0;
 }
 
+body input[type=checkbox]:checked {
+    -webkit-appearance: none;
+    background-color: #0c6197 !important;
+    border-radius: 2px;
+}
+
 @media (max-width: 1024px) { 
     body .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk .fc-button {
         font-size: 14px;

+ 11 - 7
resources/views/livewire/presence.blade.php

@@ -112,13 +112,15 @@
                                                 <input class="member chkM" type="checkbox" value="{{$record["id"]}}" {{$record["presence"] ? 'checked' : ''}}>
                                             @endif
                                         @else
-                                            &#10003;
+                                            {{-- &#10003; --}}
+                                            <i class="fa-solid fa-lock"></i>
                                         @endif
                                     @else
                                         <input class="member chkM" type="checkbox" value="{{$record["id"]}}" {{$record["presence"] ? 'checked' : ''}}>
                                     @endif
                                 @else
-                                    Annullata
+                                    <span class="p-1 text-white" style="background-color: #BE231D; border-radius: 5px">Annullata</span>&nbsp;
+                                    <a href="#"><i class="fa-solid fa-undo"></i></a>
                                 @endif
                             </td>
                         </tr>
@@ -155,15 +157,17 @@
                         
                     @endif              
                 </div>
-                <div class="col-auto text-end">
-                    @if(!$manual)
+                @if(!$manual)
+                    <div class="col-auto mt-2 text-end">
                         <button type="button" class="btn--ui btSave" onclick="save()">Salva</button>        
+                    </div>
+                    <div class="col-xs-12 mt-2">
                         <div class="showDelete" style="float:left;display:none;">
                             <button type="button" class="btn--ui lightGrey btSaveDelete" onclick="hideShowDelete()">Indietro</button>     
-                            <button type="button" class="btn--ui btSaveDelete" onclick="cancel()">Salva</button>             
+                            <button type="button" class="btn--ui btSaveDelete" onclick="cancel()">Conferma</button>             
                         </div>
-                    @endif
-                </div>
+                    </div>
+                @endif
             @endif
         </div>