template.h 608 B

12345678910111213141516171819202122232425262728
  1. #ifndef TEMPLATE_H
  2. #define TEMPLATE_H
  3. #include <QString>
  4. const QString m_qssHeaderView_dark = R"(
  5. QTableWidget QHeaderView
  6. {
  7. background: transparent;
  8. }
  9. QTableWidget QHeaderView::section
  10. {
  11. background: transparent;
  12. padding-left: 16px;
  13. font-weight: 500;
  14. font-size: 14px;
  15. color: #D2D2D2;
  16. border: 0px solid #E6E9F4;
  17. border-top: 1px solid rgba(255,255,255,0.15);
  18. border-bottom: 1px solid rgba(255,255,255,0.15);
  19. }
  20. )";
  21. #endif // TEMPLATE_H