Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8243329

proposal to fix bug https://bugs.openjdk.java.net/browse/JDK-8225767

XMLWordPrintable

    • x86_64
    • windows_10

      A DESCRIPTION OF THE PROBLEM :
      Graphics of menu items are displayed with wrong graphic color because of a bug in modena.css.
      A simple change in modena.css fix the issue.
      Replace

      .menu-item > .label {
          -fx-text-fill: -fx-text-base-color;
      }

      .menu-item:focused > .label {
          -fx-text-fill: -fx-focused-text-base-color;
      }

      by
      .menu-item .label {
          -fx-text-fill: -fx-text-base-color;
      }

      .menu-item:focused .label {
          -fx-text-fill: -fx-focused-text-base-color;
      }

      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      cf https://bugs.openjdk.java.net/browse/JDK-8225767

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
      cf https://bugs.openjdk.java.net/browse/JDK-8225767
      ACTUAL -
      cf https://bugs.openjdk.java.net/browse/JDK-8225767

      ---------- BEGIN SOURCE ----------
      cf https://bugs.openjdk.java.net/browse/JDK-8225767
      ---------- END SOURCE ----------

            aghaisas Ajit Ghaisas
            webbuggrp Webbug Group
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated: