1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /* ================================================================
- * 外框
- * ================================================================ */
- QWidget#widget
- {
- border-radius: 4px 4px 4px 4px;
- border: 1px solid rgba(255,255,255,0.15);
- }
- QWidget#widget[isSelected = "true"]
- {
- border-radius: 4px 4px 4px 4px;
- border: 1px solid #438EFF;
- }
- /* 标题 */
- QLabel#label_title
- {
- font-weight: 500;
- font-size: 16px;
- color: #D2D2D2;
- line-height: 22px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- padding-left: 12px;
- }
- /* ================================================================
- * TableView
- * ================================================================ */
- /* 表格标题 */
- QWidget#widget_tableHeader
- {
- background: #313539;
- border-radius: 0px 0px 0px 0px;
- }
- QLabel#label_onTime, #label_offTime
- {
- font-weight: 500;
- font-size: 14px;
- color: #D2D2D2;
- line-height: 22px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- padding-left: 12px;
- }
- QTableView#tableView
- {
- font-weight: 400;
- font-size: 14px;
- color: #B1B3B4;
- line-height: 22px;
- text-align: left;
- font-style: normal;
- text-transform: none;
- padding-left: 12px;
- border: 0px;
- }
|