Solution found ..
Instead of using
self.groupBox.setStyleSheet("background-color: rgb(255, 255, 255);\n" "border:1px solid rgb(255, 170, 255);")
used specifically with selector types.
self.groupBox.setStyleSheet("QGroupBox { background-color: rgb(255, 255,\ 255); border:1px solid rgb(255, 170, 255); }")
This solves the problem.
Jeba
source share