Advertisement
Guest User

sideberry

a guest
Nov 28th, 2024
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 KB | None | 0 0
  1. #root.root {--tabs-audio-btn-width: 20px;}
  2. #root.root {--tabs-lvl-opacity: 0;}
  3. #root.root {--general-margin: 5px;}
  4. #root.root {--general-border-radius: 12px;}
  5. #root:not(:hover){--tabs-indent: 0;}
  6.  
  7. #root.root {--accent: red;}
  8. #root.root {--tabs-font: ;}
  9. #root.root {--tabs-height: 45px;}
  10. #root.root {--tabs-margin: 0px;}
  11. #root.root {--tabs-inner-gap: 8px;}
  12.  
  13. #root.root {--nav-btn-active-shadow: none;}
  14. #root.root {--nav-btn-height: 30px;}
  15.  
  16. #root.root {
  17. --toolbar-bg: var(--frame-bg);
  18. }
  19.  
  20. #root[data-frame-color-scheme="light"] {
  21. --frame-bg: #f9f9fb;
  22. --len-color: rgb(0 0 0 / 0.7);
  23.  
  24. --nav-item-bg: white;
  25. --tab-hover-bg: #f3f3f5;
  26. --pin-tab-bg: rgba(194,193,196,0.2);
  27. }
  28.  
  29. #root[data-frame-color-scheme="dark"] {
  30. --frame-bg: #2b2a33;
  31. --len-color: rgb(255 255 255 / 0.7);
  32.  
  33. --nav-item-bg: #55555c;
  34. --tab-hover-bg: rgb(64 63 71 / 1);
  35. --pin-tab-bg: rgb(64 63 71 / 0.4);
  36. --tabs-activated-bg: #403f47;
  37. }
  38.  
  39. .top-shadow {
  40. display: none
  41. }
  42.  
  43. .top-horizontal-box .audio {
  44. display: none
  45. }
  46.  
  47. .len {
  48. color: var(--len-color) !important;
  49.  
  50. opacity: 0 !important;
  51. text-shadow: none !important;
  52. font-weight: 400 !important;
  53.  
  54. min-width: 10px;
  55. padding: 0 !important;
  56.  
  57. top: -3px !important;
  58. right: -10px !important;
  59. }
  60.  
  61. .NavigationBar.-top {
  62. padding: 0px 10px;
  63. }
  64.  
  65. .NavigationBar .nav-item[data-active="true"] .len {
  66. opacity: 1 !important;
  67. }
  68.  
  69. .NavigationBar .nav-item[data-active="true"] {
  70. background: var(--nav-item-bg);
  71. box-shadow: var(--tabs-activated-shadow);
  72. }
  73.  
  74. .NavigationBar .nav-item[data-active="true"]:hover {
  75. background: none;
  76. }
  77.  
  78. .Tab[data-parent="true"][data-folded="true"] .fav-icon {
  79. opacity: 0.5 !important;
  80. }
  81.  
  82. .Tab {
  83. font-size: 14px;
  84.  
  85. margin-left: 7px;
  86. padding-right: 14px;
  87.  
  88. margin-top: 0px;
  89. margin-bottom: 0px;
  90. }
  91.  
  92. .exp-icon {
  93. display: none
  94. }
  95.  
  96. .Tab[data-discarded="true"] > .body > .fav,
  97. .Tab[data-discarded="true"] > .body > .t-box {
  98. opacity: 1;
  99. }
  100.  
  101. .Tab .t-box {
  102. margin: 0 10px 0 0;
  103. }
  104.  
  105. .PinnedTabsBar .tab-wrapper {
  106. position: relative;
  107. border-radius: 6px;
  108. background: var(--pin-tab-bg);
  109. width: 22%;
  110. height: 43px;
  111. display: flex;
  112. justify-content: center;
  113. align-items: center;
  114. }
  115.  
  116. #root[data-pinned-tabs-position="panel"] .PinnedTabsBar {
  117. gap: 10px;
  118. padding: 0 0 10px 10px;
  119. }
  120.  
  121.  
  122. .PinnedTabsBar .Tab:hover .body::before {
  123. background: inherit;
  124. }
  125.  
  126. .PinnedTabsBar .Tab {
  127. width: 100%;
  128. height: 100%;
  129. }
  130.  
  131. .PinnedTabsBar .tab-wrapper:hover {
  132. background: var(--tab-hover-bg);
  133. }
  134.  
  135. .PinnedTabsBar .Tab[data-active="true"] .body {
  136. background-color: inherit;
  137. box-shadow: inherit;
  138. }
  139.  
  140. .tab-wrapper:has(.Tab[data-active="true"]) {
  141. background-color: var(--tabs-activated-bg);
  142. box-shadow: var(--tabs-activated-shadow);
  143. }
  144.  
  145. .BottomBar {
  146. background: var(--toolbar-bg);
  147. }
  148.  
  149. .new-tab-btns, .bottom-bar-space {
  150. display: none !important;
  151. }
  152.  
  153.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement