-
Bug
-
Resolution: Incomplete
-
P4
-
None
-
jfx21
-
generic
-
generic
A DESCRIPTION OF THE PROBLEM :
I am trying to style my Javafx 21 program through a css file. I noticed that when the background color is bright colors in the selected text, the text color does not change and remains white in textboxes and textareas. When I examined the modena.css file, I saw an incorrect parameter.
.text-input:focused {
...
-fx-highlight-text-fill: white;
...
}
It shoud be "-fx-focused-text-base-color", not "white".
When I researched this error, I saw that this bug was fixed with the 8u20 version, but now the same error was made again.
previous bug reports:
https://bugs.openjdk.org/browse/JDK-8096722
https://hg.openjdk.org/openjfx/8u-dev/rt/rev/5044fc222f5d
I am trying to style my Javafx 21 program through a css file. I noticed that when the background color is bright colors in the selected text, the text color does not change and remains white in textboxes and textareas. When I examined the modena.css file, I saw an incorrect parameter.
.text-input:focused {
...
-fx-highlight-text-fill: white;
...
}
It shoud be "-fx-focused-text-base-color", not "white".
When I researched this error, I saw that this bug was fixed with the 8u20 version, but now the same error was made again.
previous bug reports:
https://bugs.openjdk.org/browse/JDK-8096722
https://hg.openjdk.org/openjfx/8u-dev/rt/rev/5044fc222f5d
- relates to
-
JDK-8096722 -fx-highlight-text-fill is hardcoded for .text-input:focused
-
- Resolved
-