diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2025-07-19 13:06:16 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-19 13:06:16 +0200 |
| commit | 2da774b2f7aa42fcb613a0f9a2e8cc4e8a037733 (patch) | |
| tree | 0b1da2adb68c9d0122ba75835ef748b99e20d411 /Source | |
| parent | b2b2808d014fec0c8510ebbf6e91c850c7417925 (diff) | |
| parent | 3bd110a2105740824a0c3a706c8bfba6dd4c4f9a (diff) | |
Merge pull request #13811 from TryTwo/Update_darkmode
Darkmode qtoolbuttons and checked state.
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/DolphinQt/Styles/Dark/dark.qss | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/Styles/Dark/dark.qss b/Source/Core/DolphinQt/Styles/Dark/dark.qss index 4ef591c1ee..028df3b142 100644 --- a/Source/Core/DolphinQt/Styles/Dark/dark.qss +++ b/Source/Core/DolphinQt/Styles/Dark/dark.qss @@ -172,12 +172,19 @@ QDockWidget { titlebar-normal-icon: url(:/dolphin_dark_win/dockwidget-undock.svg); } -QPushButton, QToolButton { +QPushButton { background-color: #303030; border: 1px solid #7e7e7e; padding: 2px; min-width: 67px; } +QToolButton { + background-color: #303030; + border: 1px solid #7e7e7e; + padding: 2px; + min-width: 24px; + min-height: 16px; +} QPushButton:hover, QToolButton:hover { background-color: #404040; } @@ -187,6 +194,9 @@ QPushButton:focus, QToolButton:focus { QPushButton:disabled, QToolButton:disabled { background-color: #505050; } +QPushButton:checked, QToolButton:checked { + background-color: #101010; +} /* the dropdownarrow on the right of the button in menu popup mode */ QToolButton[popupMode="1"] { |
