mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 15:01:28 +12:00
GUI/Themes: Fix GameList Toolbar Icon Color
Similar to previous fix. Current approach was incorrectly using background-color instead of color. Applies to: Kuroi, Darker Style, ModernBlue
This commit is contained in:
parent
fb3dee0f3e
commit
c951601fa4
3 changed files with 8 additions and 8 deletions
|
@ -68,13 +68,13 @@ QCheckBox::indicator {
|
||||||
margin-top: 0.0625em;
|
margin-top: 0.0625em;
|
||||||
}
|
}
|
||||||
QCheckBox::indicator:checked {
|
QCheckBox::indicator:checked {
|
||||||
background-color: #FFF; /* Green */
|
background-color: #FFF; /* White */
|
||||||
}
|
}
|
||||||
QCheckBox::indicator:unchecked {
|
QCheckBox::indicator:unchecked {
|
||||||
background-color: #000; /* Red */
|
background-color: #000; /* Black */
|
||||||
}
|
}
|
||||||
QCheckBox::indicator::disabled {
|
QCheckBox::indicator::disabled {
|
||||||
background-color: #af4949; /* Gray */
|
background-color: #af4949; /* Red */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Radio Buttons */
|
/* Radio Buttons */
|
||||||
|
@ -245,7 +245,7 @@ QLabel#gamelist_icon_background_color {
|
||||||
color: transparent;
|
color: transparent;
|
||||||
}
|
}
|
||||||
QLabel#gamelist_toolbar_icon_color {
|
QLabel#gamelist_toolbar_icon_color {
|
||||||
background-color: #252525;
|
color: #828790;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Set Windows Taskbar Thumbnail colors */
|
/* Set Windows Taskbar Thumbnail colors */
|
||||||
|
@ -313,11 +313,11 @@ QLabel#memory_viewer_address_panel {
|
||||||
background-color: #131313;
|
background-color: #131313;
|
||||||
}
|
}
|
||||||
QLabel#memory_viewer_hex_panel {
|
QLabel#memory_viewer_hex_panel {
|
||||||
color: #FFF; /* Font Color: Grey */
|
color: #FFF; /* Font Color: White */
|
||||||
background-color: #131313;
|
background-color: #131313;
|
||||||
}
|
}
|
||||||
QLabel#memory_viewer_ascii_panel {
|
QLabel#memory_viewer_ascii_panel {
|
||||||
color: #FFF; /* Font Color: Grey */
|
color: #FFF; /* Font Color: White */
|
||||||
background-color: #131313;
|
background-color: #131313;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -244,7 +244,7 @@ QLabel#gamelist_icon_background_color {
|
||||||
color: transparent;
|
color: transparent;
|
||||||
}
|
}
|
||||||
QLabel#gamelist_toolbar_icon_color {
|
QLabel#gamelist_toolbar_icon_color {
|
||||||
background-color: #e3e3e3;
|
color: #828790;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Set Windows Taskbar Thumbnail colors */
|
/* Set Windows Taskbar Thumbnail colors */
|
||||||
|
|
|
@ -242,7 +242,7 @@ QLabel#gamelist_icon_background_color {
|
||||||
color: transparent;
|
color: transparent;
|
||||||
}
|
}
|
||||||
QLabel#gamelist_toolbar_icon_color {
|
QLabel#gamelist_toolbar_icon_color {
|
||||||
background-color: #252525;
|
color: #828790;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Set Windows Taskbar Thumbnail colors */
|
/* Set Windows Taskbar Thumbnail colors */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue