Use css as,
.combo-box .arrow, .combo-box .arrow-button{ -fx-background-color: transparent; }
Sample Code ::
public class ComboboxSample extends Application { public static void main(String[] args) { launch(args); } final Button button = new Button("Send"); final Label notification = new Label(); final TextField subject = new TextField(""); final TextArea text = new TextArea(""); String address = " "; @Override public void start(Stage stage) { stage.setTitle("ComboBoxSample"); Scene scene = new Scene(new Group(), 450, 250);
Output:

source share