Hello. Using PyQt5 with Python 3.9. I wish to change the ugly green navigation arrows on the navigation bar. Been on the internet for several hours trying different solutions and can't get them to work. This is the last modification to the widget I want to make. Any help would be greatly appreciated.
Screenshot 2021-04-28 110233.png
Here is my stylesheet params:
self.cal.setStyleSheet(
"QCalendarWidget QAbstractItemView{background-color: black;color: rgba(162,201,229,255);selection-background-color: rgb(46, 46, 46);selection-color: lightgray;selection-border: 1px solid black;}"
"QCalendarWidget QWidget{alternate-background-color: rgb(46, 46, 46);color: gray;}"
"QCalendarWidget QToolButton{background-color: black;color: rgb(155,145,155);font-size: 14px;font: bold;width: 70px;border: none;}"
"QCalendarWidget QToolButton#qt_calendar_prevmonth{qproperty-icon: left_arrow.png;}"
"QCalendarWidget QToolButton#qt_calendar_nextmonth{qproperty-icon: right_arrow.png;}"
)
Bookmarks