mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-02 18:25:21 +00:00
Add CSS styling to history view to make text lighter coloured.
This commit is contained in:
parent
b952a96b41
commit
5c43cee3f3
2 changed files with 7 additions and 0 deletions
|
@ -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)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue