Advertisement
Guest User

userchrome.css

a guest
Nov 28th, 2024
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. #appcontent
  2. > #tabbrowser-tabbox
  3. > #tabbrowser-tabpanels
  4. > .deck-selected
  5. > .browserContainer
  6. > .browserStack
  7. > browser {
  8. border-radius: 10px !important;
  9. margin: 10px !important;
  10. }
  11.  
  12. browser {
  13. background: linear-gradient(#262834, #262834);
  14. border-radius: 6px;
  15. }
  16.  
  17. .browserStack {
  18. padding: 10px;
  19. background: linear-gradient(#3b3f52, #3b3f52);
  20. }
  21.  
  22. .browserContainer {
  23. background-color: var(
  24. --lwt-accent-color-inactive,
  25. var(--lwt-accent-color)
  26. ) !important;
  27. background-image: var(--lwt-header-image), var(--lwt-additional-images) !important;
  28. background-repeat: no-repeat, var(--lwt-background-tiling) !important;
  29. background-position: right top, var(--lwt-background-alignment) !important;
  30. }
  31.  
  32. #titlebar {
  33. display: none !important;
  34. }
  35.  
  36. .titlebar-buttonbox-container {
  37. display: none !important;
  38. }
  39.  
  40. #forward-button,
  41. #back-button,
  42. #reload-button {
  43. display: none !important;
  44. }
  45.  
  46. #sidebar-button {
  47. margin-left: 10px !important;
  48. }
  49.  
  50. #navigator-toolbox:not(:hover) {
  51. --is-bar-visible: hidden;
  52. opacity: 0 !important;
  53. transition: height 200ms ease-in-out, opacity 175ms ease-in-out;
  54. }
  55.  
  56. #PersonalToolbar {
  57. display: none;
  58. }
  59.  
  60. #navigator-toolbox {
  61. position: fixed;
  62. z-index: 1;
  63. height: 15px;
  64. overflow: var(--is-bar-visible);
  65. right: 0;
  66. top: 0;
  67. width: calc(100% - 310px);
  68. transition: 0.1s !important;
  69. background-color: transparent !important;
  70. border-color: transparent !important;
  71. }
  72.  
  73. #navigator-toolbox:hover {
  74. height: 40px;
  75. opacity: 1 !important;
  76. transition: opacity 175ms ease-in-out;
  77. }
  78.  
  79. #navigator-toolbox:focus-within {
  80. height: 40px;
  81. opacity: 1 !important;
  82. transition: opacity 175ms ease-in-out;
  83. --is-bar-visible: visible;
  84. }
  85.  
  86. #nav-bar {
  87. background: #3b3f52 !important;
  88. border-radius: 10px;
  89. }
  90.  
  91. #urlbar-background {
  92. background: #3b3f52 !important;
  93. }
  94.  
  95. toolbarbutton[open="true"] {
  96. --is-bar-visible: visible !important;
  97. }
  98.  
  99. #sidebar-header {
  100. display: none;
  101. }
  102.  
  103. #sidebar-box {
  104. width: 200px;
  105. min-width: 190px !important;
  106. max-width: 300px !important;
  107. min-height: unset !important;
  108. max-height: unset !important;
  109. border-right: none !important;
  110. background-color: #3b3f52 !important;
  111. }
  112.  
  113. #sidebar-splitter {
  114. background-color: transparent !important;
  115. border: none !important;
  116. box-shadow: none !important;
  117. }
  118.  
  119. /* Hiding the header on new tab page */
  120. #main-window[BookmarksToolbarOverlapsBrowser] .newTabBrowserPanel,
  121. #main-window[BookmarksToolbarOverlapsBrowser] #sidebar-box {
  122. padding-top: 0 !important;
  123. }
  124.  
  125. @media (prefers-color-scheme: light) {
  126. .browserStack {
  127. background: linear-gradient(#dadce5, #dadce5);
  128. }
  129. #nav-bar,
  130. #urlbar-background {
  131. background: #dadce5 !important;
  132. }
  133. } /*# sourceMappingURL=userChrome.css.map */
  134.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement