From 054732210eee2f9ac8f3d026aa8e94ddc94590cf Mon Sep 17 00:00:00 2001 From: Kyle Kienapfel Date: Wed, 1 Jun 2022 00:59:58 -0700 Subject: ui: Status bars dock button becomes dock/undock button For people not used to the Yuzu UI it's not always clear if the emulated console is docked or not. The other items update their text when clicked, this PR brings the DOCK button in line with this. DOCK -> DOCKED or HANDHELD --- dist/qt_themes/default/style.qss | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'dist/qt_themes/default') diff --git a/dist/qt_themes/default/style.qss b/dist/qt_themes/default/style.qss index f0908a7f1..12e681648 100644 --- a/dist/qt_themes/default/style.qss +++ b/dist/qt_themes/default/style.qss @@ -58,6 +58,19 @@ QPushButton#GPUStatusBarButton:!checked { color: #109010; } +QPushButton#DockingStatusBarButton { + min-width: 0px; + color: #000000; + border: 1px solid transparent; + background-color: transparent; + padding: 0px 3px 0px 3px; + text-align: center; +} + +QPushButton#DockingStatusBarButton:hover { + border: 1px solid #76797C; +} + QPushButton#buttonRefreshDevices { min-width: 21px; min-height: 21px; -- cgit v1.2.3