opus-react 0.6.11 → 0.6.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2407 -2250
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +66 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +22 -2
- package/dist/index.d.ts +22 -2
- package/dist/index.js +2468 -2303
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -12670,6 +12670,72 @@ button.opus_7Zs_d5_docCard:hover, .opus_7Zs_d5_docCard[data-kind="folder"]:hover
|
|
|
12670
12670
|
}
|
|
12671
12671
|
}
|
|
12672
12672
|
|
|
12673
|
+
/* components/VideoPlayer/PersistentVideoPlayer.module.css */
|
|
12674
|
+
.opus_ljs66P_anchor {
|
|
12675
|
+
aspect-ratio: 16 / 9;
|
|
12676
|
+
width: 100%;
|
|
12677
|
+
min-width: 0;
|
|
12678
|
+
min-height: 180px;
|
|
12679
|
+
}
|
|
12680
|
+
|
|
12681
|
+
.opus_ljs66P_surface {
|
|
12682
|
+
z-index: 500;
|
|
12683
|
+
min-width: 0;
|
|
12684
|
+
min-height: 0;
|
|
12685
|
+
transition: width .22s, height .22s, right .22s, bottom .22s, box-shadow .22s;
|
|
12686
|
+
position: fixed;
|
|
12687
|
+
overflow: hidden;
|
|
12688
|
+
}
|
|
12689
|
+
|
|
12690
|
+
.opus_ljs66P_surface[data-mini="true"] {
|
|
12691
|
+
border: 1px solid color-mix(in srgb, var(--opus-accent) 52%, var(--opus-border));
|
|
12692
|
+
background: var(--opus-panel);
|
|
12693
|
+
box-shadow: 0 18px 48px #00000061,
|
|
12694
|
+
0 0 24px color-mix(in srgb, var(--opus-accent) 18%, transparent);
|
|
12695
|
+
border-radius: 12px;
|
|
12696
|
+
}
|
|
12697
|
+
|
|
12698
|
+
.opus_ljs66P_miniActions {
|
|
12699
|
+
z-index: 8;
|
|
12700
|
+
opacity: 0;
|
|
12701
|
+
gap: 4px;
|
|
12702
|
+
transition: opacity .16s;
|
|
12703
|
+
display: flex;
|
|
12704
|
+
position: absolute;
|
|
12705
|
+
top: 8px;
|
|
12706
|
+
right: 8px;
|
|
12707
|
+
}
|
|
12708
|
+
|
|
12709
|
+
.opus_ljs66P_surface[data-mini="true"]:hover .opus_ljs66P_miniActions, .opus_ljs66P_surface[data-mini="true"]:focus-within .opus_ljs66P_miniActions {
|
|
12710
|
+
opacity: 1;
|
|
12711
|
+
}
|
|
12712
|
+
|
|
12713
|
+
.opus_ljs66P_miniActions button {
|
|
12714
|
+
border: 1px solid color-mix(in srgb, var(--opus-accent) 38%, var(--opus-border));
|
|
12715
|
+
background: color-mix(in srgb, var(--opus-panel) 88%, transparent);
|
|
12716
|
+
width: 30px;
|
|
12717
|
+
height: 30px;
|
|
12718
|
+
color: var(--opus-text);
|
|
12719
|
+
cursor: pointer;
|
|
12720
|
+
border-radius: 7px;
|
|
12721
|
+
place-items: center;
|
|
12722
|
+
padding: 0;
|
|
12723
|
+
display: grid;
|
|
12724
|
+
box-shadow: 0 4px 14px #0000003d;
|
|
12725
|
+
}
|
|
12726
|
+
|
|
12727
|
+
.opus_ljs66P_miniActions button:hover, .opus_ljs66P_miniActions button:focus-visible {
|
|
12728
|
+
border-color: var(--opus-accent);
|
|
12729
|
+
color: var(--opus-accent);
|
|
12730
|
+
outline: none;
|
|
12731
|
+
}
|
|
12732
|
+
|
|
12733
|
+
@media (prefers-reduced-motion: reduce) {
|
|
12734
|
+
.opus_ljs66P_surface, .opus_ljs66P_miniActions {
|
|
12735
|
+
transition: none;
|
|
12736
|
+
}
|
|
12737
|
+
}
|
|
12738
|
+
|
|
12673
12739
|
/* components/AudioPlayer/AudioPlayer.module.css */
|
|
12674
12740
|
.opus_pJZZp1_player {
|
|
12675
12741
|
border: 1px solid var(--opus-border-strong);
|