plancard.qss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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, 25);
  34. /* background: green; */
  35. border-radius: 0px 0px 0px 0px;
  36. border: none;
  37. }
  38. QLabel#label_onTime, #label_offTime
  39. {
  40. font-weight: 500;
  41. font-size: 14px;
  42. color: #D2D2D2;
  43. line-height: 22px;
  44. text-align: left;
  45. font-style: normal;
  46. text-transform: none;
  47. padding-left: 12px;
  48. }
  49. QTableView
  50. {
  51. background: transparent;
  52. font-weight: 400;
  53. font-size: 14px;
  54. color: #B1B3B4;
  55. line-height: 22px;
  56. text-align: left;
  57. font-style: normal;
  58. text-transform: none;
  59. /* background: #438EFF; */
  60. border: 0px solid rgba(255, 255, 255, 0.1);
  61. outline: none;
  62. }
  63. QTableView::item
  64. {
  65. font-weight: 400;
  66. font-size: 14px;
  67. color: #B1B3B4;
  68. background: transparent;
  69. border: none;
  70. padding-left: 12px;
  71. outline: none;
  72. }
  73. QTableView::item:selected
  74. {
  75. color: #FFFFFF;
  76. background: #438EFF;
  77. border-radius: 0px 0px 0px 0px;
  78. outline: none;
  79. }
  80. /*
  81. QTableWidget::item
  82. {
  83. padding-left: 12px;
  84. padding-right: 0px;
  85. padding-top: 0px;
  86. padding-bottom: 0px;
  87. margin: 0px;
  88. text-align: left;
  89. border: 0px solid #E6E9F4;
  90. }
  91. QTableWidget::item:selected
  92. {
  93. color: #EBEBEB;
  94. background: #558bda;
  95. } */