Hi,
Thank a lot for your lib, but i have a new problem with RichTextFx. I use v0.6.10 of your lib.
I have a StyleClassedTextArea and i need to change color of text by css styling.
With this java code :
myText.getStyleClass().add("markdown-editor");
I tried try many things in css.
.markdown-editor {
-fx-background-color:#000;
-fx-text-fill: #FFF;
}
or
.markdown-editor {
-fx-background-color:#000;
-fx-fill: #FFF;
}
.markdown-editor .label{
-fx-background-color:#000;
-fx-text-fill: #FFF;
}
Whatever css, my background is black, but my text stay black despite my attempts.
Do you know any solution for change text color ?
Hi,
Thank a lot for your lib, but i have a new problem with RichTextFx. I use v0.6.10 of your lib.
I have a
StyleClassedTextAreaand i need to change color of text by css styling.With this java code :
I tried try many things in css.
or
Whatever css, my background is black, but my text stay black despite my attempts.
Do you know any solution for change text color ?