diff --git a/wgp.py b/wgp.py index 21e8a1f..31a5daf 100644 --- a/wgp.py +++ b/wgp.py @@ -2545,7 +2545,21 @@ def refresh_gallery(state): #, msg for img_uri in list_uri: thumbnails += f'Start' - html = "" + thumbnails + "
" + prompt + "
" + # Get current theme from server config + current_theme = server_config.get("UI_theme", "default") + + # Use minimal, adaptive styling that blends with any background + # This creates a subtle container that doesn't interfere with the page's theme + table_style = """ + border: 1px solid rgba(128, 128, 128, 0.3); + background-color: transparent; + color: inherit; + padding: 8px; + border-radius: 6px; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); + """ + + html = f"" + thumbnails + "
" + prompt + "
" html_output = gr.HTML(html, visible= True) return gr.Gallery(selected_index=choice, value = file_list), html_output, gr.Button(visible=False), gr.Button(visible=True), gr.Row(visible=True), update_queue_data(queue), gr.Button(interactive= abort_interactive), gr.Button(visible= onemorewindow_visible)