12345678910111213141516171819202122232425262728 |
- #ifndef TEMPLATE_H
- #define TEMPLATE_H
- #include <QString>
- const QString m_qssHeaderView_dark = R"(
- QTableWidget QHeaderView
- {
- background: transparent;
- }
- QTableWidget QHeaderView::section
- {
- background: transparent;
- padding-left: 16px;
- font-weight: 500;
- font-size: 14px;
- color: #D2D2D2;
-
- border: 0px solid #E6E9F4;
- border-top: 1px solid rgba(255,255,255,0.15);
- border-bottom: 1px solid rgba(255,255,255,0.15);
- }
- )";
- #endif // TEMPLATE_H
|