Видео проигрываеться

This commit is contained in:
2026-05-07 11:25:44 +03:00
parent 576e2b68fc
commit 6ec569f6e6
5 changed files with 251 additions and 157 deletions

View File

@@ -552,4 +552,48 @@ tr:hover {
.status-message {
margin-left: 0;
}
}
/* Модальное окно плеера */
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.8);
align-items: center;
justify-content: center;
z-index: 1000;
}
.modal.active {
display: flex;
}
.modal-content {
background: var(--bg-secondary);
border-radius: 12px;
padding: 20px;
max-width: 90vw;
box-shadow: var(--shadow-lg);
position: relative;
}
.modal .close {
position: absolute;
top: 8px;
right: 16px;
font-size: 28px;
color: var(--text-primary);
cursor: pointer;
line-height: 1;
}
/* Кнопки в таблице (уменьшенный размер) */
.btn-sm {
padding: 4px 8px;
font-size: 12px;
gap: 4px;
}