ov-components: Refine stream video controls styling and improve hover effects

master
Carlos Santos 2025-11-21 13:44:39 +01:00
parent 9c89adbdee
commit a0de27a78e
1 changed files with 10 additions and 7 deletions

View File

@ -47,25 +47,28 @@
.stream-video-controls {
background-color: var(--ov-primary-action-color);
border-radius: var(--ov-video-radius);
backdrop-filter: blur(8px);
width: fit-content;
height: 50px;
height: 44px;
opacity: 0.5;
position: absolute;
display: inline-grid;
z-index: 9999;
margin: auto;
bottom: 0;
right: 0;
left: 0;
top: 0;
// border: 2px solid var(--ov-text-primary-color);
bottom: 12px;
left: 50%;
transform: translateX(-50%);
transition: opacity 0.3s ease, transform 0.3s ease;
padding: 4px 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
button {
color: var(--ov-text-primary-color);
transition: all 0.2s ease;
}
}
.stream-video-controls:hover {
opacity: 1;
transform: translateX(-50%) translateY(-2px);
}
.status-icons {