3b1b / 3Blue1Brown.com

https://www.3blue1brown.com
Other
358 stars 137 forks source link

Incorrect hover text color bug in the header #323

Open JayanAXHF opened 1 year ago

JayanAXHF commented 1 year ago

When you go to the header on 3blue1brown.com and hover on the background, the color for the page titles turns grey: image

Steps to reproduce

  1. Go to 3blue1brown.com.
  2. Hover over the header and observe
vincerubinetti commented 6 months ago

Not really a bug but a limitation of CSS at the time. But now this can be fixed with widespread browser support of :has():

.link:hover { color: blue }

header:has(.link:hover) .link:not(:hover) { opacity: 0.5 }