Merge ui-mix-visualizer into dev (footer above waveform backdrop; zoom slider to top)
This commit is contained in:
@@ -21,12 +21,14 @@
|
|||||||
-webkit-backdrop-filter: blur(2px);
|
-webkit-backdrop-filter: blur(2px);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Zoom slider — a small viewing control pinned to the bottom-right. Pointer events are re-enabled
|
/* Zoom slider — a small viewing control pinned to the top-right, clear of the player bar at
|
||||||
here only (the backdrop stays inert), and it is never a seek surface. */
|
the bottom and the nav bar at the top. Pointer events are re-enabled here only (the backdrop
|
||||||
|
stays inert), and it is never a seek surface. top: 5rem sits just below the fixed nav bar
|
||||||
|
(~4.5rem tall) so neither the expanded player bar nor the nav occludes it. */
|
||||||
.mix-waveform-zoom {
|
.mix-waveform-zoom {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 1.5rem;
|
right: 1.5rem;
|
||||||
bottom: 1.5rem;
|
top: 5rem;
|
||||||
width: 180px;
|
width: 180px;
|
||||||
max-width: 40vw;
|
max-width: 40vw;
|
||||||
pointer-events: auto;
|
pointer-events: auto;
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
.deepdrft-footer {
|
.deepdrft-footer {
|
||||||
|
/* position:relative + z-index:1 creates a stacking context that paints above the
|
||||||
|
MixWaveformVisualizer backdrop (z-index:0), keeping footer text fully legible. */
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
background: var(--deepdrft-white);
|
background: var(--deepdrft-white);
|
||||||
border-top: 1px solid var(--deepdrft-border);
|
border-top: 1px solid var(--deepdrft-border);
|
||||||
padding: 3rem;
|
padding: 3rem;
|
||||||
|
|||||||
Reference in New Issue
Block a user