plancard.qss 2.0 KB

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