-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdxball.css
65 lines (50 loc) · 1.47 KB
/
dxball.css
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
.table-view .column-header-background{
-fx-background-color: #262626;
}
.table-view .column-header-background .label{
-fx-background-color: transparent;
-fx-text-fill: #0ed9e0;
-fx-font-size: 30;
}
.table-view .column-header {
-fx-background-color: transparent;
}
.table-view .table-cell{
-fx-text-fill: #0ed9e0;
-fx-alignment: center;
-fx-font-size: 30;
}
.table-row-cell{
-fx-background-color: -fx-table-cell-border-color, #2b2a2a;
-fx-background-insets: 0, 0 0 1 0;
-fx-padding: 0.0em; /* 0 */
}
.table-row-cell:odd{
-fx-background-color: -fx-table-cell-border-color, #262626;
-fx-background-insets: 0, 0 0 1 0;
-fx-padding: 0.0em; /* 0 */
}
.table-row-cell:selected {
-fx-background-color: #005797;
-fx-background-insets: 0;
-fx-background-radius: 1;
}
.table-view .increment-button ,.table-view .decrement-button {
-fx-background-color:transparent;
-fx-background-radius: 2em;
}
/* The main scrollbar **track** CSS class */
.table-view .scroll-bar:horizontal .track,
.table-view .scroll-bar:vertical .track{
-fx-background-color: transparent;
-fx-border-color:derive( #000000,80%);
-fx-background-radius: 2em;
-fx-border-radius:2em;
}
/* The main scrollbar **thumb** CSS class which we drag every time (movable) */
.table-view .scroll-bar:horizontal .thumb,
.table-view .scroll-bar:vertical .thumb {
-fx-background-color:derive( #000000,90%);
-fx-background-insets: 2, 0, 0;
-fx-background-radius: 2em;
}