You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123 lines
3.0 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. .root {
  2. -fx-font-family: Roboto;
  3. src: "/resources/roboto/Roboto-Regular.ttf";
  4. -fx-text-fill: white;
  5. -fx-background-color: #14161d;
  6. /* rgb(38,38,38) */
  7. }
  8. .text-white {
  9. -fx-text-fill: white;
  10. }
  11. .clear-list-view .scroll-bar:horizontal .track,
  12. .clear-list-view .scroll-bar:vertical .track {
  13. -fx-background-color: transparent;
  14. -fx-border-color: transparent;
  15. -fx-background-radius: 0em;
  16. -fx-border-radius: 2em;
  17. }
  18. .clear-list-view .scroll-bar:horizontal .increment-button,
  19. .clear-list-view .scroll-bar:horizontal .decrement-button {
  20. -fx-background-color: transparent;
  21. -fx-background-radius: 0em;
  22. -fx-padding: 0 0 10 0;
  23. }
  24. .clear-list-view .scroll-bar:vertical .increment-button,
  25. .clear-list-view .scroll-bar:vertical .decrement-button {
  26. -fx-background-color: transparent;
  27. -fx-background-radius: 0em;
  28. -fx-padding: 0 10 0 0;
  29. }
  30. .clear-list-view .scroll-bar .increment-arrow,
  31. .clear-list-view .scroll-bar .decrement-arrow {
  32. -fx-shape: " ";
  33. -fx-padding: 0;
  34. }
  35. .clear-list-view .scroll-bar:horizontal .thumb,
  36. .clear-list-view .scroll-bar:vertical .thumb {
  37. -fx-background-color: derive(black, 90%);
  38. -fx-background-insets: 2, 0, 0;
  39. -fx-background-radius: 2em;
  40. }
  41. .scroll-pane .scroll-bar:horizontal .track,
  42. .scroll-pane .scroll-bar:vertical .track {
  43. -fx-background-color: transparent;
  44. -fx-border-color: transparent;
  45. -fx-background-radius: 0em;
  46. -fx-border-radius: 2em;
  47. }
  48. .scroll-pane .scroll-bar:horizontal .increment-button,
  49. .scroll-pane .scroll-bar:horizontal .decrement-button {
  50. -fx-background-color: transparent;
  51. -fx-background-radius: 0em;
  52. -fx-padding: 0 0 10 0;
  53. }
  54. .scroll-pane .scroll-bar:vertical .increment-button,
  55. .scroll-pane .scroll-bar:vertical .decrement-button {
  56. -fx-background-color: transparent;
  57. -fx-background-radius: 0em;
  58. -fx-padding: 0 10 0 0;
  59. }
  60. .scroll-pane .scroll-bar .increment-arrow,
  61. .scroll-pane .scroll-bar .decrement-arrow {
  62. -fx-shape: " ";
  63. -fx-padding: 0;
  64. }
  65. .scroll-pane .scroll-bar:horizontal .thumb,
  66. .scroll-pane .scroll-bar:vertical .thumb {
  67. -fx-background-color: derive(black, 90%);
  68. -fx-background-insets: 2, 0, 0;
  69. -fx-background-radius: 2em;
  70. }
  71. .scroll-pane {
  72. -fx-background-color: transparent;
  73. }
  74. .scroll-pane > .viewport {
  75. -fx-background-color: transparent;
  76. }
  77. .clear-list-view {
  78. -fx-background-color: rgba(28, 28, 28, 28, 0.4);
  79. -fx-text-fill: white;
  80. -fx-background-radius: 20px;
  81. -fx-padding: 5px 10px;
  82. }
  83. .clear-list-view .list-cell {
  84. -fx-background-color: transparent;
  85. -fx-text-fill: white;
  86. }
  87. .clear-list-view .list-cell:selected {
  88. -fx-background-color: rgba(0, 0, 0, 0.2);
  89. -fx-text-fill: white;
  90. -fx-background-radius: 20px;
  91. }
  92. .clear-list-view .list-cell:hover {
  93. -fx-background-color: rgba(0, 0, 0, 0.1);
  94. -fx-text-fill: white;
  95. -fx-background-radius: 20px;
  96. }
  97. .clear-list-view .list-cell:selected:hover {
  98. -fx-background-color: rgba(0, 0, 0, 0.3);
  99. -fx-text-fill: white;
  100. -fx-background-radius: 20px;
  101. }
  102. .clear-list-view:focused .list-cell:selected {
  103. -fx-background-color: rgba(0, 0, 0, 0.3);
  104. -fx-text-fill: white;
  105. -fx-background-radius: 20px;
  106. }