我用application.e4xmi 创建了我的应用程序工具栏。
此后我调整了我的.css如下
/* JavaFX CSS - Main CSS-File */
.root {
-fx-base: rgb(222, 234, 247);
-fx-background: rgb(222, 234, 247);
}
.tab {
-fx-background-color: linear-gradient(to top, -fx-base, derive(-fx-base,30%));
}
.menu-bar {
-fx-background-color: linear-gradient(to bottom, -fx-base, derive(-fx-base,30%));
}
.tool-bar > .container{
}
.tool-bar:vertical {
}
.tool-bar:horizontal {
-fx-background: #ececec;
-fx-base: #ececec;
}
.tree-view{
-fx-focus-color: #f21a3f;
}
/*.table-view {
-fx-control-inner-background: rgb(222, 234, 247);
-fx-table-cell-border-color:derive(-fx-base,+10%);
-fx-table-header-border-color:derive(-fx-base,+20%);
} */
.split-pane:horizontal > * > .split-pane-divider {
-fx-control-inner-background : rgb(255, 255, 255);
-fx-border-color: transparent -fx-base transparent -fx-base;
-fx-background-color: transparent, derive(-fx-base,20%);
-fx-background-insets: 0, 0 1 0 1;
}
.my-gridpane {
-fx-background-color: radial-gradient(radius 100%, derive(-fx-base,20%), derive(-fx-base,-20%));
}
.separator-label {
-fx-text-fill: orange;
}
现在我正在尝试在我的 Eclipse RCP 应用程序中更改工具栏高亮区域的背景颜色。
任何建议将不胜感激。