1

I have customize the Dialog popup using This Link But i can't able to change the title color please see the image below.

enter image description here

And is it possible to add a CSS to this popup, and how to custimize the ok button design alone? please help.

Karthi Keyan
  • 804
  • 6
  • 18

1 Answers1

2

Follow this answer and add

.dialog-pane:header .header-panel .label {
    -fx-font-size: 1.167em; /* 14px */
    -fx-wrap-text: true;
    -fx-text-fill: white;
}

to the css file.

... and how to custimize the ok button design alone?

One way can be to lookup the OK button then apply your custom css styles

Button button = ( Button ) alert.getDialogPane().lookupButton( ButtonType.OK );
button.getStyleClass().add( "my-ok-button" );
Community
  • 1
  • 1
Uluk Biy
  • 48,655
  • 13
  • 146
  • 153