-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathfullpackstyling.css
More file actions
80 lines (68 loc) · 1.69 KB
/
Copy pathfullpackstyling.css
File metadata and controls
80 lines (68 loc) · 1.69 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
.button
{
-fx-background-color : #F3F3F3;
}
.button:hover
{
-fx-background-color : #A1C1F4 ;
}
.button:pressed
{
-fx-background-color : #73A3EF ;
}
.table-view .column-header,
.table-view .column-header-background .filler {
-fx-cell-size : 20;
-fx-background-color: #2D75E8;
}
.table-view .column-header .label{
-fx-text-fill: white;
-fx-font-weight: bold;
-fx-alignment: CENTER_LEFT;
}
.table-view .cell{
-fx-cell-size: 30;
-fx-alignment: center-left;
-fx-text-fill: #000000;
-fx-alignment: CENTER_LEFT;
}
.table-row-cell:selected {
-fx-background-color: rgb(127, 172, 243);
}
.table-row-cell:selected .text {
-fx-fill : white ;
}
/* scroll bar starts here */
/* The increment and decrement button CSS class of scrollbar */
.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( #2D75E8,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( #2D75E8,90%);
-fx-background-insets: 2, 0, 0;
-fx-background-radius: 2em;
}
/* chart properties */
.chart {
-fx-padding: 10px;
-fx-background-color: transparent;
-fx-legend-visible: false;
}
.chart-plot-background {
-fx-background-color:transparent;
}
.chart-pie {
-fx-border-color: derive(-fx-pie-color, 1%);
-fx-border-width: 0px;
}