javafx - controlsfx popover style CSS -


how can change, css, left arrow fill color in popover javafx?

i tried following, didn't work.

   .popover > .content {     -fx-fill: yellow !important;     -fx-background-color: red !important;   }  popover  > .content > .accordion > .titled-pane > .title > .arrow-button > .arrow {     -fx-background-color: red !important;     -fx-fill: red !important;     -fx-pref-height: 34.0 !important; }  .popover  > .content > .accordion > .titled-pane > .title > .arrow-button {     -fx-background-color: yellow !important;     -fx-fill:yellow !important; } 

i solved using:

.popover > .border {     -fx-stroke-width: 0;     -fx-fill: rgba(255,255,255,1) !important;     -fx-effect: dropshadow(gaussian, lightgray, 6.0, 0.0, 1.0, 1.0); } 

Comments

Popular posts from this blog

1111. appearing after print sequence - php -

java - WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/board/] in DispatcherServlet with name 'appServlet' -

Ruby on Rails, ActiveRecord, Postgres, UTF-8 and ASCII-8BIT encodings -