info_bar.qss 810 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. InfoBar {
  2. border: 1px solid rgb(229, 229, 229);
  3. border-radius: 6px;
  4. background-color: rgb(244, 244, 244);
  5. }
  6. #titleLabel {
  7. font: 14px 'Segoe UI', 'Microsoft YaHei';
  8. font-weight: bold;
  9. color: black;
  10. }
  11. #contentLabel {
  12. font: 14px 'Segoe UI', 'Microsoft YaHei';
  13. color: black;
  14. }
  15. InfoBar[type="Info"] {
  16. background-color: rgb(244, 244, 244);
  17. }
  18. InfoBar[type="Success"] {
  19. background-color: rgb(223, 246, 221);
  20. }
  21. InfoBar[type="Warning"] {
  22. background-color: rgb(255, 244, 206);
  23. }
  24. InfoBar[type="Error"] {
  25. background-color: rgb(253, 231, 233);
  26. }
  27. InfoBarCloseButton {
  28. background-color: transparent;
  29. border-radius: 5px;
  30. }
  31. InfoBarCloseButton:hover {
  32. background-color: rgba(0, 0, 0, 9);
  33. }
  34. InfoBarCloseButton:pressed {
  35. background-color: rgba(0, 0, 0, 6);
  36. }