aboutsummaryrefslogtreecommitdiff
path: root/src/lobby.cpp
diff options
context:
space:
mode:
authoroldmud0 <oldmud0@users.noreply.github.com>2021-06-08 22:50:32 -0500
committeroldmud0 <oldmud0@users.noreply.github.com>2021-06-08 22:50:32 -0500
commit2cb7ca7895e72f603ac2283da656377217d281c6 (patch)
tree1c28e5774abb411236a61b9c562192c135f5114d /src/lobby.cpp
parentdcce1750525d0cca21ebaa7a65c1abc2ff36123c (diff)
Move global stylesheet to lobby and courtroom
This way, it will not affect the options dialog.
Diffstat (limited to 'src/lobby.cpp')
-rw-r--r--src/lobby.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lobby.cpp b/src/lobby.cpp
index 5cdb94a3..31895d13 100644
--- a/src/lobby.cpp
+++ b/src/lobby.cpp
@@ -235,6 +235,12 @@ void Lobby::set_stylesheet(QWidget *widget)
void Lobby::set_stylesheets()
{
set_stylesheet(this);
+ this->setStyleSheet(
+ "QFrame { background-color:transparent; } "
+ "QAbstractItemView { background-color: transparent; color: black; } "
+ "QLineEdit { background-color:transparent; }"
+ + this->styleSheet()
+ );
}
void Lobby::set_font(QWidget *widget, QString p_identifier)