Advertisement
Guest User

Untitled

a guest
Jan 8th, 2024
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.57 KB | None | 0 0
  1. :root {
  2. --toolbarbutton-outer-padding: 2px !important;
  3. --toolbarbutton-inner-padding: 2px !important;
  4. --toolbar-start-end-padding: 2px !important;
  5. --urlbar-margin-inline: 2px !important;
  6. --tab-min-height: 0px !important;
  7. --toolbar-field-background-color: #22515c !important;
  8. --uc-active-tab-width: clamp(85px, 30vw, 200px);
  9. --uc-inactive-tab-width: clamp(85px, 25vw, 180px);
  10. --uc-urlbar-min-width: 380px;
  11. --uc-urlbar-max-width: 400px;
  12. --uc-toolbar-position: 4;
  13. --uc-urlbar-position: 1;
  14. --uc-page-action-margin: 3px;
  15. }
  16.  
  17. * { border-radius: 0 !important; }
  18.  
  19. /* URL Bar*/
  20. .urlbarView-row { min-height: 20px !important; }
  21. .urlbarView-row-inner { padding-block: 0 !important; }
  22. #navigator-toolbox { background: #181C28 !important; border: none !important; }
  23. #nav-bar { background: #181c28 !important; height: 20px; }
  24. #nav-bar { margin-top: 2px !important; margin-bottom: 2px !important; }
  25. #urlbar-container { width: auto !important; }
  26. #urlbar[focused] > #urlbar-background { background: #22515c !important; }
  27. #back-button { display: none !important; }
  28. #forward-button { display: none !important; }
  29. #urlbar-go-button{ display: none !important; }
  30. #tracking-protection-icon-container { display: none !important; }
  31. #page-action-buttons { display: none !important; }
  32. #unified-extensions-view {
  33. --uei-icon-size: 16px;
  34. --menu-panel-width-wide: 240px !important;
  35. .panel-header { display: none !important; margin-block: 0 !important; }
  36. .unified-extensions-item { margin-block: 0 !important; }
  37. .unified-extensions-item-message-deck { display: none; }
  38. .unified-extensions-item-menu-button { padding: 0 0 0 0 !important; }
  39. }
  40.  
  41. /* BOOKMARKS BAR */
  42. #PersonalToolbar { background: #22515c !important; margin-top: 0px; max-height: 14px !important; }
  43. #PersonalToolbar { border: 1px !important; }
  44. #PlacesToolbarItems { display: flex !important; justify-content: safe center !important;}
  45. #PlacesToolbar menu.bookmark-item,
  46. #PlacesToolbar menuitem.bookmark-item{ padding-block: 0px !important; }
  47.  
  48. /* TAB BAR */
  49. .tab-close-button { display: none !important }
  50. .tabbrowser-tab { max-height: 20px !important; box-shadow: none !important; }
  51. .tabbrowser-tab { margin-top: 2px !important; margin-bottom: 2px !important; }
  52. .tabbrowser-tab[selected="true"] .tab-content { background-color: #22515c; color: #F0C674; }
  53. .tabbrowser-tab:hover:not([selected="true"]) .tab-content { background: #22515c !important; }
  54. .tabbrowser-tab img { margin-bottom: 0px !important; }
  55. .tabbrowser-tab[selected][fadein]:not([pinned]) { max-width: var(--uc-active-tab-width) !important; }
  56. .tabbrowser-tab[fadein]:not([selected]):not([pinned]) { max-width: var(--uc-inactive-tab-width) !important; }
  57. #alltabs-button { display: none !important; }
  58. #identity-permission-box { display: none !important; }
  59. #identity-box { color: white }
  60.  
  61. /* Disable titlebar */
  62. .titlebar-buttonbox {display: none !important;}
  63. .titlebar-spacer { display: none; }
  64. .urlbar-spacer { display: none; }
  65.  
  66. /* ONE-LINE */
  67. @media (min-width: 600px) {
  68. #navigator-toolbox { display: flex; flex-wrap: wrap; flex-direction: row; }
  69. #nav-bar { order: var(--uc-urlbar-position); width: var(--uc-urlbar-min-width); }
  70. #nav-bar #urlbar-container { min-width: 0px !important; width: auto !important; }
  71. #titlebar { order: 2; width: calc(100vw - var(--uc-urlbar-min-width) - 1px); }
  72. #PersonalToolbar { order: var(--uc-toolbar-position); width: 100%; }
  73. #navigator-toolbox:focus-within #nav-bar { width: var(--uc-urlbar-max-width); }
  74. #navigator-toolbox:focus-within #titlebar { width: calc(100vw - var(--uc-urlbar-max-width) - 1px); }
  75. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement