Marshall
07/09/2020, 9:13 PM.tabstack {
-fx-tab-max-height: 0 ;
}
.tabstack .tab-header-area {
visibility: hidden ;
}
Marshall
07/09/2020, 9:14 PMclass TabStyle : Stylesheet() {
companion object {
val tabStack by cssclass()
}
init {
tabStack {
tabMaxHeight = 0.px
}
}
}
Marshall
07/09/2020, 9:15 PMMarshall
07/09/2020, 9:34 PMtabPane = tabpane {
// hide the tab bar
stylesheet {
tabMaxHeight = 0.0
Stylesheet.tabHeaderArea {
visibility = FXVisibility.HIDDEN
}
}