-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathapplication.css
More file actions
94 lines (76 loc) · 1.85 KB
/
Copy pathapplication.css
File metadata and controls
94 lines (76 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
.text-area, .text-field {
-fx-text-fill: rgba(1,1,1,.5);
-fx-background-color: rgba(0,0,0,0);
-fx-border-color: rgba(0,0,0,0);
}
.text-area:hover, .text-field:hover {
-fx-text-fill: rgba(1,1,1,1);
-fx-border-color: rgba(54,143,179,.3);
}
.text-field {
-fx-padding: 0px;
-fx-border-insets: 0px;
-fx-background-insets: 0px;
-fx-prompt-text-fill: black;
}
.text-area .scroll-pane {
-fx-background-color: transparent;
}
.text-area .scroll-pane .viewport{
-fx-background-color: transparent;
}
.text-area .scroll-pane .content{
-fx-background-color: transparent;
}
.text-area .scroll-bar:vertical {
-fx-opacity: 0;
}
.text-area:hover .scroll-bar:vertical {
-fx-opacity: .2;
}
.scroll-pane > .viewport {
-fx-background-color: transparent;
}
.scroll-pane {
-fx-background-color: transparent;
}
.button {
-fx-background-color: transparent;
}
.button:hover {
-fx-background-color: rgba(54,143,179,.3);
}
.button:focused {
-fx-background-color: transparent;
}
.button:pressed {
-fx-background-color: transparent;
}
.list-view .scroll-bar:horizontal .increment-arrow,
.list-view .scroll-bar:horizontal .decrement-arrow,
.list-view .scroll-bar:horizontal .increment-button,
.list-view .scroll-bar:horizontal .decrement-button {
-fx-padding:0;
}
.list-cell {
-fx-background-color: transparent;
-fx-padding: 0px;
}
.list-cell:selected {
-fx-background-color: rgba(0,0,0,0.2)
}
.list-view {
-fx-background-color: transparent;
}
.list-view .scroll-bar:vertical {
-fx-background-color: transparent;
}
.list-view .scroll-bar:vertical .thumb,
.list-view .scroll-bar:vertical .increment-arrow,
.list-view .scroll-bar:vertical .decrement-arrow {
-fx-opacity: 0.2;
}
.list-view .scroll-bar:vertical .increment-button:hover,
.list-view .scroll-bar:vertical .decrement-button:hover {
-fx-background-color: transparent;
}