I want to remove the tiny border between the Tabs in a TabPane and their content. This border is part of the headers-region
, and I've put its background in green in the images below. My application (code below) looks like this:
with the tabs having a tiny green border separating them from their content:
However, I would like the border between the tabs and their content to be removed, so that the tabs look like they're connected to their content. I would like it to look like the following (which I created by editing the image above):
Here is the Java code for my application:
package pack;
import javafx.application.Application;
import javafx.geometry.Side;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.StackPane;
import javafx.scene.shape.Circle;
import javafx.stage.Stage;
public class TabPaneTesting extends Application {
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage stage) throws Exception {
StackPane tab1Content = new StackPane(new Circle(100));
Tab tab1 = new Tab("Tab 1", tab1Content);
TabPane tabPane = new TabPane(tab1, new Tab("Tab 2"));
tabPane.getStyleClass().add("tabtester");
tabPane.setSide(Side.LEFT);
Scene scene = new Scene(new StackPane(tabPane), 600, 400);
scene.getStylesheets().add(TabPaneTesting.class.getResource("/pack/tabstyle.css").toExternalForm());
stage.setScene(scene);
stage.show();
}
}
and here is the CSS (tabstyle.css
):
.tabtester .tab-content-area {
-fx-background-color: lightblue;
}
.tabtester .tab {
-fx-background-color: lightblue;
}
.tabtester .tab-header-area {
-fx-background-color: transparent;
}
.tabtester .tab-header-background {
-fx-background-color: red;
}
.tabtester .headers-region {
-fx-background-color: green;
-fx-padding: 0;
-fx-border-color: transparent;
-fx-border-width: 0;
}
As you can see in the CSS, I have tried removing any border and padding from the headers-region
, but that does not appear to work.
Any ideas? Thanks in advance.