JavaFX JFoenix - 我无法更改选项卡选择栏的颜色

JavaFX JFoenix - I can't change the color of the Tabs Selection Bar

我使用的是 1.7.0 版的 jfoenix,但我无法更改选项卡选择栏的颜色:(

除了更改选项卡选择汽车颜色外,一切正常。 谁能帮我解决这个问题。

这是我使用的代码:

.jfx-tab-pane
{
  -fx-padding: 1px;
  -fx-background-color: blue, -fx-control-inner-background;
  -fx-background-insets: 0, 1;
}

.jfx-tab-pane .headers-region
{
  -fx-background-color: cornflowerblue;
}

.jfx-tab-pane .tab-header-background
{
  -fx-background-color: cornflowerblue;
}

.jfx-tab-pane .tab-header-area .jfx-rippler
{
  -jfx-rippler-fill: orange;
}

.jfx-tab-pane .tab-header-area .tab-selected-line
{
  -fx-stroke: red;
}

非常感谢。

这对我有用:

.jfx-tab-pane:top .depth-container .tab-header-area .headers-region .tab-selected-line {
    -fx-background-color: green;
}

我正在使用 SceneBuilder。我通过显示 CSS 分析器,然后单击屏幕右下角的 CSS 选择 mod 栏本身来进入这条路径。

然后乱搞,你原来的路径也行:

.jfx-tab-pane .tab-header-area .tab-selected-line {
    -fx-background-color: #ffffff;
}

似乎只是将 "stroke" 更改为背景色。希望这能有所帮助!这也让我很沮丧。哦,我决定尝试背景色,因为它对大多数其他颜色变化都有效,并且 CSS 分析器在选择元素时将其列为字段。尝试进行更改时很难找出这些属性的名称。

在file.css

.tab-background{
-fx-background-color: #ff6e37;
}

在场景生成器中 preview/scene 风格 sheets/add 风格 sheets/search for mi file.css

在 properties/Style Class/tab-background
tab-background 是你在这种情况下的功能,我希望它有用