You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using this control in my personal project 'arduino IDE'. This control is great and very useful. I have a question. Is there any way to change the color of caret in Code Area? I know that the caret color is the same as "-fx-text-fill' , but it does not work. The default text color is also NOT changed by that value. Am I missing Something?
The text was updated successfully, but these errors were encountered:
janghyunq
changed the title
Changing caret color.
Changing caret color in Code area.
Oct 29, 2014
Sorry for late reply. I just added style class caret to the caret node. Caret node is a Path, so you can set any styleable properties of a Path via CSS. Namely, to change the caret color, you can use the following CSS:
.caret {
-fx-stroke: red;
}
This functionality is now available in the latest snapshot.
I am using this control in my personal project 'arduino IDE'. This control is great and very useful. I have a question. Is there any way to change the color of caret in Code Area? I know that the caret color is the same as "-fx-text-fill' , but it does not work. The default text color is also NOT changed by that value. Am I missing Something?
The text was updated successfully, but these errors were encountered: