plancard.qss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /* ================================================================
  2. * 外框
  3. * ================================================================ */
  4. QWidget#widget
  5. {
  6. border-radius: 4px 4px 4px 4px;
  7. border: 1px solid rgba(255,255,255,0.15);
  8. }
  9. QWidget#widget[Selected = "true"]
  10. {
  11. border-radius: 4px 4px 4px 4px;
  12. border: 1px solid #438EFF;
  13. }
  14. /* 标题 */
  15. QLabel#label_title
  16. {
  17. font-weight: 500;
  18. font-size: 16px;
  19. color: #D2D2D2;
  20. line-height: 22px;
  21. text-align: left;
  22. font-style: normal;
  23. text-transform: none;
  24. padding-left: 12px;
  25. }
  26. /* ================================================================
  27. * TableView
  28. * ================================================================ */
  29. /* 表格标题 */
  30. QWidget#widget_tableHeader
  31. {
  32. background-color: rgba(255, 255, 255, 0.1);
  33. border-radius: 0px 0px 0px 0px;
  34. border: none;
  35. }
  36. QLabel#label_onTime, #label_offTime
  37. {
  38. font-weight: 500;
  39. font-size: 14px;
  40. color: #D2D2D2;
  41. line-height: 22px;
  42. text-align: left;
  43. font-style: normal;
  44. text-transform: none;
  45. padding-left: 12px;
  46. }
  47. QTableView
  48. {
  49. font-weight: 400;
  50. font-size: 14px;
  51. color: #B1B3B4;
  52. line-height: 22px;
  53. text-align: left;
  54. font-style: normal;
  55. text-transform: none;
  56. /* background: #438EFF; */
  57. border: 0px solid rgba(255, 255, 255, 0.1);
  58. outline: none;
  59. }
  60. QTableView::item
  61. {
  62. font-weight: 400;
  63. font-size: 14px;
  64. color: #B1B3B4;
  65. background: transparent;
  66. border: none;
  67. padding-left: 12px;
  68. outline: none;
  69. }
  70. QTableView::item:selected
  71. {
  72. color: #FFFFFF;
  73. background: #438EFF;
  74. border-radius: 0px 0px 0px 0px;
  75. outline: none;
  76. }
  77. /*
  78. QTableWidget::item
  79. {
  80. padding-left: 12px;
  81. padding-right: 0px;
  82. padding-top: 0px;
  83. padding-bottom: 0px;
  84. margin: 0px;
  85. text-align: left;
  86. border: 0px solid #E6E9F4;
  87. }
  88. QTableWidget::item:selected
  89. {
  90. color: #EBEBEB;
  91. background: #558bda;
  92. } */