expand_setting_card.qss 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. ExpandSettingCard {
  2. border: 1px solid rgb(230, 230, 230);
  3. border-radius: 6px;
  4. background-color: rgb(252, 252, 252);
  5. }
  6. #view {
  7. background: transparent;
  8. border: none;
  9. }
  10. ExpandSettingCard[isExpand=false]>SettingCard {
  11. border: 1px solid rgb(230, 230, 230);
  12. border-radius: 6px;
  13. background-color: rgb(253, 253, 253);
  14. }
  15. ExpandSettingCard[isExpand=true]>SettingCard {
  16. border: 1px solid rgb(230, 230, 230);
  17. border-top-left-radius: 6px;
  18. border-top-right-radius: 6px;
  19. border-bottom-left-radius: 0px;
  20. border-bottom-right-radius: 0px;
  21. background-color: rgb(253, 253, 253);
  22. }
  23. QLabel {
  24. font: 14px 'Segoe UI', 'Microsoft YaHei';
  25. color: black;
  26. padding: 0;
  27. background: transparent;
  28. border: none;
  29. }
  30. QLabel#contentLabel {
  31. font: 11px 'Segoe UI', 'Microsoft YaHei';
  32. color: rgb(96, 96, 96);
  33. padding: 0;
  34. }
  35. FolderItem>QLabel {
  36. font: 14px 'Segoe UI', 'Microsoft YaHei';
  37. }
  38. /* QPushButton */
  39. QPushButton {
  40. border: 1px solid rgb(238, 239, 238);
  41. border-radius: 5px;
  42. border-bottom: 1px solid rgb(212, 213, 212);
  43. padding: 5px 12px 5px 36px;
  44. font: 14px 'Segoe UI', 'Microsoft YaHei';
  45. color: black;
  46. background-color: rgb(254, 254, 254);
  47. }
  48. QPushButton:hover {
  49. background-color: rgb(251, 251, 251);
  50. }
  51. QPushButton:pressed {
  52. background-color: rgb(252, 252, 252);
  53. border-bottom: 1px solid rgb(238, 239, 238);
  54. color: rgba(0, 0, 0, 0.63);
  55. }
  56. QPushButton:disabled {
  57. color: rgb(162, 162, 162);
  58. background: rgb(252, 252, 252);
  59. border: 1px solid rgb(223, 223, 223);
  60. }
  61. /* Tool button */
  62. ToolButton {
  63. border: 1px solid rgb(238, 239, 238);
  64. border-radius: 5px;
  65. border-bottom: 1px solid rgb(212, 213, 212);
  66. font: 14px 'Segoe UI', 'Microsoft YaHei';
  67. color: black;
  68. background-color: rgb(254, 254, 254);
  69. }
  70. ToolButton:hover {
  71. background-color: rgb(251, 251, 251);
  72. }
  73. ToolButton:pressed {
  74. background-color: rgb(252, 252, 252);
  75. border-bottom: 1px solid rgb(238, 239, 238);
  76. }
  77. #chooseColorButton {
  78. padding: 5px 17px 5px 17px;
  79. }