Skip to content

Commit

Permalink
GUI/Themes: Fix GameList Icon Backgrounds
Browse files Browse the repository at this point in the history
Current approach was incorrectly using the background-color property instead of color.
Using transparent color, allowing for the icon's background to be the theme's background works with darker colors, as PS3 game icons are generally made for these kind of backgrounds.

Applies to: Kuroi, Darker Style, ModernBlue
  • Loading branch information
AniLeo committed Jan 13, 2018
1 parent 5959411 commit fb3dee0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/GuiConfigs/Darker Style by TheMitoSan.qss
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ QToolButton::hover {

/* Set Theme UI colors */
QLabel#gamelist_icon_background_color {
background-color: #262626;
color: transparent;
}
QLabel#gamelist_toolbar_icon_color {
background-color: #252525;
Expand Down
2 changes: 1 addition & 1 deletion bin/GuiConfigs/Kuroi (Dark) by Ani.qss
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ QToolButton::hover {

/* Set Theme UI colors */
QLabel#gamelist_icon_background_color {
background-color: #323232;
color: transparent;
}
QLabel#gamelist_toolbar_icon_color {
background-color: #e3e3e3;
Expand Down
2 changes: 1 addition & 1 deletion bin/GuiConfigs/ModernBlue Theme by TheMitoSan.qss
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ QToolButton::hover {

/* Set Theme UI colors */
QLabel#gamelist_icon_background_color {
background-color: #262626;
color: transparent;
}
QLabel#gamelist_toolbar_icon_color {
background-color: #252525;
Expand Down

0 comments on commit fb3dee0

Please sign in to comment.