plancard.qss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /* ================================================================
  2. * 外框
  3. * ================================================================ */
  4. QWidget#widget
  5. {
  6. background: transparent;
  7. border-radius: 4px 4px 4px 4px;
  8. border: 1px solid #E6E9F4
  9. }
  10. QWidget#widget[Selected = "true"]
  11. {
  12. border-radius: 4px 4px 4px 4px;
  13. border: 1px solid #4458FE;
  14. }
  15. /* 标题 */
  16. QLabel#label_title
  17. {
  18. font-weight: 500;
  19. font-size: 16px;
  20. color: #3A3F63;
  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: #E6E9F4;
  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: #3A3F63;
  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: #3A3F63;
  55. line-height: 22px;
  56. text-align: left;
  57. font-style: normal;
  58. text-transform: none;
  59. /* background: #4458FE; */
  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: #3A3F63;
  68. background: transparent;
  69. border: none;
  70. padding-left: 12px;
  71. outline: none;
  72. }
  73. QTableView::item:selected
  74. {
  75. color: #FFFFFF;
  76. background: #4458FE;
  77. border-radius: 0px 0px 0px 0px;
  78. outline: none;
  79. }