Why can't set the tabbar's border-bottom's color to white?
-
I just want to the style just like Vmware Workstation.
So I used qss,
QTabBar { border-bottom: none; }
But it didn't work.
So, why,,, can someone give me any advice?
@Limer 2
the border probably comes from the content container widget or the widget inside the tab?
Don't know if it works but try:QTabWidget QWidget#qt_tabwidget_stackedwidget { border: 0; }
-
I just want to the style just like Vmware Workstation.
So I used qss,
QTabBar { border-bottom: none; }
But it didn't work.
So, why,,, can someone give me any advice?
@Limer I haven‘t much experience with QTabWidget, but I know of this Qt-Blockpost http://blog.qt.io/blog/2007/06/22/styling-the-tab-widget/
From that I would guess you need the Tab sub controll ?
QTabBar::tab { border-bottom:none;}
-
@Limer I haven‘t much experience with QTabWidget, but I know of this Qt-Blockpost http://blog.qt.io/blog/2007/06/22/styling-the-tab-widget/
From that I would guess you need the Tab sub controll ?
QTabBar::tab { border-bottom:none;}