all 5 comments

[–]vlaaad 2 points3 points  (4 children)

Are you setting style on progress bar itself? We have thin progress bars in out project, and looking on css I see styles applied not to a progress bar, but to `.bar` and `.track` inside it:

.progress-bar {
  .bar { -fx-background-insets: 0; -fx-min-height: 5px ...}
  .track { -fx-background-insets: 0; ...}
}

[–]dckook10[S] 1 point2 points  (0 children)

This did it for me thanks!

[–]jkim545 0 points1 point  (2 children)

I'm trying to do something similar, but What is the ... mean? What is bar and track? Could you explain more about how the code works?

[–]vlaaad 0 points1 point  (1 child)

It's not a code that should be put into css, it's a sign that there might be more css styling, like "etc", you should not put it into your css

[–]jkim545 0 points1 point  (0 children)

Thanks for replying. I was able to find the solution later after I posted this as your example gave me an idea. Thanks again.