From 664d652e9e80faf4221758726780e9396ad27084 Mon Sep 17 00:00:00 2001 From: jknapp Date: Tue, 6 Jan 2026 11:48:45 -0800 Subject: [PATCH] Fix Copied! visibility and remove URL hover effect MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Use visible gray (#888888) for "Copied!" text - Remove hover color change from URL 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- gui/main_window.py | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/gui/main_window.py b/gui/main_window.py index 16dab76..4e18a5d 100644 --- a/gui/main_window.py +++ b/gui/main_window.py @@ -222,10 +222,6 @@ class MainWindow(QMainWindow): border: none; padding: 4px 8px; }} - QPushButton:hover {{ - color: {THEME['accent_color']}; - text-decoration: underline; - }} """) self.ip_label.clicked.connect(self.copy_url_to_clipboard) self.update_ip_label() @@ -479,13 +475,13 @@ class MainWindow(QMainWindow): # Show "Copied!" feedback with dimmed style self.ip_label.setText("Copied!") - self.ip_label.setStyleSheet(f""" - QPushButton {{ + self.ip_label.setStyleSheet(""" + QPushButton { background-color: transparent; - color: {THEME['highlight_color']}; + color: #888888; border: none; padding: 4px 8px; - }} + } """) # Restore original URL after delay @@ -500,10 +496,6 @@ class MainWindow(QMainWindow): border: none; padding: 4px 8px; }} - QPushButton:hover {{ - color: {THEME['accent_color']}; - text-decoration: underline; - }} """) self.update_ip_label()