I can not get the default blue border that is shown in the :focused
event.
I'm trying to solve this problem by CSS, but I can not.
My CSS code:
.tab-pane .tab-header-area .tab-header-background {
-fx-background-color: #333333;
}
.tab-pane {
-fx-tab-min-width:90px;
}
.tab{
-fx-background-insets: 0 1 0 1,0,0;
-fx-padding: 10 20;
}
.tab-pane .tab{
-fx-background-color: #333333;
}
.tab-pane .tab:selected
{
-fx-background-color: #FAFAFA;
}
.tab .tab-label {
-fx-alignment: CENTER;
-fx-text-fill: #CCCCCC;
-fx-font-size: 13px;
-fx-font-weight: bold;
}
.tab:selected .tab-label {
-fx-alignment: CENTER;
-fx-text-fill: #555555;
}
Result: