Advertisement
geraldandy

in case ibreak my usercontent

Oct 15th, 2024
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. /* Background styling for Firefox pages */
  2. @-moz-document url(about:home), url(about:newtab), url(about:privatebrowsing) {
  3. .click-target-container *, .top-sites-list * {
  4. color: #fff !important;
  5. text-shadow: 2px 2px 2px #222 !important;
  6. }
  7. body::before {
  8. content: "";
  9. z-index: -1;
  10. position: fixed;
  11. top: 0;
  12. left: 0;
  13. background: #f9a no-repeat url(img/wp2757868-1140009044.gif) center;
  14. background-size: cover;
  15. width: 100vw;
  16. height: 100vh;
  17. }
  18. }
  19.  
  20. /* Remove the settings icon */
  21. .icon.icon-settings {
  22. display: none !important;
  23. }
  24.  
  25. /* YouTube specific tweaks */
  26. @-moz-document domain("youtube.com") {
  27. /* Hide suggestions and search bar suggestions */
  28. #suggestions, .sbsb_a {
  29. display: none !important;
  30. }
  31.  
  32. /* Hide the hamburger menu and various YouTube logos */
  33. #guide-button, #logo-icon-container, ytd-topbar-logo-renderer,
  34. a[href="/"] {
  35. display: none !important;
  36. }
  37.  
  38. /* Hide "Skip Navigation" */
  39. #skip-navigation {
  40. display: none !important;
  41. }
  42.  
  43. /* Hide "You" button in side menus */
  44. ytd-guide-entry-renderer[title="You"],
  45. ytd-mini-guide-entry-renderer[aria-label="You"] {
  46. display: none !important;
  47. }
  48.  
  49. /* Remove tooltips on buttons */
  50. #search-icon-legacy[title="Search"],
  51. #search-icon-legacy[aria-label="Search"],
  52. [tooltip], [title] {
  53. pointer-events: none !important;
  54. }
  55.  
  56. #search-icon-legacy::before,
  57. [tooltip]::after, [title]::after {
  58. content: none !important;
  59. }
  60.  
  61. /* Hide paper tooltip */
  62. .yt-spec-icon-shape__tooltip,
  63. ytd-searchbox .yt-paper-tooltip {
  64. display: none !important;
  65. }
  66. }
  67.  
  68. @-moz-document domain("youtube.com") {
  69. div#scroll-container.style-scope.yt-chip-cloud-renderer {
  70. display: none;
  71. }
  72.  
  73. @-moz-document domain("youtube.com") {
  74. /* Hide the tooltip on the filter button */
  75. tp-yt-paper-tooltip {
  76. display: none !important;
  77. }
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87. @-moz-document domain("youtube.com") {
  88. div#left-section.style-scope.ytd-expandable-metadate-renderer {
  89. display: none;
  90. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement