Advertisement
geraldandy

tooltips gone but buttons still work

Oct 15th, 2024
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 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. [tooltip] {
  51. display: none !important;
  52. }
  53.  
  54. #search-icon-legacy::before,
  55. [tooltip]::after, [title]::after {
  56. content: none !important;
  57. }
  58.  
  59. /* Hide paper tooltip */
  60. .yt-spec-icon-shape__tooltip,
  61. ytd-searchbox .yt-paper-tooltip {
  62. display: none !important;
  63. }
  64. }
  65.  
  66. @-moz-document domain("youtube.com") {
  67. div#scroll-container.style-scope.yt-chip-cloud-renderer {
  68. display: none;
  69. }
  70.  
  71. @-moz-document domain("youtube.com") {
  72. /* Hide the tooltip on the filter button */
  73. tp-yt-paper-tooltip {
  74. display: none !important;
  75. }
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85. @-moz-document domain("youtube.com") {
  86. div#left-section.style-scope.ytd-expandable-metadate-renderer {
  87. display: none;
  88. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement