Leonel FOFOU
2026-07-28 32450e295200b2bc7896518ff74161ff26772e2d
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
/* Charte du studio : alignee sur le theme par defaut de mgt-manuel-core. */
 
.studio-root {
    -fx-background-color: #ffffff;
    -fx-font-size: 13px;
}
 
.studio-section {
    -fx-font-weight: bold;
    -fx-text-fill: #323232;
    -fx-padding: 6 0 0 0;
}
 
.button {
    -fx-background-color: #f0f0f0;
    -fx-border-color: #bac0c0;
    -fx-border-radius: 5;
    -fx-background-radius: 5;
    -fx-text-fill: #323232;
    -fx-cursor: hand;
}
 
.button:hover {
    -fx-background-color: #deecf5;
}
 
.button:disabled {
    -fx-opacity: 0.45;
    -fx-cursor: default;
}
 
.btn-primary {
    -fx-background-color: #deecf5;
}
 
.text-field, .text-area, .combo-box {
    -fx-background-color: #ffffff;
    -fx-border-color: #d1d1d1;
    -fx-border-radius: 5;
    -fx-background-radius: 5;
}
 
.help-sources-list {
    -fx-background-color: #ffffff;
    -fx-border-color: #d1d1d1;
    -fx-border-width: 1;
    -fx-border-radius: 5;
    -fx-background-radius: 5;
}
 
.help-sources-list .list-cell {
    -fx-background-color: #ffffff;
    -fx-text-fill: #323232;
}
 
.help-sources-list .list-cell:hover {
    -fx-background-color: #f0f6f2;
}
 
.help-sources-list .list-cell:selected {
    -fx-background-color: rgba(214, 236, 219, 1);
    -fx-text-fill: #1a1a1a;
}