Stylesheet problem with transparent background
-
Hello,
I have noticed smth strange happening when setting the background color to transparent for widgets that are on top of each other. Here is a minimalist example of the QMainWindow 'home', which has a 'main_tabs' QTabWidget.
import sys from PySide6.QtWidgets import QApplication, QMainWindow, QSplitter, QTabWidget from PySide6.QtGui import QPainter, QColor from PySide6.QtCore import Qt home_stylesheet = ''' QWidget {background-color: red; color: green;} ''' main_tabs_stylesheet = ''' QWidget {background-color: transparent; border: none;} QTabWidget {background-color: transparent; border: none;} QTabBar {background-color: transparent; border: none;} ''' # main_tabs widget class main_tabs(QTabWidget): def __init__(self, parent = None): super().__init__(parent) self.setStyleSheet(main_tabs_stylesheet) self.setContentsMargins(0, 0, 0, 0) # home widget class home(QMainWindow): def __init__(self): super().__init__() self.showMaximized() self.init_ui() self.setStyleSheet(home_stylesheet) def init_ui(self): splitter = QSplitter(parent = self) splitter.setHandleWidth(0) self.setCentralWidget(splitter) # Create a main tabs on the right self.tab_widget = main_tabs(parent = splitter) # Set stretch factors to ensure the drawer widget takes minimum space splitter.setStretchFactor(0, 1) if not QApplication.instance(): app = QApplication(sys.argv) else: app = QApplication.instance() window = home() window.show() sys.exit(app.exec())
I have set the background of 'home' to red and the background of the 'main_tabs' to transparent. I would expect to see a red rectangle when i start the app. But I see a Black one. I have no clue where the black is coming from.
However, if I remove the first line of the main_tabs_stylesheet, i.e. if the main_tabs_stylesheet looks like that:
main_tabs_stylesheet = ''' QTabWidget {background-color: transparent; border: none;} QTabBar {background-color: transparent; border: none;} '''
then the red rectangle of 'home' is shown.
Why does setting the main_tabs QWidget background to transparent make the main_tabs black?
Thank you for any help.
Bests,
Gazi -
@Ronel_qtmaster
Sorry for not understanding, but can you ellaborate a bit on that? The main_tabs should apply a transparent background to any QWidget inside it. Why is it conflicting with anything?Thx
-
@Gazi said in Stylesheet problem with transparent background:
@Tink
Well, why is there a conflict?I'm not always sure why there are unexpected results from cascading styles, but it helped me to set all the styles from one place eg on the centralwidget. And use #objectName if i have different styles for similar widgets.
-
@Gazi well i think you just need to look at this: https://doc.qt.io/qt-6/stylesheet-examples.html#style-sheet-usage
Although in the documentation they suggest setting stylesheets on many widgets, but it might be hard to keep track of what influences what, Especially if you don't use an an ID Selector. And what if you need to make changes later...
-
Well, i tried to give selectors for the 'home' and for the 'main_tabs'. The same issue holds.
import sys from PySide6.QtWidgets import QApplication, QMainWindow, QSplitter, QTabWidget from PySide6.QtGui import QPainter, QColor from PySide6.QtCore import Qt home_stylesheet = ''' QWidget#home {background-color: red; color: green;} ''' main_tabs_stylesheet = ''' QWidget#main_tabs {background-color: transparent; border: none;} QTabWidget#main_tabs {background-color: transparent; border: none;} QTabBar#main_tabs {background-color: transparent; border: none;} ''' # main_tabs widget class main_tabs(QTabWidget): def __init__(self, parent = None): super().__init__(parent) self.setStyleSheet(main_tabs_stylesheet) self.setContentsMargins(0, 0, 0, 0) self.setObjectName('main_tabs') # home widget class home(QMainWindow): def __init__(self): super().__init__() self.showMaximized() self.init_ui() self.setStyleSheet(home_stylesheet) self.setObjectName('home') def init_ui(self): splitter = QSplitter(parent = self) splitter.setHandleWidth(0) self.setCentralWidget(splitter) # Create a main tabs on the right self.tab_widget = main_tabs(parent = splitter) # Set stretch factors to ensure the drawer widget takes minimum space splitter.setStretchFactor(0, 1) if not QApplication.instance(): app = QApplication(sys.argv) else: app = QApplication.instance() window = home() window.show() sys.exit(app.exec())
I believe there is smth else going on here. I think there is some bug.
-
@Ronel_qtmaster
But how to make it affect only main_tabs background? -
@Gazi said in Stylesheet problem with transparent background:
@Ronel_qtmaster
But how to make it affect only main_tabs background?Even if i have them like that:
home_stylesheet = ''' QWidget#home {background-color: green; color: green;} ''' main_tabs_stylesheet = ''' QTabWidget#main_tabs {background-color: transparent; border: none;} '''
I still see a black background instead of a green one.