Zulassen von Anonymen RFID updates verlinkung der UUID wenn spieler angelegt wurde

This commit is contained in:
2025-09-11 16:33:22 +02:00
parent d2a1bb16ea
commit 28616b3b0c
14 changed files with 2676 additions and 241 deletions

View File

@@ -239,6 +239,8 @@ body {
border-radius: 1rem;
width: 90%;
max-width: 500px;
max-height: 80vh;
overflow-y: auto;
backdrop-filter: blur(20px);
}
@@ -260,7 +262,36 @@ body {
font-size: 2rem;
font-weight: bold;
cursor: pointer;
transition: color 0.2s ease;
}
/* RFID Modal specific styles */
#rfidModal .modal-content {
max-height: 85vh;
overflow-y: auto;
}
/* Smooth scrolling for modal content */
.modal-content {
scroll-behavior: smooth;
}
/* Custom scrollbar for modal content */
.modal-content::-webkit-scrollbar {
width: 8px;
}
.modal-content::-webkit-scrollbar-track {
background: rgba(30, 41, 59, 0.3);
border-radius: 4px;
}
.modal-content::-webkit-scrollbar-thumb {
background: rgba(100, 116, 139, 0.6);
border-radius: 4px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
background: rgba(100, 116, 139, 0.8);
}
.close:hover {