Refactor video player CSS for improved subtitles and layout
Major CSS refactor for video player components: improves subtitle styling and cross-browser positioning, restructures ControlsLayer and VideoElement styles for clarity and responsiveness, and updates custom properties for better subtitle/controls separation. Adds a local settings file for permissions.
This commit is contained in:
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"permissions": {
|
||||||
|
"allow": [
|
||||||
|
"Bash(find:*)",
|
||||||
|
"Bash(cat:*)"
|
||||||
|
],
|
||||||
|
"deny": [],
|
||||||
|
"ask": []
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,46 +1,97 @@
|
|||||||
|
/* ============================================
|
||||||
|
CONTROLS LAYER - Overlay Container
|
||||||
|
============================================ */
|
||||||
|
|
||||||
.controls-layer {
|
.controls-layer {
|
||||||
|
/* Positioning */
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
inset: 0;
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
/* Stacking */
|
||||||
height: 100%;
|
|
||||||
z-index: var(--player-z-controls);
|
z-index: var(--player-z-controls);
|
||||||
|
|
||||||
|
/* Layout - Push controls to bottom */
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
transition: opacity var(--player-transition-normal) ease;
|
|
||||||
|
/* Interaction */
|
||||||
cursor: default;
|
cursor: default;
|
||||||
|
pointer-events: auto;
|
||||||
|
|
||||||
|
/* Animation */
|
||||||
|
opacity: 1;
|
||||||
|
transition: opacity var(--player-transition-normal) ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ============================================
|
||||||
|
VISIBILITY STATES
|
||||||
|
============================================ */
|
||||||
|
|
||||||
|
/* Visible state (explicit for clarity) */
|
||||||
|
.controls-layer.visible {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Hidden while playing */
|
||||||
.controls-layer.hidden.playing {
|
.controls-layer.hidden.playing {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Hide cursor in fullscreen when controls are hidden */
|
||||||
.controls-layer.fullscreen.hidden.playing {
|
.controls-layer.fullscreen.hidden.playing {
|
||||||
cursor: none;
|
cursor: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Allow clicks to pass through to video when controls are hidden */
|
/* ============================================
|
||||||
|
CONTROLS BAR - Bottom Control Panel
|
||||||
|
============================================ */
|
||||||
|
|
||||||
|
.controls-bar {
|
||||||
|
/* Layout */
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
|
/* Spacing - CRITICAL: Leave room for subtitles */
|
||||||
|
padding-top: var(--player-spacing-xl);
|
||||||
|
padding-bottom: var(--player-spacing-lg);
|
||||||
|
padding-left: var(--player-spacing-lg);
|
||||||
|
padding-right: var(--player-spacing-lg);
|
||||||
|
|
||||||
|
/* Background gradient */
|
||||||
|
background: linear-gradient(
|
||||||
|
to top,
|
||||||
|
var(--player-bg-controls) 0%,
|
||||||
|
var(--player-bg-controls) 60%,
|
||||||
|
transparent 100%
|
||||||
|
);
|
||||||
|
|
||||||
|
/* Animation */
|
||||||
|
transform: translateY(0);
|
||||||
|
transition: transform var(--player-transition-normal) ease;
|
||||||
|
|
||||||
|
/* Interaction */
|
||||||
|
pointer-events: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Slide controls down when hidden (allows clicks to pass through) */
|
||||||
.controls-layer.hidden.playing .controls-bar {
|
.controls-layer.hidden.playing .controls-bar {
|
||||||
transform: translateY(100%);
|
transform: translateY(100%);
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.controls-layer.visible {
|
/* ============================================
|
||||||
opacity: 1;
|
PROGRESS CONTAINER
|
||||||
}
|
============================================ */
|
||||||
|
|
||||||
.controls-bar {
|
|
||||||
background: linear-gradient(to top, var(--player-bg-controls) 0%, transparent 100%);
|
|
||||||
padding: var(--player-spacing-xl) var(--player-spacing-lg) var(--player-spacing-lg);
|
|
||||||
transition: transform var(--player-transition-normal) ease;
|
|
||||||
transform: translateY(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
.progress-container {
|
.progress-container {
|
||||||
margin-bottom: var(--player-spacing-md);
|
margin-bottom: var(--player-spacing-md);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ============================================
|
||||||
|
CONTROLS ROW - Button Container
|
||||||
|
============================================ */
|
||||||
|
|
||||||
.controls-row {
|
.controls-row {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@@ -48,21 +99,31 @@
|
|||||||
gap: var(--player-spacing-sm);
|
gap: var(--player-spacing-sm);
|
||||||
}
|
}
|
||||||
|
|
||||||
.controls-left,
|
/* Left side controls group */
|
||||||
.controls-right {
|
.controls-left {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: var(--player-spacing-sm);
|
gap: var(--player-spacing-sm);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Right side controls group */
|
||||||
.controls-right {
|
.controls-right {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: var(--player-spacing-sm);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Mobile responsiveness */
|
/* ============================================
|
||||||
|
MOBILE RESPONSIVE
|
||||||
|
============================================ */
|
||||||
|
|
||||||
@media (max-width: 640px) {
|
@media (max-width: 640px) {
|
||||||
.controls-bar {
|
.controls-bar {
|
||||||
padding: var(--player-spacing-lg) var(--player-spacing-md) var(--player-spacing-md);
|
padding-top: var(--player-spacing-lg);
|
||||||
|
padding-bottom: var(--player-spacing-md);
|
||||||
|
padding-left: var(--player-spacing-md);
|
||||||
|
padding-right: var(--player-spacing-md);
|
||||||
}
|
}
|
||||||
|
|
||||||
.controls-row {
|
.controls-row {
|
||||||
|
|||||||
+316
-66
@@ -1,18 +1,33 @@
|
|||||||
|
/* ============================================
|
||||||
|
VIDEO CONTAINER
|
||||||
|
============================================ */
|
||||||
|
|
||||||
.video-container {
|
.video-container {
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
z-index: var(--player-z-video);
|
z-index: var(--player-z-video);
|
||||||
|
overflow: visible;
|
||||||
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ============================================
|
||||||
|
VIDEO ELEMENT
|
||||||
|
============================================ */
|
||||||
|
|
||||||
.video-element {
|
.video-element {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
object-fit: contain;
|
|
||||||
display: block;
|
display: block;
|
||||||
|
object-fit: contain;
|
||||||
|
pointer-events: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Hide native controls */
|
/* ============================================
|
||||||
|
HIDE NATIVE MEDIA CONTROLS
|
||||||
|
============================================ */
|
||||||
|
|
||||||
|
/* Chrome/Safari/Edge */
|
||||||
.video-element::-webkit-media-controls {
|
.video-element::-webkit-media-controls {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
@@ -25,93 +40,328 @@
|
|||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Subtitle Styling */
|
/* Firefox */
|
||||||
|
.video-element::-moz-media-controls {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ============================================
|
||||||
|
SUBTITLE STYLING - Modern & Cross-Browser
|
||||||
|
Optimized for Chromium and Firefox
|
||||||
|
============================================ */
|
||||||
|
|
||||||
|
/* ==================== BASE CUE STYLES ==================== */
|
||||||
|
|
||||||
|
/* All browsers - Base subtitle appearance */
|
||||||
|
::cue {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
|
||||||
|
font-size: 1.5rem !important;
|
||||||
|
font-weight: 700 !important;
|
||||||
|
line-height: 1.5 !important;
|
||||||
|
color: #ffffff !important;
|
||||||
|
background-color: rgba(0, 0, 0, 0.9) !important;
|
||||||
|
padding: 0.4em 0.8em !important;
|
||||||
|
border-radius: 6px !important;
|
||||||
|
text-shadow:
|
||||||
|
0 1px 2px rgba(0, 0, 0, 1),
|
||||||
|
0 2px 8px rgba(0, 0, 0, 0.8) !important;
|
||||||
|
white-space: pre-line !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Chromium specific */
|
||||||
.video-element::cue {
|
.video-element::cue {
|
||||||
font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
|
||||||
font-size: clamp(1.05rem, 2vw, 1.9rem);
|
font-size: 1.5rem !important;
|
||||||
font-weight: 600;
|
font-weight: 700 !important;
|
||||||
line-height: 1.45;
|
line-height: 1.5 !important;
|
||||||
letter-spacing: 0.015em;
|
color: #ffffff !important;
|
||||||
text-align: center;
|
background-color: rgba(0, 0, 0, 0.9) !important;
|
||||||
color: var(--player-subtitle-color);
|
padding: 0.4em 0.8em !important;
|
||||||
background-color: var(--player-subtitle-bg);
|
border-radius: 6px !important;
|
||||||
padding: 0.45em 0.9em;
|
text-shadow:
|
||||||
border-radius: 14px;
|
0 1px 2px rgba(0, 0, 0, 1),
|
||||||
box-shadow: var(--player-subtitle-shadow), 0 0 0 1px rgba(255, 255, 255, 0.08);
|
0 2px 8px rgba(0, 0, 0, 0.8) !important;
|
||||||
text-shadow: 0 6px 20px rgba(0, 0, 0, 0.55);
|
white-space: pre-line !important;
|
||||||
white-space: pre-line;
|
|
||||||
word-break: break-word;
|
|
||||||
text-wrap: balance;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
text-rendering: optimizeLegibility;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Fullscreen subtitle adjustments */
|
/* Firefox specific - Base styles */
|
||||||
:fullscreen .video-element::cue,
|
::-moz-cue {
|
||||||
.video-element:fullscreen::cue {
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
|
||||||
font-size: clamp(1.35rem, 2.4vw, 2.35rem);
|
font-size: 1.5rem !important;
|
||||||
padding: 0.55em 1.1em;
|
font-weight: 700 !important;
|
||||||
|
line-height: 1.5 !important;
|
||||||
|
color: #ffffff !important;
|
||||||
|
background-color: rgba(0, 0, 0, 0.9) !important;
|
||||||
|
padding: 0.4em 0.8em !important;
|
||||||
|
border-radius: 6px !important;
|
||||||
|
text-shadow:
|
||||||
|
0 1px 2px rgba(0, 0, 0, 1),
|
||||||
|
0 2px 8px rgba(0, 0, 0, 0.8) !important;
|
||||||
|
white-space: pre-line !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Ensure text tracks are properly positioned - above controls */
|
video::-moz-cue {
|
||||||
.video-element::-webkit-media-text-track-container {
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
|
||||||
overflow: visible !important;
|
font-size: 1.5rem !important;
|
||||||
position: absolute !important;
|
font-weight: 700 !important;
|
||||||
bottom: 0 !important;
|
line-height: 1.5 !important;
|
||||||
left: 0 !important;
|
color: #ffffff !important;
|
||||||
right: 0 !important;
|
background-color: rgba(0, 0, 0, 0.9) !important;
|
||||||
z-index: var(--player-z-subtitle) !important;
|
padding: 0.4em 0.8em !important;
|
||||||
display: flex !important;
|
border-radius: 6px !important;
|
||||||
flex-direction: column !important;
|
text-shadow:
|
||||||
justify-content: flex-end !important;
|
0 1px 2px rgba(0, 0, 0, 1),
|
||||||
align-items: center !important;
|
0 2px 8px rgba(0, 0, 0, 0.8) !important;
|
||||||
padding-bottom: var(--player-subtitle-bottom-offset) !important;
|
white-space: pre-line !important;
|
||||||
padding-bottom: calc(var(--player-subtitle-bottom-offset) + env(safe-area-inset-bottom)) !important;
|
|
||||||
pointer-events: none !important;
|
|
||||||
gap: 12px !important;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.video-element::-webkit-media-text-track-display {
|
.video-element::-moz-cue {
|
||||||
overflow: visible !important;
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
|
||||||
width: 100% !important;
|
font-size: 1.5rem !important;
|
||||||
max-width: var(--player-subtitle-max-width, 88%) !important;
|
font-weight: 700 !important;
|
||||||
text-align: center !important;
|
line-height: 1.5 !important;
|
||||||
|
color: #ffffff !important;
|
||||||
|
background-color: rgba(0, 0, 0, 0.9) !important;
|
||||||
|
padding: 0.4em 0.8em !important;
|
||||||
|
border-radius: 6px !important;
|
||||||
|
text-shadow:
|
||||||
|
0 1px 2px rgba(0, 0, 0, 1),
|
||||||
|
0 2px 8px rgba(0, 0, 0, 0.8) !important;
|
||||||
|
white-space: pre-line !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Multi-line subtitle support */
|
/* ==================== TEXT FORMATTING ==================== */
|
||||||
.video-element::cue-region {
|
|
||||||
width: min(var(--player-subtitle-max-width, 88%), 60ch);
|
::cue(b), ::cue(strong) {
|
||||||
margin: 0 auto;
|
font-weight: 900 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Better contrast for different cue types */
|
::cue(i), ::cue(em) {
|
||||||
.video-element::cue(b) {
|
font-style: italic !important;
|
||||||
font-weight: 900;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.video-element::cue(i) {
|
::cue(u) {
|
||||||
font-style: italic;
|
text-decoration: underline !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-element::cue(b),
|
||||||
|
.video-element::cue(strong) {
|
||||||
|
font-weight: 900 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-element::cue(i),
|
||||||
|
.video-element::cue(em) {
|
||||||
|
font-style: italic !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.video-element::cue(u) {
|
.video-element::cue(u) {
|
||||||
text-decoration: underline;
|
text-decoration: underline !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Responsive adjustments */
|
/* Firefox text formatting */
|
||||||
@media (max-width: 640px) {
|
::-moz-cue(b), ::-moz-cue(strong) {
|
||||||
|
font-weight: 900 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-moz-cue(i), ::-moz-cue(em) {
|
||||||
|
font-style: italic !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-moz-cue(u) {
|
||||||
|
text-decoration: underline !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ==================== CHROMIUM POSITIONING ==================== */
|
||||||
|
|
||||||
|
/* Container - Chromium */
|
||||||
|
.video-element::-webkit-media-text-track-container {
|
||||||
|
position: absolute !important;
|
||||||
|
bottom: 40px !important;
|
||||||
|
left: 0 !important;
|
||||||
|
right: 0 !important;
|
||||||
|
width: 100% !important;
|
||||||
|
height: auto !important;
|
||||||
|
|
||||||
|
display: flex !important;
|
||||||
|
flex-direction: column !important;
|
||||||
|
align-items: center !important;
|
||||||
|
justify-content: center !important;
|
||||||
|
|
||||||
|
padding: 0 !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
|
||||||
|
overflow: visible !important;
|
||||||
|
z-index: 10 !important;
|
||||||
|
pointer-events: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Display wrapper - Chromium */
|
||||||
|
.video-element::-webkit-media-text-track-display {
|
||||||
|
width: 100% !important;
|
||||||
|
max-width: 100% !important;
|
||||||
|
|
||||||
|
display: flex !important;
|
||||||
|
flex-direction: column !important;
|
||||||
|
align-items: center !important;
|
||||||
|
justify-content: center !important;
|
||||||
|
|
||||||
|
margin: 0 !important;
|
||||||
|
padding: 0 20px !important;
|
||||||
|
|
||||||
|
text-align: center !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ==================== FIREFOX POSITIONING ==================== */
|
||||||
|
|
||||||
|
/* Firefox - Position subtitles using video wrapper approach */
|
||||||
|
@-moz-document url-prefix() {
|
||||||
|
.video-container {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-element {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Firefox subtitle container positioning */
|
||||||
.video-element::cue {
|
.video-element::cue {
|
||||||
font-size: clamp(1rem, 3.4vw, 1.35rem);
|
position: relative;
|
||||||
padding: 0.35em 0.75em;
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Firefox - Use text track display positioning */
|
||||||
|
video::-moz-text-track-display {
|
||||||
|
position: absolute !important;
|
||||||
|
bottom: 40px !important;
|
||||||
|
left: 0 !important;
|
||||||
|
right: 0 !important;
|
||||||
|
width: 100% !important;
|
||||||
|
|
||||||
|
display: flex !important;
|
||||||
|
flex-direction: column !important;
|
||||||
|
align-items: center !important;
|
||||||
|
justify-content: center !important;
|
||||||
|
|
||||||
|
padding: 0 20px !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
|
||||||
|
text-align: center !important;
|
||||||
|
z-index: 10 !important;
|
||||||
|
pointer-events: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-element::-moz-text-track-display {
|
||||||
|
position: absolute !important;
|
||||||
|
bottom: 40px !important;
|
||||||
|
left: 0 !important;
|
||||||
|
right: 0 !important;
|
||||||
|
width: 100% !important;
|
||||||
|
|
||||||
|
display: flex !important;
|
||||||
|
flex-direction: column !important;
|
||||||
|
align-items: center !important;
|
||||||
|
justify-content: center !important;
|
||||||
|
|
||||||
|
padding: 0 20px !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
|
||||||
|
text-align: center !important;
|
||||||
|
z-index: 10 !important;
|
||||||
|
pointer-events: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ==================== FULLSCREEN ==================== */
|
||||||
|
|
||||||
|
.video-element:fullscreen::cue,
|
||||||
|
:fullscreen .video-element::cue {
|
||||||
|
font-size: 2rem !important;
|
||||||
|
padding: 0.5em 1em !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-moz-cue:fullscreen,
|
||||||
|
video:fullscreen::-moz-cue,
|
||||||
|
.video-element:fullscreen::-moz-cue,
|
||||||
|
:fullscreen ::-moz-cue,
|
||||||
|
:fullscreen video::-moz-cue,
|
||||||
|
:fullscreen .video-element::-moz-cue {
|
||||||
|
font-size: 2rem !important;
|
||||||
|
padding: 0.5em 1em !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-element:fullscreen::-webkit-media-text-track-container,
|
||||||
|
:fullscreen .video-element::-webkit-media-text-track-container {
|
||||||
|
bottom: 120px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
video:fullscreen::-moz-text-track-display,
|
||||||
|
.video-element:fullscreen::-moz-text-track-display,
|
||||||
|
:fullscreen video::-moz-text-track-display,
|
||||||
|
:fullscreen .video-element::-moz-text-track-display {
|
||||||
|
bottom: 120px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ==================== RESPONSIVE ==================== */
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
::cue,
|
||||||
|
.video-element::cue,
|
||||||
|
::-moz-cue,
|
||||||
|
video::-moz-cue,
|
||||||
|
.video-element::-moz-cue {
|
||||||
|
font-size: 1.35rem !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.video-element::-webkit-media-text-track-container {
|
.video-element::-webkit-media-text-track-container {
|
||||||
padding-bottom: 72px !important;
|
bottom: 80px !important;
|
||||||
padding-bottom: calc(72px + env(safe-area-inset-bottom)) !important;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
:fullscreen .video-element::cue,
|
video::-moz-text-track-display,
|
||||||
.video-element:fullscreen::cue {
|
.video-element::-moz-text-track-display {
|
||||||
font-size: clamp(1.2rem, 3.6vw, 1.8rem);
|
bottom: 80px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 640px) {
|
||||||
|
::cue,
|
||||||
|
.video-element::cue,
|
||||||
|
::-moz-cue,
|
||||||
|
video::-moz-cue,
|
||||||
|
.video-element::-moz-cue {
|
||||||
|
font-size: 1.15rem !important;
|
||||||
|
padding: 0.35em 0.7em !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-element::-webkit-media-text-track-container {
|
||||||
|
bottom: 80px !important;
|
||||||
|
padding: 0 12px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-element::-webkit-media-text-track-display {
|
||||||
|
max-width: 92% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
video::-moz-text-track-display,
|
||||||
|
.video-element::-moz-text-track-display {
|
||||||
|
bottom: 80px !important;
|
||||||
|
padding: 0 12px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 375px) {
|
||||||
|
::cue,
|
||||||
|
.video-element::cue,
|
||||||
|
::-moz-cue,
|
||||||
|
video::-moz-cue,
|
||||||
|
.video-element::-moz-cue {
|
||||||
|
font-size: 1rem !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-element::-webkit-media-text-track-container {
|
||||||
|
bottom: 60px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
video::-moz-text-track-display,
|
||||||
|
.video-element::-moz-text-track-display {
|
||||||
|
bottom: 60px !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
/* ============================================
|
||||||
|
VIDEO PLAYER - Main Container
|
||||||
|
============================================ */
|
||||||
|
|
||||||
.video-player {
|
.video-player {
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@@ -12,12 +16,40 @@
|
|||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.video-player *,
|
/* Apply box-sizing to all child elements */
|
||||||
.video-player *::before,
|
.video-player * {
|
||||||
.video-player *::after {
|
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Reset video element box-sizing to preserve native subtitle rendering */
|
||||||
|
.video-player video {
|
||||||
|
box-sizing: content-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ============================================
|
||||||
|
ASPECT RATIO - 16:9 Intrinsic Ratio
|
||||||
|
============================================ */
|
||||||
|
|
||||||
|
/* Use padding-top hack for aspect ratio */
|
||||||
|
.video-player::before {
|
||||||
|
content: '';
|
||||||
|
display: block;
|
||||||
|
padding-top: 56.25%; /* 16:9 aspect ratio */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Position all direct children absolutely within aspect ratio container */
|
||||||
|
.video-player > * {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ============================================
|
||||||
|
FULLSCREEN SUPPORT
|
||||||
|
============================================ */
|
||||||
|
|
||||||
.video-player:fullscreen {
|
.video-player:fullscreen {
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
@@ -38,22 +70,10 @@
|
|||||||
height: 100vh;
|
height: 100vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Aspect ratio container */
|
/* ============================================
|
||||||
.video-player::before {
|
NATIVE CONTROLS - Hide completely
|
||||||
content: '';
|
============================================ */
|
||||||
display: block;
|
|
||||||
padding-top: 56.25%; /* 16:9 aspect ratio */
|
|
||||||
}
|
|
||||||
|
|
||||||
.video-player > * {
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Remove default video controls */
|
|
||||||
.video-player video::-webkit-media-controls {
|
.video-player video::-webkit-media-controls {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
@@ -61,3 +81,13 @@
|
|||||||
.video-player video::-webkit-media-controls-enclosure {
|
.video-player video::-webkit-media-controls-enclosure {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.video-player video::-webkit-media-controls-panel {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Ensure subtitle text tracks are visible */
|
||||||
|
.video-player video::-webkit-media-text-track-container,
|
||||||
|
.video-player video::-webkit-media-text-track-display {
|
||||||
|
display: block !important;
|
||||||
|
}
|
||||||
|
|||||||
+48
-14
@@ -1,5 +1,11 @@
|
|||||||
|
/* ============================================
|
||||||
|
VIDEO PLAYER - CSS Custom Properties
|
||||||
|
============================================ */
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
/* Colors - Red Theme */
|
/* ==================== COLORS ==================== */
|
||||||
|
|
||||||
|
/* Primary Theme - Red */
|
||||||
--player-primary: #ef4444;
|
--player-primary: #ef4444;
|
||||||
--player-primary-hover: #dc2626;
|
--player-primary-hover: #dc2626;
|
||||||
--player-primary-active: #b91c1c;
|
--player-primary-active: #b91c1c;
|
||||||
@@ -15,58 +21,86 @@
|
|||||||
--player-text: #ffffff;
|
--player-text: #ffffff;
|
||||||
--player-text-secondary: #d1d5db;
|
--player-text-secondary: #d1d5db;
|
||||||
--player-text-muted: #9ca3af;
|
--player-text-muted: #9ca3af;
|
||||||
--player-subtitle-color: #f9fafb;
|
|
||||||
--player-subtitle-bg: rgba(15, 15, 18, 0.78);
|
|
||||||
--player-subtitle-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
|
|
||||||
--player-subtitle-max-width: 88%;
|
|
||||||
--player-subtitle-bottom-offset: clamp(88px, 11vh, 160px);
|
|
||||||
|
|
||||||
/* Border & Divider */
|
/* Border & Divider */
|
||||||
--player-border: #374151;
|
--player-border: #374151;
|
||||||
--player-divider: rgba(255, 255, 255, 0.1);
|
--player-divider: rgba(255, 255, 255, 0.1);
|
||||||
|
|
||||||
/* Buffered & Progress */
|
/* Progress Bar */
|
||||||
--player-buffered: rgba(239, 68, 68, 0.3);
|
--player-buffered: rgba(239, 68, 68, 0.3);
|
||||||
--player-progress-bg: rgba(255, 255, 255, 0.3);
|
--player-progress-bg: rgba(255, 255, 255, 0.3);
|
||||||
|
|
||||||
/* Shadows */
|
/* ==================== SUBTITLES ==================== */
|
||||||
|
|
||||||
|
/* Subtitle Appearance */
|
||||||
|
--player-subtitle-color: #f9fafb;
|
||||||
|
--player-subtitle-bg: rgba(15, 15, 18, 0.78);
|
||||||
|
--player-subtitle-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
|
||||||
|
--player-subtitle-max-width: 88%;
|
||||||
|
|
||||||
|
/* Subtitle Positioning
|
||||||
|
CRITICAL: This value MUST be larger than the controls bar height
|
||||||
|
to prevent subtitles from overlapping with controls.
|
||||||
|
|
||||||
|
Controls height calculation:
|
||||||
|
- Progress bar: ~20px
|
||||||
|
- Progress margin-bottom: 14px (--player-spacing-md)
|
||||||
|
- Controls padding-top: 28px (--player-spacing-xl)
|
||||||
|
- Controls padding-bottom: 20px (--player-spacing-lg)
|
||||||
|
- Controls row (buttons): ~36-40px
|
||||||
|
- Total: ~118-122px
|
||||||
|
|
||||||
|
We use 132px minimum (122px + 10px safety margin)
|
||||||
|
*/
|
||||||
|
--player-subtitle-bottom-offset: clamp(132px, 13vh, 180px);
|
||||||
|
|
||||||
|
/* ==================== SHADOWS ==================== */
|
||||||
|
|
||||||
--player-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
--player-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
||||||
--player-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
--player-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
||||||
--player-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
|
--player-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
|
||||||
|
|
||||||
/* Transitions */
|
/* ==================== TRANSITIONS ==================== */
|
||||||
|
|
||||||
--player-transition-fast: 150ms;
|
--player-transition-fast: 150ms;
|
||||||
--player-transition-normal: 250ms;
|
--player-transition-normal: 250ms;
|
||||||
--player-transition-slow: 400ms;
|
--player-transition-slow: 400ms;
|
||||||
|
|
||||||
/* Z-index */
|
/* ==================== Z-INDEX LAYERS ==================== */
|
||||||
|
|
||||||
--player-z-video: 1;
|
--player-z-video: 1;
|
||||||
--player-z-subtitle: 10;
|
--player-z-subtitle: 10;
|
||||||
--player-z-controls: 20;
|
--player-z-controls: 20;
|
||||||
--player-z-menu: 30;
|
--player-z-menu: 30;
|
||||||
--player-z-loading: 40;
|
--player-z-loading: 40;
|
||||||
|
|
||||||
/* Spacing */
|
/* ==================== SPACING ==================== */
|
||||||
|
|
||||||
--player-spacing-xs: 6px;
|
--player-spacing-xs: 6px;
|
||||||
--player-spacing-sm: 10px;
|
--player-spacing-sm: 10px;
|
||||||
--player-spacing-md: 14px;
|
--player-spacing-md: 14px;
|
||||||
--player-spacing-lg: 20px;
|
--player-spacing-lg: 20px;
|
||||||
--player-spacing-xl: 28px;
|
--player-spacing-xl: 28px;
|
||||||
|
|
||||||
/* Border Radius */
|
/* ==================== BORDER RADIUS ==================== */
|
||||||
|
|
||||||
--player-radius-sm: 4px;
|
--player-radius-sm: 4px;
|
||||||
--player-radius-md: 6px;
|
--player-radius-md: 6px;
|
||||||
--player-radius-lg: 8px;
|
--player-radius-lg: 8px;
|
||||||
--player-radius-full: 9999px;
|
--player-radius-full: 9999px;
|
||||||
|
|
||||||
/* Icon Sizes */
|
/* ==================== ICON SIZES ==================== */
|
||||||
|
|
||||||
--player-icon-sm: 20px;
|
--player-icon-sm: 20px;
|
||||||
--player-icon-md: 28px;
|
--player-icon-md: 28px;
|
||||||
--player-icon-lg: 36px;
|
--player-icon-lg: 36px;
|
||||||
--player-icon-xl: 56px;
|
--player-icon-xl: 56px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Animations */
|
/* ============================================
|
||||||
|
ANIMATIONS
|
||||||
|
============================================ */
|
||||||
|
|
||||||
@keyframes spin {
|
@keyframes spin {
|
||||||
from {
|
from {
|
||||||
transform: rotate(0deg);
|
transform: rotate(0deg);
|
||||||
|
|||||||
Reference in New Issue
Block a user