diff options
| author | oldmud0 <oldmud0@users.noreply.github.com> | 2021-06-08 22:50:32 -0500 |
|---|---|---|
| committer | oldmud0 <oldmud0@users.noreply.github.com> | 2021-06-08 22:50:32 -0500 |
| commit | 2cb7ca7895e72f603ac2283da656377217d281c6 (patch) | |
| tree | 1c28e5774abb411236a61b9c562192c135f5114d /src/lobby.cpp | |
| parent | dcce1750525d0cca21ebaa7a65c1abc2ff36123c (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.cpp | 6 |
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) |
