删除 JavaFX 中控件下方的白线

Remove the white line beneath a control in JavaFX

如何删除进度条下方那条恼人的小白线(并将其设为深蓝色或浅蓝色)?复选框和按钮有相同的白线,但它们应该是蓝色的!

我设置了:

-fx-text-box-border: #284a81;
-fx-control-inner-background: #284a81;

您需要让 -fx-shadow-highlight-color 不可见:

.progress-bar {
    -fx-text-box-border: #284a81;
    -fx-control-inner-background: #284a81;
    -fx-shadow-highlight-color: transparent;
}