Advertisement
Guest User

userChrome.css

a guest
Oct 27th, 2023
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. /* grey #42414D */
  2. /** Fix tab icon (sound icon was replacing site icon) */
  3. /* Always show tab icon */
  4. .tab-icon-image {
  5. opacity: 1 !important;
  6. }
  7. /* Move tab sound icon to the top left */
  8. .tab-icon-overlay {
  9. /* top - left */
  10. top: -6px !important;
  11. inset-inline-end: 6px !important;
  12. width: 14px !important;
  13. height: 14px !important;
  14. padding: 1px !important;
  15. /* background */
  16. stroke: var(--tab-icon-overlay-stroke, black) !important;
  17. background: var(--tab-icon-overlay-stroke, black) !important;
  18. fill-opacity: 0.6 !important;
  19. /* icon color */
  20. color: #00DDFF !important;
  21. /* circle */
  22. border-radius: 10px !important;
  23. }
  24. .tab-icon-overlay:hover {
  25. /* background */
  26. fill-opacity: 1 !important;
  27. }
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement