fix(ui): remove theme selector from suite layout and projector

This commit is contained in:
Rodrigo Rodriguez 2026-02-18 20:52:11 +00:00
parent a3747a794f
commit ea8003e213
2 changed files with 1189 additions and 1193 deletions

View file

@ -48,16 +48,14 @@
</button>
<div class="progress-container">
<input type="range" class="progress-bar" id="progress-bar"
min="0" max="100" value="0"
<input type="range" class="progress-bar" id="progress-bar" min="0" max="100" value="0"
oninput="seekTo(this.value)">
<span class="time-display" id="time-display">0:00 / 0:00</span>
</div>
<button class="control-btn" onclick="toggleMute()" id="mute-btn" title="Mute">
🔊
</button>
<input type="range" class="volume-slider" id="volume-slider"
min="0" max="100" value="100"
<input type="range" class="volume-slider" id="volume-slider" min="0" max="100" value="100"
oninput="setVolume(this.value)">
<button class="control-btn" onclick="toggleLoop()" id="loop-btn" title="Loop">
🔁
@ -82,8 +80,7 @@
▶️
</button>
<div class="slide-nav">
<input type="number" id="slide-input" min="1" value="1"
onchange="goToSlide(this.value)">
<input type="number" id="slide-input" min="1" value="1" onchange="goToSlide(this.value)">
</div>
<button class="control-btn" onclick="zoomIn()" title="Zoom In">
🔍+
@ -126,12 +123,7 @@
<button class="control-btn" onclick="toggleWordWrap()" title="Word Wrap">
↩️
</button>
<select class="theme-select" id="theme-select" onchange="setCodeTheme(this.value)">
<option value="dark">Dark</option>
<option value="light">Light</option>
<option value="monokai">Monokai</option>
<option value="github">GitHub</option>
</select>
<button class="control-btn" onclick="copyCode()" title="Copy">
📋
</button>
@ -161,8 +153,13 @@
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Container */
@ -277,7 +274,9 @@
}
@keyframes spin {
to { transform: rotate(360deg); }
to {
transform: rotate(360deg);
}
}
/* Video Player */

View file

@ -51,10 +51,7 @@
<!-- Right: Theme selector, Apps menu and user avatar -->
<div class="header-right">
<!-- Theme dropdown selector -->
<div
id="themeSelectorContainer"
aria-label="Theme selector"
></div>
<!-- Apps menu button -->
<button