Skip to content

Commit

Permalink
GUI/Themes: Fix GameList Toolbar Icon Color
Browse files Browse the repository at this point in the history
Similar to previous fix.

Current approach was incorrectly using background-color instead of color.

Applies to: Kuroi, Darker Style, ModernBlue
  • Loading branch information
AniLeo committed Jan 13, 2018
1 parent fb3dee0 commit c951601
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions bin/GuiConfigs/Darker Style by TheMitoSan.qss
Expand Up @@ -68,13 +68,13 @@ QCheckBox::indicator {
margin-top: 0.0625em;
}
QCheckBox::indicator:checked {
background-color: #FFF; /* Green */
background-color: #FFF; /* White */
}
QCheckBox::indicator:unchecked {
background-color: #000; /* Red */
background-color: #000; /* Black */
}
QCheckBox::indicator::disabled {
background-color: #af4949; /* Gray */
background-color: #af4949; /* Red */
}

/* Radio Buttons */
Expand Down Expand Up @@ -245,7 +245,7 @@ QLabel#gamelist_icon_background_color {
color: transparent;
}
QLabel#gamelist_toolbar_icon_color {
background-color: #252525;
color: #828790;
}

/* Set Windows Taskbar Thumbnail colors */
Expand Down Expand Up @@ -313,11 +313,11 @@ QLabel#memory_viewer_address_panel {
background-color: #131313;
}
QLabel#memory_viewer_hex_panel {
color: #FFF; /* Font Color: Grey */
color: #FFF; /* Font Color: White */
background-color: #131313;
}
QLabel#memory_viewer_ascii_panel {
color: #FFF; /* Font Color: Grey */
color: #FFF; /* Font Color: White */
background-color: #131313;
}

Expand Down
2 changes: 1 addition & 1 deletion bin/GuiConfigs/Kuroi (Dark) by Ani.qss
Expand Up @@ -244,7 +244,7 @@ QLabel#gamelist_icon_background_color {
color: transparent;
}
QLabel#gamelist_toolbar_icon_color {
background-color: #e3e3e3;
color: #828790;
}

/* Set Windows Taskbar Thumbnail colors */
Expand Down
2 changes: 1 addition & 1 deletion bin/GuiConfigs/ModernBlue Theme by TheMitoSan.qss
Expand Up @@ -242,7 +242,7 @@ QLabel#gamelist_icon_background_color {
color: transparent;
}
QLabel#gamelist_toolbar_icon_color {
background-color: #252525;
color: #828790;
}

/* Set Windows Taskbar Thumbnail colors */
Expand Down

0 comments on commit c951601

Please sign in to comment.