folder_list_dialog.qss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. QWidget {
  2. background-color: white;
  3. border: 1px solid rgb(200, 200, 200);
  4. }
  5. QWidget#windowMask {
  6. background-color: rgba(255, 255, 255, 0.6);
  7. border: none;
  8. }
  9. QLabel {
  10. color: black;
  11. border: none;
  12. background-color: transparent;
  13. }
  14. QLabel#titleLabel {
  15. font: 20px 'Segoe UI', 'Microsoft YaHei';
  16. }
  17. QLabel#contentLabel {
  18. font: 14px 'Segoe UI', 'Microsoft YaHei';
  19. }
  20. QPushButton#completeButton {
  21. color: black;
  22. background-color: rgb(204, 204, 204);
  23. padding: 9px 51px 9px 51px;
  24. font: 15px 'Segoe UI', 'Microsoft YaHei';
  25. border: none;
  26. }
  27. QPushButton#completeButton:pressed:hover {
  28. background-color: rgb(153, 153, 153);
  29. }
  30. QPushButton#completeButton:hover {
  31. background-color: rgb(230, 230, 230);
  32. }
  33. QPushButton#completeButton:disabled {
  34. background-color: rgb(204, 204, 204);
  35. color: rgb(122, 122, 122);
  36. }
  37. QScrollArea{
  38. border: none;
  39. }
  40. QScrollBar:vertical {
  41. background: white;
  42. border: none;
  43. width: 3px;
  44. }
  45. QScrollBar::sub-line {
  46. background: transparent;
  47. }
  48. QScrollBar::add-line {
  49. background: transparent;
  50. }
  51. QScrollBar::handle {
  52. background: rgb(128, 128, 128);
  53. min-height: 32px;
  54. border: 1px solid transparent;
  55. border-radius: 1px;
  56. }
  57. QScrollBar::add-page:vertical,
  58. QScrollBar::sub-page:vertical {
  59. background: none;
  60. }
  61. #scrollWidget{
  62. border: none;
  63. }