Uploaded image for project: 'Mojang Web Services'
  1. Mojang Web Services
  2. WEB-7165

Invisible hover text for feedback links on community page

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: Normal Normal
    • minecraft.net
    • None
    • 1246352

      Hovering over the green links of the feedback section on the community page makes them completely white and unreadable:
      https://www.minecraft.net/en-us/community#feedback-section

      This is cause by some inline styles setting a white background for the text, which is overwriting the black background intended for hover. As the text color for hover is also set to white, this make the text invisible.

      It seems like there already is an extra specific rule with the black background for hover in the feedback section:

      #feedback-section .text-generic p a:hover {
          background-color: #000;
      }
      

      However it's missing an !important to be able to overwrite the inline style rule:

      #feedback-section .text-generic p a:hover {
          background-color: #000 !important;
      }
      

            mojangweb [Mojang] Web Team
            Markus_Rost MarkusRost
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: