Make navigator also light up when clicking the target icon

In trying to find elements with the same classes we could click on the target icon below the selector field. (The one that indicates how many elements has the same class) In doing this, the box of every element with the same class turns pink.

But a nice step-up would be to make the navigator's elements also get highlighted which is actually more easier to see than trying to find elements that have pink borders. This also helps with finding for hidden elements or if the website's design makes it harder for us to see the pink border frame.

  • Shane Rimoro
  • Jun 14 2021
  • Reviewed
  • Elliot Michel commented
    June 15, 2021 10:22

    While the XML attribute was introduced in API 27, the support for a light navigation bar was introduced one version earlier, in API 26, via SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR.

    Therefore, to target the earliest devices that support it, you'll have do it via code, rather than XML styles.


    upsers

  • +2