setting_card.qss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. SettingCard {
  2. border: 1px solid rgb(35, 35, 35);
  3. border-radius: 6px;
  4. background-color: rgb(50, 50, 50);
  5. }
  6. QLabel {
  7. font: 14px 'Segoe UI', 'Microsoft YaHei';
  8. color: white;
  9. padding: 0;
  10. border: none;
  11. background-color: transparent;
  12. }
  13. QLabel#contentLabel {
  14. font: 11px 'Segoe UI', 'Microsoft YaHei';
  15. color: rgb(208, 208, 208);
  16. padding: 0;
  17. }
  18. RangeSettingCard > QLabel#valueLabel{
  19. color: rgb(159, 159, 159);
  20. }
  21. QPushButton {
  22. border: 1px solid rgba(255, 255, 255, 24);
  23. border-radius: 5px;
  24. border-bottom: 1px solid rgba(255, 255, 255, 17);
  25. padding: 5px 36px 5px 36px;
  26. font: 14px 'Segoe UI', 'Microsoft YaHei';
  27. color: white;
  28. background-color: rgb(62, 63, 62);
  29. }
  30. QPushButton:hover {
  31. background-color: rgb(67, 68, 67);
  32. }
  33. QPushButton:pressed {
  34. background-color: rgb(56, 56, 56);
  35. border-bottom: 1px solid rgba(255, 255, 255, 24);
  36. color: rgba(255, 255, 255, 0.63);
  37. }
  38. #primaryButton {
  39. color: black;
  40. background-color: --ThemeColorPrimary;
  41. border: 1px solid --ThemeColorLight1;
  42. border-bottom: 1px solid --ThemeColorLight2;
  43. padding: 5px 12px 5px 12px;
  44. }
  45. #primaryButton:hover {
  46. background-color: --ThemeColorDark1;
  47. border: 1px solid --ThemeColorLight1;
  48. border-bottom: 1px solid --ThemeColorLight2;
  49. }
  50. #primaryButton:pressed {
  51. color: rgba(0, 0, 0, 0.63);
  52. background-color: --ThemeColorDark2;
  53. border: 1px solid --ThemeColorDark2;
  54. }
  55. ColorPickerButton {
  56. border: 1px solid rgba(255, 255, 255, 10);
  57. border-radius: 5px;
  58. border-bottom: 1px solid rgba(255, 255, 255, 7);
  59. }