diff --git a/AO2XPbase/ao2xp_themes/dark/courtroom_stylesheets.css b/AO2XPbase/ao2xp_themes/dark/courtroom_stylesheets.css index 28934f5..bc93acb 100644 --- a/AO2XPbase/ao2xp_themes/dark/courtroom_stylesheets.css +++ b/AO2XPbase/ao2xp_themes/dark/courtroom_stylesheets.css @@ -1,7 +1,10 @@ QMainWindow, QSlider, QCheckBox, QLabel#lblMusicVolume, QLabel#lblSoundVolume, QLabel#lblBlipsVolume, QLabel#lblNotMuted, QLabel#lblMuted, QLabel#lblIniSwapInfo, QLabel#lblPairOffset, -QLabel#lblPairOffsetY, QLabel#lblPairOrder +QLabel#lblPairOffsetY, QLabel#lblPairOrder, QWidget#tabLog, +QWidget#tabEvidence, QWidget#tabMute, QWidget#tabIniSwap, +QWidget#tabPair, QWidget#tabMisc, QWidget#tabQueue, QWidget#tabMusic, +QWidget#tabPlayers, QWidget#tabBackgrounds { color: #eeeeee; background-color: #111111; diff --git a/gameview.py b/gameview.py index d10b66a..1dc91c7 100644 --- a/gameview.py +++ b/gameview.py @@ -1734,15 +1734,6 @@ class GUI(QtGui.QWidget): # Design courtroomDesign = AO2XPpath + "ao2xp_themes/" + theme + '/courtroom_design.ini' if exists(courtroomDesign): - self.stylesheet = """ -QWidget#tabEvidence, QWidget#tabMute, QWidget#tabIniSwap, -QWidget#tabPair, QWidget#tabMisc, QWidget#tabQueue, QWidget#tabMusic, -QWidget#tabPlayers, QWidget#tabBackgrounds -{ - background-color: transparent; -} -""" - design = {} with open(courtroomDesign) as f: for keys in f.read().split("\n"):