Advertisement
Guest User

Untitled

a guest
Sep 19th, 2011
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.25 KB | None | 0 0
  1. QWidget#gameChatTab { /* sets background color for every widget under a tab */
  2. background-color: rgba(0, 0, 0,0);
  3. }
  4.  
  5. QWidget#customGames { /* sets background color for every widget under a tab */
  6. background-color: rgba(0, 0, 0,0);
  7. }
  8.  
  9. QWidget#RankedTab { /* sets background color for every widget under a tab */
  10. background-color: rgba(0, 0, 0,0);
  11. }
  12.  
  13. QWidget#CoopTab { /* sets background color for every widget under a tab */
  14. background-color: rgba(0, 0, 0,0);
  15. }
  16. QWidget#leaderboardTab { /* sets background color for every widget under a tab */
  17. background-color: rgba(0, 0, 0,0);
  18. }
  19.  
  20. QWidget#ModsTab { /* sets background color for every widget under a tab */
  21. background-color: rgba(0, 0, 0,0);
  22. }
  23. QWidget#GwTab { /* sets background color for every widget under a tab */
  24. background-color: rgba(0, 0, 0,0);
  25. }
  26.  
  27. QWidget#TournamentsTab { /* sets background color for every widget under a tab */
  28. background-color: rgba(0, 0, 0,0);
  29. }
  30. QWidget#Vault { /* sets background color for every widget under a tab */
  31. background-color: rgba(0, 0, 0,0);
  32. }
  33.  
  34. /* sets background color for every widget */
  35. /*
  36. QWidget > QTabWidget{
  37. background-color: rgb(100,100,100);
  38. color: white;
  39. }
  40. */
  41. /* The tab widget frame */
  42.  
  43.  
  44.  
  45.  
  46. /* All QFrame Background */
  47.  
  48.  
  49.  
  50.  
  51. QTabWidget#ChatTab QWidget {
  52. background-color: rgb(200,100, 100);
  53. color : white;
  54. }
  55.  
  56. QTabWidget#ChatTab::pane { /* The tab widget frame */
  57. border-top: 0px solid #C2C7CB;
  58. }
  59.  
  60.  
  61. QTabWidget#ChatTab::tab-bar {
  62. left: 5px; /* move to the right by 5px */
  63. }
  64.  
  65.  
  66. QWidget#AnnounceArea { /* sets background color for the ads */
  67. background-color: rgba(0, 0, 0,0);
  68. }
  69.  
  70.  
  71.  
  72. /* Central area background */
  73. QWidget#centralwidget {
  74. background-color: #4F424C;
  75. }
  76.  
  77.  
  78.  
  79. QTabWidget#MainTabWidget::pane { /* The tab widget frame */
  80. background-color: #366175;
  81. border-bottom-left-radius: 10px;
  82. border-radius: 10px;
  83. }
  84.  
  85.  
  86.  
  87.  
  88. QTabWidget#MainTabWidget::tab-bar {
  89. left: 15px; /* move to the right by 5px */
  90. }
  91.  
  92. /* Style the tab using the tab sub-control. Note that it reads QTabBar _not_ QTabWidget */
  93.  
  94. QTabWidget#MainTabWidget > QTabBar::tab {
  95. background-color: rgb(0, 0, 0);
  96. border-bottom-color: #C2C7CB; /* same as the pane color */
  97. color: rgb(255,255,255);
  98. min-width: 80px;
  99. padding: 10px;
  100. }
  101.  
  102. QTabWidget#MainTabWidget > QTabBar::tab:selected, QTabWidget#MainTabWidget >QTabBar::tab:hover {
  103. background-color: rgb(40,40, 40);
  104. }
  105. QTabWidget#MainTabWidget > QTabBar::tab:selected {
  106. border-color: #9B9B9B;
  107. background-color: #366175;
  108. border-bottom-color: #C2C7CB; /* same as pane color */
  109. border-bottom-left-radius: 10px;
  110. border-bottom-right-radius: 10px;
  111. }
  112.  
  113. QTabWidget#MainTabWidget > QTabBar::tab:!selected {
  114. margin-bottom: 10px; /* make non-selected tabs look smaller */
  115. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement