plancard.qss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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[isSelected = "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: #313539;
  33. border-radius: 0px 0px 0px 0px;
  34. }
  35. QLabel#label_onTime, #label_offTime
  36. {
  37. font-weight: 500;
  38. font-size: 14px;
  39. color: #D2D2D2;
  40. line-height: 22px;
  41. text-align: left;
  42. font-style: normal;
  43. text-transform: none;
  44. padding-left: 12px;
  45. }
  46. QTableView#tableView
  47. {
  48. font-weight: 400;
  49. font-size: 14px;
  50. color: #B1B3B4;
  51. line-height: 22px;
  52. text-align: left;
  53. font-style: normal;
  54. text-transform: none;
  55. padding-left: 12px;
  56. border: 0px;
  57. }