AddMovieWindowStyle.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .text-area,
  2. .text-area .scroll-pane,
  3. .text-area .scroll-pane .viewport,
  4. .text-area .scroll-pane .content {
  5. -fx-background-color: transparent;
  6. }
  7. .scroll-pane,
  8. .scroll-pane .viewport,
  9. .scroll-pane .content {
  10. -fx-background-color: transparent;
  11. }
  12. .combo-box {
  13. -fx-background-color: #212121, #212121;
  14. -fx-background: #9f9f9f;
  15. -fx-color: #9f9f9f;
  16. }
  17. .combo-box .text-input {
  18. -fx-background-color: transparent, transparent;
  19. -fx-background: transparent;
  20. -fx-color: transparent;
  21. -fx-text-fill: #9F9F9F;
  22. }
  23. .combo-box .list-cell
  24. {
  25. -fx-background: #212121;
  26. -fx-text-fill: #9F9F9F;
  27. }
  28. .combo-box-popup .list-view .list-cell:filled:selected, .combo-box-popup .list-view .list-cell:filled:selected:hover
  29. {
  30. -fx-background: #212121;
  31. -fx-background-color: #212121;
  32. -fx-text-fill: #9F9F9F;
  33. }
  34. .combo-box-base:hover
  35. {
  36. -fx-color: #9f9f9f;
  37. -fx-text-fill: #212121;
  38. }
  39. .combo-box-popup .list-view
  40. {
  41. -fx-background-color: #212121, #212121;
  42. -fx-background-insets: 0, 1;
  43. -fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.6) , 8, 0.0 , 0 , 0 );
  44. -fx-text-fill: #9F9F9F;
  45. }