info_bar.qss 804 B

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