1+ .auto-complete-popup {
2+ -fx-background-color : transparent;
3+ }
4+
5+ .auto-complete-popup > .list-view {
6+ -fx-background-color : -var-menu-background-color;
7+ -fx-background-insets : 0 ;
8+ -fx-background-radius : 3px ;
9+ -fx-border-color : -var-border-color;
10+ -fx-border-width : 1px ;
11+ -fx-border-radius : 2px ;
12+ -fx-effect : -fx-shadow-menu;
13+ -fx-padding : 0px ;
14+ }
15+
16+ .auto-complete-popup > .list-view > .virtual-flow > .clipped-container {
17+ -fx-padding : 0px ;
18+ }
19+
20+ .auto-complete-popup > .list-view > .virtual-flow > .clipped-container > .sheet > .list-cell {
21+ -fx-background : transparent;
22+ -fx-padding : 0px 0px 0px 4px ;
23+ -fx-background-color : -fx-background;
24+ -fx-cell-size : 26 ;
25+ -fx-font-family : "Open Sans SemiBold" ;
26+ -fx-font-size : 13px ;
27+ }
28+
29+ .auto-complete-popup > .list-view > .virtual-flow > .clipped-container > .sheet > .list-cell : filled : selected {
30+ -fx-background : transparent;
31+ -fx-text-fill : -var-font-color;
32+ }
33+
34+ .auto-complete-popup > .list-view > .virtual-flow > .clipped-container > .sheet > .list-cell : filled : selected : hover ,
35+ .auto-complete-popup > .list-view > .virtual-flow > .clipped-container > .sheet > .list-cell : filled : hover {
36+ -fx-background : -var-menu-hover-color;
37+ -fx-text-fill : -var-font-focused-hover-color;
38+ }
39+
40+ .auto-complete-popup > .list-view > .placeholder > .label {
41+ -fx-text-fill : -var-font-color;
42+ }
43+
44+ .auto-complete-popup > .list-view > .placeholder > .label {
45+ -fx-text-fill : derive (-fx-control-inner-background, -30% );
46+ }
0 commit comments