skip to Main Content

CSS FX can't overlay the combobox arrow

here's the problem the css FX code is .custom-combobox .arrow-button { -fx-background-color: transparent; -fx-background-size: contain; -fx-background-repeat: no-repeat; -fx-background-position: center; -fx-background-image: url('../img/downArrow.png'); } .custom-combobox .list-cell { -fx-pref-height: 70px; -fx-pref-width: 150px; -fx-background-color: red; -fx-background-size: 100% 100%; -fx-background-position: center; -fx-alignment: center; } .custom-combobox…

VIEW QUESTION

JavaFX SplitPane Divider hover color css

I want to be able to assign a hover color via CSS to a SplitPane Divider in JavaFX. I am able to achive this by using the following CSS .split-pane:horizontal > .split-pane-divider { -fx-background-color: transparent; } .split-pane:horizontal > .split-pane-divider:hover {…

VIEW QUESTION
Back To Top
Search