Advertisement
Guest User

Untitled

a guest
Apr 20th, 2023
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.11 KB | None | 0 0
  1. /*** Right-click menu ***/
  2.  
  3. menupopup:not(.in-menulist){
  4.   --menu-border-color: black !important;
  5.   --panel-border-color: var(--menu-border-color) !important;
  6.   --panel-background: #1E2021 !important;
  7. }
  8.  
  9. menupopup:not(.in-menulist) menuseparator {
  10.  --menu-border-color: black !important;
  11.  border-top: 1px solid var(--menu-border-color) !important;
  12. }
  13.  
  14. menupopup:not(.in-menulist){
  15.   --menu-border-color: black !important;
  16.   --panel-border-color: var(--menu-border-color) !important;
  17. }
  18.  
  19. /*** Drop-down menus menu ***/
  20.  
  21. :root {
  22.   --panel-separator-color: black !important;
  23. }
  24.  
  25. html#main-window menupopup:not(.in-menulist, [placespopup]) menuseparator,
  26. toolbarbutton menupopup[placespopup] menuseparator::before {
  27.   --menu-border-color: black !important;
  28. }
  29.  
  30. /*** Nav bar horizontal seperators ***/
  31.  
  32. :root{
  33. --autocomplete-popup-separator-color: black !important;
  34. }
  35.  
  36. /*** Tooltips ***/
  37.  
  38. tooltip {
  39.     background-color: #1E2021!important;
  40.     color: white!important;
  41.     border-color: black!important;
  42. }
  43.  
  44. /*** Statuspanel ***/
  45.  
  46. :root #statuspanel-label{
  47.   background-color: rgb(30,32,33) !important;
  48.   color: rgb(255,255,255) !important;
  49.   border-color: black !important;
  50. }
  51.  
  52. /*** Footer & Container ***/
  53.  
  54. #customization-footer {
  55.     border: black !important;
  56.     background-color: #1E2021 !important;
  57. }
  58.  
  59. #customization-container {
  60.     background-color: #1E2021 !important;
  61.     background-image: none !important;
  62. }
  63.        
  64. /*** Tree Style Tabs ***/
  65.  
  66. /* Hide main tabs toolbar */
  67. #main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar > .toolbar-items {
  68.     opacity: 0;
  69.     pointer-events: none;
  70. }
  71. #main-window:not([tabsintitlebar="true"]) #TabsToolbar {
  72.     visibility: collapse !important;
  73. }
  74.  
  75. /* Sidebar min and max width removal */
  76. #sidebar-box {
  77.     max-width: none !important;
  78.     min-width: 0px !important;
  79. }
  80. /* Hide splitter, when using Tree Style Tab. */
  81. #sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] + #sidebar-splitter {
  82.     display: none !important;
  83. }
  84. /* Hide sidebar header, when using Tree Style Tab. */
  85. #sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar-header {
  86.     visibility: collapse;
  87. }
  88.  
  89. /* Shrink sidebar until hovered, when using Tree Style Tab. */
  90. :root {
  91.     --thin-tab-width: 30px;
  92.     --wide-tab-width: 200px;
  93. }
  94. #sidebar-box:not([sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"]) {
  95.     min-width: var(--wide-tab-width) !important;
  96.     max-width: none !important;
  97. }
  98. #sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] {
  99.     position: relative !important;
  100.     transition: all 100ms !important;
  101.     min-width: var(--thin-tab-width) !important;
  102.     max-width: var(--thin-tab-width) !important;
  103. }
  104. #sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"]:hover {
  105.     transition: all 200ms !important;
  106.     transition-delay: 0.2s !important;
  107.     min-width: var(--wide-tab-width) !important;
  108.     max-width: var(--wide-tab-width) !important;
  109.     margin-right: calc((var(--wide-tab-width) - var(--thin-tab-width)) * -1) !important;
  110.     z-index: 1;
  111. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement