folder_list_dialog.qss 1.5 KB

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