mirror of
https://github.com/p-stream/p-stream.git
synced 2026-01-11 20:10:32 +00:00
Bring back comments
This commit is contained in:
parent
d4f705c599
commit
2718de34eb
2 changed files with 4 additions and 1 deletions
|
|
@ -428,15 +428,18 @@ input[type="range"].styled-slider.slider-progress::-ms-fill-lower {
|
|||
@apply brightness-[500];
|
||||
}
|
||||
|
||||
/* Image fade-in on load */
|
||||
img:not(.no-fade):not([src=""]) {
|
||||
opacity: 0;
|
||||
transition: opacity 0.8s ease-in-out;
|
||||
}
|
||||
|
||||
/* Fade in when image has loaded class */
|
||||
img.loaded:not(.no-fade) {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* For images that are already cached/loaded, show them immediately */
|
||||
img[complete]:not(.no-fade):not([src=""]) {
|
||||
opacity: 1;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -411,7 +411,7 @@ export function CaptionsView({
|
|||
};
|
||||
|
||||
try {
|
||||
await navigator.clipboard.writeText(JSON.stringify(copyData, null, 2));
|
||||
await navigator.clipboard.writeText(JSON.stringify(copyData));
|
||||
// Could add a toast notification here if needed
|
||||
} catch (err) {
|
||||
console.error("Failed to copy subtitle data:", err);
|
||||
|
|
|
|||
Loading…
Reference in a new issue