I'm trying to change the title color of my TitledPane
when they are pressed, but I can't manage to do that.
This is my css:
.titled-pane * {
-fx-background-color: transparent;
}
.titled-pane .title{
-fx-background-color: #666666;
}
.titled-pane .title:hover {
-fx-background-color: #AAAAAA;
}
.titled-pane .title:pressed {
-fx-background-color: #DDDDDD;
-fx-text-fill: black; // does not work
}
The background settings work fine, so I don't understand what's the problem.
I've seen this question, but I don't know how to apply the solution to my case.
Thanks in advance.