Advertisement
Guest User

Sidebery CSS

a guest
Feb 5th, 2024
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.86 KB | None | 0 0
  1. #root.root {--ntb-border-radius: 0;}
  2. #root.root {--tabs-border-radius: 0;}
  3. #root.root {--toolbar-bg: rgb(43, 42, 51));}
  4. #root.root {--general-margin: 2px;}
  5. #root.root {--general-border-radius: 6px;}
  6. #root.root {--tabs-margin: 0px;}
  7.  
  8. #root.root {--nav-btn-height: 24px;}
  9. #root.root {--nav-btn-width: 24px;}
  10. #root.root {--nav-btn-margin: 3px;}
  11. #root.root {--frame-bg: light-dark(#f9f9fb, rgb(43, 42, 51));}
  12. #root.root {--custom-frame-bg: light-dark(#f9f9fb, rgb(43, 42, 51));}
  13. #root.root {--custom-border: light-dark(rgb(204, 204, 204), hsl(240, 5%, 5%));}
  14.  
  15.  
  16. .Tab {
  17.     width:98% !important;
  18.     transition: all 0.1s linear !important;
  19. }
  20. .Tab .body::before {
  21.     transition: all 0.1s linear;
  22. }
  23. .Tab .close {
  24.     border-radius: 6px 0 0 6px;
  25.     transition: all 0.1s linear !important;
  26.     margin-right: -1px !important;
  27. }
  28. .ScrollBox .Tab:not([data-lvl="0"]) .body::before {
  29.     border-radius: 6px 0 0 6px;
  30. }
  31. .ScrollBox .Tab:not([data-lvl="0"]) .body{
  32.     border-radius: 6px 0 0 6px;
  33. }
  34. .Tab[data-active="true"] .body {
  35.     border: 1px solid var(--custom-border);
  36.     border-right: 0px;
  37.     box-shadow: none;
  38. }
  39. .new-tab-btns {
  40.     margin-left: -2px !important;
  41. }
  42. .TabsPanel .new-tab-btn::before {
  43.     transition: all 0.1s linear;
  44. }
  45.  
  46. .NavigationBar .nav-item[data-active="true"] {
  47.     box-shadow: none;
  48. }
  49. .NavigationBar .nav-item {
  50.     transition: all 0.1s linear !important;
  51. }
  52. .NavigationBar{
  53.     width: 98% !important;
  54.     border: 1px solid var(--custom-border);
  55.     border-left: 0px;
  56.     border-right: 0px;
  57. }
  58.  
  59. .PinnedTabsBar {
  60.     gap: 5px !important;
  61.     padding: 2px 5px !important;
  62.    
  63. }
  64. .PinnedTabsBar .tab-wrapper {
  65.     height: 100%;
  66.     border-radius: 6px;
  67. flex-grow: 1;
  68. }
  69. .PinnedTabsBar .tab-wrapper .Tab .body{
  70.     border-radius: 6px;
  71. }
  72. .PinnedTabsBar .tab-wrapper .Tab .body::before {
  73.     border-radius: 6px;
  74. }
  75. .PinnedTabsBar .Tab[data-active="true"] .body {
  76.     border: 1px solid var(--custom-border);
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement