Kenmegne
6 days ago 908e81dd173f380879d5fabeb5794d5b7a76df0e
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
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 3 mars 2022, 14:50:08
    Author     : MGT_DEV3
*/
 
.title-bar {
    -fx-background-image: url(../images/motif-title-bar.jpg);
    -fx-background-position: center center;
    -fx-background-repeat: no-repeat;
    -fx-background-size: stretch;
}
 
.title-bar-button {
    -fx-background-color: transparent;
    -fx-background-radius: 0;
    -fx-border-radius: 0;
    -fx-border-width: 0;
}
 
.title-bar-button:hover {
    -fx-cursor: hand;
    -fx-background-color: rgba(0, 0, 0, 0.1);
    -fx-background-radius: 0;
    -fx-border-radius: 0;
    -fx-border-width: 0;
}
 
.title-bar-button-close {
    -fx-cursor: hand;
    -fx-background-color: transparent;
    -fx-background-radius: 0;
    -fx-border-radius: 0;
    -fx-border-width: 0;
}
 
.title-bar-button-close:hover {
    -fx-background-color: rgba(0, 0, 0, 0.1);
    -fx-background-radius: 0;
    -fx-border-radius: 0;
    -fx-border-width: 0;
}