Skip to content

Commit ad529ee

Browse files
committed
Fix overlay server mode routing
1 parent dba4269 commit ad529ee

5 files changed

Lines changed: 257 additions & 26 deletions

File tree

popup.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -888,7 +888,7 @@
888888
.chat-overlay-design-note {
889889
margin: 10px 0;
890890
padding: 10px;
891-
background: rgba(255,255,255,0.05);
891+
background: var(--options-group-background-color);
892892
border-radius: 8px;
893893
overflow: hidden;
894894
}
@@ -4710,7 +4710,7 @@ <h2 class="chat_overlay_template_title">
47104710
<label for="overlay-preset-select" style="display: inline-block; margin-right: 10px;">
47114711
<span>🎨 Select chat overlay template:</span>
47124712
</label>
4713-
<select id="overlay-preset-select" data-optionsetting="overlayPreset" style="padding: 5px 10px; border-radius: 4px; background: #333; color: #fff; border: 1px solid #555;">
4713+
<select id="overlay-preset-select" data-optionsetting="overlayPreset" style="padding: 5px 10px; border-radius: 4px; background: var(--color-accent-subtle); color: var(--default-text-color); border: 1px solid var(--collapsible-border-color);">
47144714
<option value="sampleoverlay.html">📄 Sample Overlay - Basic chat overlay</option>
47154715
<option value="themes/compact-classic.html">💬 Compact Classic - Dense Twitch/IRC-style chat</option>
47164716
<option value="themes/compact-classic.html?ultra">⚡ Compact Ultra - Super dense minimum-height chat</option>
@@ -4764,11 +4764,11 @@ <h2 class="featured_chat_title">
47644764
</div>
47654765

47664766
<!-- Featured Overlay Preset Selector -->
4767-
<div class="preset-selector" style="margin: 10px 0; padding: 10px; background: rgba(255,255,255,0.05); border-radius: 8px;">
4767+
<div class="preset-selector" style="margin: 10px 0; padding: 10px; background: var(--options-group-background-color); border-radius: 8px;">
47684768
<label for="featured-preset-select" style="display: inline-block; margin-right: 10px;">
47694769
<span data-translate="preset-style">🎨 Preset Style:</span>
47704770
</label>
4771-
<select id="featured-preset-select" data-optionsetting="featuredOverlayStyle" style="padding: 5px 10px; border-radius: 4px; background: #333; color: #fff; border: 1px solid #555;">
4771+
<select id="featured-preset-select" data-optionsetting="featuredOverlayStyle" style="padding: 5px 10px; border-radius: 4px; background: var(--color-accent-subtle); color: var(--default-text-color); border: 1px solid var(--collapsible-border-color);">
47724772
<option value="">Classic (Full Customization)</option>
47734773
<option value="themes/featured-styles/featured-modern.html?style=glass">Modern Glass</option>
47744774
<option value="themes/featured-styles/featured-modern.html?style=neon">Neon Glow</option>
@@ -13234,7 +13234,7 @@ <h3>🎛️ <span data-translate="common-overlay-options">Common Options</span><
1323413234
</div>
1323513235
<div style="margin-top:6px;">
1323613236
<label for="common-font-family" style="display:block; margin-bottom:4px;"><span data-translate="common-font-family">🔤 Font family</span></label>
13237-
<select id="common-font-family" data-optionparam30="fontfamily" style="padding: 5px 10px; border-radius: 4px; background: #333; color: #fff; border: 1px solid #555;">
13237+
<select id="common-font-family" data-optionparam30="fontfamily" style="padding: 5px 10px; border-radius: 4px; background: var(--color-accent-subtle); color: var(--default-text-color); border: 1px solid var(--collapsible-border-color);">
1323813238
<option value="">Theme default</option>
1323913239
<option value="Roboto">Roboto</option>
1324013240
<option value="Open Sans">Open Sans</option>
@@ -13320,7 +13320,7 @@ <h3>💬 <span data-translate="compact-overlay-options">Compact Chat Options</sp
1332013320
</div>
1332113321
<div style="margin-top:6px;">
1332213322
<label for="compact-font-family" style="display:block; margin-bottom:4px;"><span data-translate="compact-font-family">🔤 Font family</span></label>
13323-
<select id="compact-font-family" data-optionparam30="fontfamily" style="padding: 5px 10px; border-radius: 4px; background: #333; color: #fff; border: 1px solid #555;">
13323+
<select id="compact-font-family" data-optionparam30="fontfamily" style="padding: 5px 10px; border-radius: 4px; background: var(--color-accent-subtle); color: var(--default-text-color); border: 1px solid var(--collapsible-border-color);">
1332413324
<option value="">Default (Inter)</option>
1332513325
<option value="Roboto">Roboto</option>
1332613326
<option value="Open Sans">Open Sans</option>
@@ -13543,7 +13543,7 @@ <h3>🎯 <span data-translate="danmaku-options">Danmaku Bullet Chat Options</spa
1354313543
</div>
1354413544
<div style="margin-top:6px;">
1354513545
<label for="danmaku-region" style="display:block; margin-bottom:4px;"><span data-translate="danmaku-region">🖥️ Screen region</span></label>
13546-
<select id="danmaku-region" data-optionparam30="region" style="padding: 5px 10px; border-radius: 4px; background: #333; color: #fff; border: 1px solid #555;">
13546+
<select id="danmaku-region" data-optionparam30="region" style="padding: 5px 10px; border-radius: 4px; background: var(--color-accent-subtle); color: var(--default-text-color); border: 1px solid var(--collapsible-border-color);">
1354713547
<option value="">Full screen</option>
1354813548
<option value="top">Top half</option>
1354913549
<option value="bottom">Bottom half</option>
@@ -13620,11 +13620,11 @@ <h3>
1362013620
<div id="games" data-raw="" class="streaming_chat"><a href="" id="gameslink"></a></div>
1362113621

1362213622
<!-- Games Preset Selector -->
13623-
<div class="games-selector" style="margin: 10px 0; padding: 10px; background: rgba(255,255,255,0.05); border-radius: 8px;">
13623+
<div class="games-selector" style="margin: 10px 0; padding: 10px; background: var(--options-group-background-color); border-radius: 8px;">
1362413624
<label for="games-preset-select" style="display: inline-block; margin-right: 10px;">
1362513625
<span data-translate="select-game">🎯 Select Game:</span>
1362613626
</label>
13627-
<select id="games-preset-select" style="padding: 5px 10px; border-radius: 4px; background: #333; color: #fff; border: 1px solid #555;">
13627+
<select id="games-preset-select" style="padding: 5px 10px; border-radius: 4px; background: var(--color-accent-subtle); color: var(--default-text-color); border: 1px solid var(--collapsible-border-color);">
1362813628
<option value="">Choose a game...</option>
1362913629
<option value="games.html">⚡ Spam Power - Chat activity powered</option>
1363013630
<option value="battle.html">⚔️ Battlefield Mayhem - Automated chat combat</option>

0 commit comments

Comments
 (0)