тест3

This commit is contained in:
2026-04-21 15:13:53 +03:00
parent 84e49b2b39
commit 33b46792c4
3 changed files with 48 additions and 4 deletions

View File

@@ -2115,6 +2115,10 @@ function renderLineupRow(row) {
<td class="actions-col">${actionsHtml}</td>
`;
}
function makeDraggable(el) {
let dragging = false;

View File

@@ -2260,4 +2260,35 @@ body:not(.edit-mode-on) .referee-search {
.coach-link-btn:hover .coach-name,
.coach-left:hover .coach-name {
color: #a9c7ff;
}
.player-link-btn {
display: block;
width: 100%;
padding: 0;
margin: 0;
border: none;
background: transparent;
color: inherit;
text-align: left;
cursor: pointer;
font: inherit;
}
.player-link-btn .last-name,
.player-link-btn .first-name {
color: #8ab4ff;
text-decoration: underline;
text-underline-offset: 2px;
}
.player-link-btn:hover .last-name,
.player-link-btn:hover .first-name {
color: #a9c7ff;
}
.player-link-btn:focus-visible {
outline: 2px solid rgba(138, 180, 255, 0.45);
outline-offset: 2px;
border-radius: 6px;
}