Advertisement
Guest User

menu tweaks

a guest
Oct 17th, 2022
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.28 KB | None | 0 0
  1. /* This line no longer seems necessary with this change: */
  2. #main_wrapper > div:not(#site_headers_super_wrap) a:visited:hover{color:/*[[link-visited-H]]*/;}
  3.  
  4. /* So you can put this back in original position (now line 728): */
  5. a:visited:hover{color:/*[[link-visited-H]]*/;}
  6.  
  7. /* These also don't seem necessary anymore unless I'm missing something: */
  8. #main_wrapper > #site_headers_super_wrap a:visited:hover{color:/*[[text-H]]*/; text-decoration: none;}
  9. #main_wrapper > #site_headers_super_wrap a:visited{color:/*[[main-text]]*/; text-decoration: none;}
  10.  
  11. /* Additional tweaks */
  12.  
  13. /* Don't make Buy Music link grey: */
  14. #main_wrapper > #site_headers_super_wrap a:not(.buy-music){color:/*[[main-text]]*/; text-decoration: none;}
  15. /* Make Buy Music hover grey: */
  16. #main_wrapper > #site_headers_super_wrap a.buy-music:hover{color:/*[[main-text]]*/; text-decoration: none;}
  17. /* Note, hover rule now has to come last for this work: */
  18. #main_wrapper > #site_headers_super_wrap a:hover{color:/*[[text-H]]*/; text-decoration: none;} /*
  19. /* Apply the new colors to submenu icons too: */
  20. #main_wrapper > #site_headers_super_wrap a .icon-caret-up{color:/*[[main-text]]*/; text-decoration: none;}
  21. #main_wrapper > #site_headers_super_wrap a:hover .icon-caret-up{color:/*[[text-H]]*/; text-decoration: none;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement