<div class="gmail_quote"><div>Thanks for your quick reply.. Have a look at this minimal example.. In the example i&#39;ve applied stylesheet only for groupbox not to any of it&#39;s components.. Since i&#39;ve set the parent as groupbox for button,label and combo box it also reflects the style sheet properties that is applied for group box.. In the combo box after clicking when you hover a menu item it&#39;ll not be visible since the focus is also in white color and it doesn&#39;t look good (esp. in linux).. In button too all it&#39;s properties are lost including click feel(in windows).. How can i prevent this.. Please help me.. <br>
<br>from PyQt4 import QtCore, QtGui<br><br>class Ui_Dialog(object):<br>    <br>    def setupUi(self, Dialog):<br>        <br>        Dialog.setObjectName(&quot;Dialog&quot;)<br>        Dialog.resize(399, 309)<br>        Dialog.setWindowTitle(QtGui.QApplication.translate(&quot;Dialog&quot;, &quot;Dialog&quot;, None, QtGui.QApplication.UnicodeUTF8))<br>
        <br>        self.groupBox = QtGui.QGroupBox(Dialog)<br>        self.groupBox.setGeometry(QtCore.QRect(10, 10, 381, 291))<br>        self.groupBox.setStyleSheet(&quot;background-color: rgb(255, 255, 255);\n&quot;<br>
                                    &quot;border:1px solid rgb(255, 170, 255);&quot;)<br>        self.groupBox.setObjectName(&quot;groupBox&quot;)<br>        <br>        self.pushButton = QtGui.QPushButton(self.groupBox)<br>
        self.pushButton.setGeometry(QtCore.QRect(110, 130, 92, 28))<br>        self.pushButton.setObjectName(&quot;pushButton&quot;)<br>        self.pushButton.setText(QtGui.QApplication.translate(&quot;Dialog&quot;, &quot;Click Me&quot;, None, QtGui.QApplication.UnicodeUTF8))<br>
                <br>        self.label = QtGui.QLabel(self.groupBox)<br>        self.label.setGeometry(QtCore.QRect(50, 30, 81, 18))<br>        self.label.setObjectName(&quot;label&quot;)<br>        self.label.setText(QtGui.QApplication.translate(&quot;Dialog&quot;, &quot;Name :&quot;, None, QtGui.QApplication.UnicodeUTF8))<br>
                <br>        self.lineEdit = QtGui.QLineEdit(self.groupBox)<br>        self.lineEdit.setGeometry(QtCore.QRect(140, 30, 191, 26))<br>        self.lineEdit.setObjectName(&quot;lineEdit&quot;)<br>        <br>        self.comboBox = QtGui.QComboBox(self.groupBox)<br>
        self.comboBox.setGeometry(QtCore.QRect(140, 70, 85, 27))<br>        self.comboBox.setObjectName(&quot;comboBox&quot;)<br>        self.comboBox.addItem(&quot;&quot;)<br>        self.comboBox.addItem(&quot;&quot;)<br>
        self.comboBox.addItem(&quot;&quot;)<br>        self.comboBox.addItem(&quot;&quot;)<br>        self.comboBox.addItem(&quot;&quot;)<br>        self.comboBox.setItemText(0, QtGui.QApplication.translate(&quot;Dialog&quot;, &quot;2&quot;, None, QtGui.QApplication.UnicodeUTF8))<br>
        self.comboBox.setItemText(1, QtGui.QApplication.translate(&quot;Dialog&quot;, &quot;20&quot;, None, QtGui.QApplication.UnicodeUTF8))<br>        self.comboBox.setItemText(2, QtGui.QApplication.translate(&quot;Dialog&quot;, &quot;12&quot;, None, QtGui.QApplication.UnicodeUTF8))<br>
        self.comboBox.setItemText(3, QtGui.QApplication.translate(&quot;Dialog&quot;, &quot;15&quot;, None, QtGui.QApplication.UnicodeUTF8))<br>        self.comboBox.setItemText(4, QtGui.QApplication.translate(&quot;Dialog&quot;, &quot;234&quot;, None, QtGui.QApplication.UnicodeUTF8))<br>
<br>        <br>        self.label_2 = QtGui.QLabel(self.groupBox)<br>        self.label_2.setGeometry(QtCore.QRect(50, 70, 81, 18))<br>        self.label_2.setObjectName(&quot;label_2&quot;)<br>        self.label_2.setText(QtGui.QApplication.translate(&quot;Test Dialog&quot;, &quot;Number :&quot;, None, QtGui.QApplication.UnicodeUTF8))<br>
                <br>        QtCore.QMetaObject.connectSlotsByName(Dialog)<br>        <br><br>if __name__ == &quot;__main__&quot;:<br>    import sys<br>    app = QtGui.QApplication(sys.argv)<br>    Dialog = QtGui.QDialog()<br>
    ui = Ui_Dialog()<br>    ui.setupUi(Dialog)<br>    Dialog.show()<br>    sys.exit(app.exec_())<br><br>P.S: I&#39;ve used qt designer for quick designing.. Even if i hand code it the result will be the same..<br><br> </div>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
You might take a look at so called &quot;Selector types&quot; (<br>
<a href="http://qt.nokia.com/doc/4.3/stylesheet-syntax.html#selector-types" target="_blank">http://qt.nokia.com/doc/4.3/stylesheet-syntax.html#selector-types</a>). Given a<br>
QDialog and its children (e.g. QPushButtons), this can prevent this<br>
cascading behaviour of styles, although I&#39;ve never had any problems with<br>
that without using this way of &quot;selecting&quot; matching objects..<br>
<br>
Can you show a small piece of code (small stylesheet and the way you apply<br>
it) please?<br>
<br>
On Tue, Mar 9, 2010 at 9:05 PM, Jebagnana Das &lt;<a href="mailto:jebagnanadas@gmail.com">jebagnanadas@gmail.com</a>&gt;wrote:<br>
<br>
&gt; Hello all,<br>
&gt;<br>
&gt; If i apply a property to a parent widget it is automatically applied for<br>
&gt; child widgets too.. Is there any way of preventing this??<br>
&gt;<br>
&gt; For example if i set background color as white in a dialog then any<br>
&gt; button,combo boxes and scroll bars(within the dialog) looks white and it<br>
&gt; lacks it&#39;s native look(have to say it&#39;s unpleasant to the eyes(esp. in unix)<br>
&gt; &amp; ugly).. Is there any way that i can apply the stylesheets only to a parent<br>
&gt; widget not to it&#39;s children? can i exclude specifically some child widgets<br>
&gt; from not inheriting parent SS properties??<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; PyQt mailing list    <a href="mailto:PyQt@riverbankcomputing.com">PyQt@riverbankcomputing.com</a><br>
&gt; <a href="http://www.riverbankcomputing.com/mailman/listinfo/pyqt" target="_blank">http://www.riverbankcomputing.com/mailman/listinfo/pyqt</a><br>
&gt;<br></blockquote></div>