stylesheets: make toolbar styles more accessible

This commit is contained in:
Megamouse 2017-08-15 22:59:40 +02:00 committed by Ani
parent a18fddb831
commit a0176775ff
7 changed files with 26 additions and 64 deletions

View file

@ -287,7 +287,11 @@ void rpcs3_app::OnChangeStyleSheetRequest(const QString& sheetFilePath)
QFile file(sheetFilePath);
if (sheetFilePath == "")
{
setStyleSheet("QWidget#header_section {background-color: #ffffff}");
setStyleSheet(
"QWidget#header_section { background-color: #ffffff; }"
"QLineEdit#mw_searchbar { margin-left:14px; }"
"QLineEdit#tb_searchbar { background: transparent; }"
);
}
else if (file.open(QIODevice::ReadOnly | QIODevice::Text))
{