Add CSS styling to history view to make text lighter coloured.
This commit is contained in:
@@ -77,3 +77,9 @@ MiniWindow QPushButton {
|
|||||||
{
|
{
|
||||||
color: #333;
|
color: #333;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#history::item
|
||||||
|
{
|
||||||
|
color: #888;
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -176,6 +176,7 @@ class MiniWindow(QDialog):
|
|||||||
main_layout.addWidget(self.send_button, 2, 1)
|
main_layout.addWidget(self.send_button, 2, 1)
|
||||||
|
|
||||||
self.history_list = history_widget.HistoryWidget()
|
self.history_list = history_widget.HistoryWidget()
|
||||||
|
self.history_list.setObjectName("history")
|
||||||
self.history_list.hide()
|
self.history_list.hide()
|
||||||
main_layout.addWidget(self.history_list, 3, 0, 1, -1)
|
main_layout.addWidget(self.history_list, 3, 0, 1, -1)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user