From b3d0580439b9a00c7eb918085de1694151066004 Mon Sep 17 00:00:00 2001
From: Kenmegne <stephanie.kenmegne@gmail.com>
Date: Thu, 18 Jun 2026 16:02:49 +0000
Subject: [PATCH] rename packages

---
 fdx_convert/target/classes/styles/custom-title-bar.css |   47 +++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 47 insertions(+), 0 deletions(-)

diff --git a/fdx_convert/target/classes/styles/custom-title-bar.css b/fdx_convert/target/classes/styles/custom-title-bar.css
new file mode 100644
index 0000000..65e13b8
--- /dev/null
+++ b/fdx_convert/target/classes/styles/custom-title-bar.css
@@ -0,0 +1,47 @@
+/*
+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;
+}
+

--
Gitblit v1.10.0