spreadsheetSample.css
2.8 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/* FIRST CELL */
.spreadsheet-cell.first-cell:filled:selected ,
.spreadsheet-cell.first-cell:filled:focused:selected,
.spreadsheet-cell.first-cell:filled:focused:selected:hover {
-fx-background-color: #8cb1ff;
}
.spreadsheet-cell.first-cell:hover {
-fx-background-color: #988490;
-fx-background-insets: 0, 0 0 1 0;
}
.spreadsheet-cell.first-cell{
-fx-background-color:-fx-table-cell-border-color,#77ABD6 ;
-fx-background-insets: 0, 0 1 1 0;
-fx-alignment: CENTER_LEFT;
}
/* SEPARATOR */
.spreadsheet-cell.separator{
-fx-background-color: white;
}
.spreadsheet-cell.separator:selected{
-fx-background-color: #8cb1ff;
}
/* COMPAGNIES */
.spreadsheet-cell.compagny:filled:selected ,
.spreadsheet-cell.compagny:filled:focused:selected,
.spreadsheet-cell.compagny:filled:focused:selected:hover {
-fx-background-color: #8cb1ff;
-fx-text-fill: -fx-selection-bar-text;
}
.spreadsheet-cell.compagny:hover,
.spreadsheet-cell.compagny:filled:focused {
-fx-background-color: #988490;
-fx-text-fill: -fx-text-inner-color;
-fx-background-insets: 0, 0 0 1 0;
}
.spreadsheet-cell.compagny{
-fx-background-color: -fx-table-cell-border-color, #ABC8E2;
-fx-background-insets: 0, 0 1 1 0;
-fx-alignment: center;
}
/** LOGO CELL **/
.spreadsheet-cell.logo{
-fx-background-color: white;
-fx-alignment: center;
}
.spreadsheet-cell.logo:hover{
-fx-background-color: #988490;
}
.spreadsheet-cell.logo:selected{
-fx-background-color: #8cb1ff;
-fx-alignment: center;
}
/* CELL EVERY 5 ROW */
.spreadsheet-cell.five_rows:filled:selected ,
.spreadsheet-cell.five_rows:filled:focused:selected,
.spreadsheet-cell.five_rows:filled:focused:selected:hover {
-fx-background-color: #8cb1ff ;
-fx-text-fill: -fx-selection-bar-text;
}
.spreadsheet-cell.five_rows:hover,
.spreadsheet-cell.five_rows:filled:focused {
-fx-background-color: #988490;
-fx-text-fill: -fx-text-inner-color;
-fx-background-insets: 0, 0 0 1 0;
}
.spreadsheet-cell.five_rows{
-fx-background-color: -fx-table-cell-border-color, #ccffff;
-fx-background-insets: 0, 0 1 1 0;
-fx-alignment: center;
}
/* CELL SPANNING */
.spreadsheet-cell.span{
-fx-alignment: center;
-fx-border-color : #3B0405;
-fx-border-width : 1;
}
.spreadsheet-cell.span:hover,
.spreadsheet-cell.span:selected{
-fx-alignment: center;
}
/* PICKERS */
.picker-label{
-fx-graphic: url("information.png");
-fx-background-color: white;
-fx-padding: 0 0 0 0;
-fx-alignment: center;
}
.picker-label-exclamation{
-fx-graphic: url("exclamation.png");
-fx-background-color: transparent;
-fx-padding: 0 0 0 0;
-fx-alignment: center;
}
.picker-label-security{
-fx-graphic: url("security-low.png");
-fx-background-color: transparent;
-fx-padding: 0 0 0 0;
-fx-alignment: center;
}