добавил защиту для отчистки событий матча, тест 1
This commit is contained in:
@@ -4035,4 +4035,19 @@ function buildChannelValue(matchId) {
|
||||
if (hasMatch) return "match";
|
||||
|
||||
return "";
|
||||
}
|
||||
|
||||
function openClearMatchModal() {
|
||||
const modal = document.getElementById("clearMatchModal");
|
||||
if (modal) modal.classList.add("show");
|
||||
}
|
||||
|
||||
function closeClearMatchModal() {
|
||||
const modal = document.getElementById("clearMatchModal");
|
||||
if (modal) modal.classList.remove("show");
|
||||
}
|
||||
|
||||
function confirmClearMatch() {
|
||||
closeClearMatchModal();
|
||||
clearMatchEvents();
|
||||
}
|
||||
@@ -2440,4 +2440,28 @@ body:not(.edit-mode-on) .referee-search {
|
||||
|
||||
#clockEditorModal .btn-primary {
|
||||
box-shadow: 0 10px 24px rgba(79, 140, 255, 0.25);
|
||||
}
|
||||
|
||||
.clear-match-modal-content {
|
||||
width: min(420px, 92vw);
|
||||
}
|
||||
|
||||
.clear-match-warning {
|
||||
padding: 18px;
|
||||
border-radius: 14px;
|
||||
background: rgba(220, 53, 69, 0.12);
|
||||
border: 1px solid rgba(220, 53, 69, 0.28);
|
||||
color: #ffb8bf;
|
||||
font-size: 15px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.btn-danger {
|
||||
background: #dc3545;
|
||||
color: white;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.btn-danger:hover {
|
||||
background: #e14b5b;
|
||||
}
|
||||
Reference in New Issue
Block a user