Guest User

Untitled

a guest
Nov 23rd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. QTabBar,
  2. QTabBar::tab
  3. {
  4. font-family: "Noto Sans";
  5. font-size: 11px;
  6. height: 16px;
  7. padding: 2px;
  8. border: 0px;
  9. border-bottom: 3px solid palette(dark);
  10. background-color: palette(dark);
  11. color: palette(text);
  12. }
  13.  
  14. QTabBar::tab:hover
  15. {
  16. text-decoration: underline;
  17. }
  18.  
  19. QTabBar::tab:selected
  20. {
  21. font-weight: bold;
  22. background-color: palette(window);
  23. border: 0px;
  24. border-bottom-right-radius: 5px;
  25. border-bottom-left-radius: 5px;
  26. background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 palette(window), stop: 0.85 palette(window), stop: 1 palette(highlight));
  27. }
Add Comment
Please, Sign In to add comment