Qt Style Sheets (QSS) allows you to customize the appearance of widgets.

learn more… | top users | synonyms

0
votes
2answers
71 views

How can i hide the border for qtreeview?

I want to hide the border of the QTreeWidget i´m customizing. I want it to be the same when i select an item inside. But this special outline doesn´t work at all. I want it to be the same as the ...
0
votes
0answers
26 views

Can't get actual size from qss stylized QWidgets

I can´t get the real size of the widgets that i stylized with a StyleSheet in QT 4.7 after adding the contents. For example, i want to get the size so I set an offset to the widget when shown so it ...
1
vote
0answers
39 views

Qt, qss, increase/decrease font size by a factor

Is it possible to increase/decrease font size by a factor using qss?
0
votes
0answers
73 views

System-wide Linux Qt QSS Themes

I'm searching for any Qt themes for the Linux desktop that: are not dependent on KDE's, QtCurve, or any other Qt theme engines separate from vanilla Qt libraries, are comprised mainly of QSS (Qt ...
0
votes
0answers
114 views

css properties in a pushbutton are not overridden in :checked ? (Qt qss)

I use this in Qt 4. The code for both: QPushButton#groupBoxTitleExpand { min-height: 25px; max-height: 25px; border-style: solid; border-width: 0px 17px 0px 3px; border-image: ...
2
votes
1answer
94 views

Is it possible to specify more than just “regular” and “bold” versions of a font in a Qt Stylesheet?

I have a font that has several font weights within one family (extra light, light, regular, semibold, bold, black). For this example, I'm using the free Google Webfont Source Sans Pro, but I've had ...
1
vote
1answer
140 views

Qt QCalendarWidget QSS Styling

I know there's no support for QCalendarWidget QSS styling but does anyone know some workarounds for changing the color of sections 1 and 2 of the QCalendarWidget? (the light blue for section 1 and ...
0
votes
1answer
87 views

QTabWidget with tabs both at the top and to the right.

I have a QTabWidget with two tabs. I want one to be on the east side and the other one at the top. I've tried these style sheets, but so far I couldn't get it right. #tab_basic::top{ } ...
0
votes
2answers
131 views

How to split large style file (qss file) in QT to small file and load them all

What I am trying to do I need to split my large style file to small style files because now it is hard to read the style file(qss file) and add new styling to it. after that i need to load those small ...
2
votes
1answer
172 views

How can I set background color/image specific tab at QTabWidget?

After the long visitor status, finally, this is my first post. I create tabs dynamically in my TabWidget(from config). Like; -it is python code, pyqt, answers can be coded c++, dosn’t matter for me ...
2
votes
1answer
363 views

QComboBox AbstractItemView::item

Is there a way I could increase the height of the items, which are listed in a QComboBox control ? I tried following as suggested here in QTDevNet forums but with no luck QComboBox ...
0
votes
1answer
108 views

how to style the QScrollBar when the content is not scrolling?

I want to style the scrollbars. I am able to apply styles to scrollbar when scrollarea content is scrolling. But when the content is not scrolling the style is not getting applied to it. I have used ...
2
votes
1answer
230 views

Change style on Hover state of parent QWidget in Qt

I have a composite control in Qt that is a QWidget with a QHBoxLayout containing 3 sub controls (QWidget > QHBoxLayout > 3 QLabels). On one of those controls, which is just a QLabel displaying an ...
0
votes
1answer
151 views

Qt compilation and stylesheet

Each time I compile my Qt project after modifying my qss stylesheet file, the modifications aren't taken into account, unless I rebuild everything. Any idea on a workaround for this, so that I don't ...
0
votes
1answer
289 views

Animated Gif static in QStyleSheet

I'm wanting to customize the look of a QProgressBar with a stylesheet. I'd like to give it that animated, 'indeterminate' look. So I made an animated GIF to stick in the background of the ...
0
votes
0answers
706 views

Difficulty styling a QTreeView with stylesheets

I'm trying to make the parent items in my QTreeView taller, have larger fonts, a custom expanded/collapsed icon in the right and be underlined. Here's my style sheet so far: ...
0
votes
1answer
210 views

Not able to hide Choice-Indicator of the QComboBox

programmer When I set the background-color of the list view belonging to the QComboBox (per QSS), then this QComboBox will no more use the built-in-opticel-look-and feel. Instaed I have to specify ...
0
votes
1answer
385 views

QCombobox down arrow image

How to change Qcombobox down arrow image? Right now I'm using this QSS code, but this doesn't work, I can't remove down arrow border. QComboBox { border: 0px; } QComboBox::down-arrow { ...
1
vote
1answer
173 views

Qt QSS Tutorials

Are there any good Qt QSS tutorials or is there some place where I can see examples of styling widgets? I'd like some complete reference if is there available somewhere. I couldn't find anything but ...
2
votes
1answer
213 views

Force remove all horizontal spacing in Qt

Using Qt, I've set up a main dialog with a horizontal layout. This horizontal layout contains three vertical layouts. I really want all controls in these layouts to butt right up against each other, ...
2
votes
2answers
705 views

Using variables in qt StyleSheets

Is there any possibility of giving variable name to hex/rgb numbers in .qss file . For eh myColor = #FFCC08 QPushButton { background-color: myColor;} So that i can define the variable at the top of ...
1
vote
1answer
214 views

Cannot add a background image to a QDockWidget

As far as I can tell, the way you make the background of a widget to be an image is to modify the qstylesheet to say: background-image: url(<your image here>); Which seems to work, unless ...
6
votes
4answers
12k views

Qt: Styling QTabWidget

I'm using Qt and I have a QTabWidget setup in the Qt Designer Editor, you can see it in picture 1. As you can see after Tab4 there is an empty space all the way to the right edge, in someway I need ...