QListWidgetQSS.qss 321 B

123456789101112131415161718
  1. QListWidget, QListView, QTreeWidget, QTreeView {
  2. outline: 0px;
  3. }
  4. QListWidget {
  5. min-width: 120px;
  6. max-width: 120px;
  7. color: Black;
  8. background: #F5F5F5;
  9. }
  10. QListWidget::Item:selected {
  11. background: lightGray;
  12. border-left: 5px solid black;
  13. }
  14. HistoryPanel:hover {
  15. background: rgb(52, 52, 52);
  16. }