私はcssスタイルのクラスを持っています:
.customTabPane {
-fx-tab-min-height: 20;
}
.customTabPane:top *.tab-header-area {
-fx-background-insets: 0, 0 0 1 0;
-fx-padding: 5 0 0 0;
}
.customTabPane:top *.tab {
-fx-padding: 0 0 0 0;
}
.customTabPane *.tab-header-background {
-fx-background-color: red;
}
ただし、*。tab-header-area、*。tab-header-backgroundは、「customTabPane」()だけでなく、アプリケーション内のすべてのTabPaneに適用されますtabPane.getStyleClass().add("customTabPane")
。どうすればこれを修正できますか?