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-main-style.css |  426 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 426 insertions(+), 0 deletions(-)

diff --git a/fdx_convert/target/classes/styles/custom-main-style.css b/fdx_convert/target/classes/styles/custom-main-style.css
new file mode 100644
index 0000000..0de0cc0
--- /dev/null
+++ b/fdx_convert/target/classes/styles/custom-main-style.css
@@ -0,0 +1,426 @@
+/*
+ * Empty Stylesheet file.
+ */
+
+/*@font-face {
+    font-family: 'Roboto';
+    src: url('../fonts/Roboto-Medium.ttf');
+}
+
+* {
+    -fx-font-family: 'Roboto';
+}*/
+
+.next-btn {
+    -fx-background-image: url(../images/next-img.png);
+    -fx-background-size: 15px;
+    -fx-background-position: center center;
+    -fx-background-repeat: stretch;
+}
+
+.previous-btn {
+    -fx-background-image: url(../images/previous-img.png);
+    -fx-background-size: 15px;
+    -fx-background-position: center center;
+    -fx-background-repeat: stretch;
+}
+
+.next-btn,
+.previous-btn {
+    -fx-background-color: transparent;
+    -fx-background-radius: 0;
+    -fx-padding: 3 10 3 10;
+}
+
+.next-btn:hover,
+.previous-btn:hover {
+    -fx-background-color: #E7E7E7;
+    -fx-background-radius: 0;
+}
+
+.next-btn:disabled:hover,
+.previous-btn:disabled:hover {
+    -fx-background-color: #E7E7E7;
+    -fx-background-radius: 0;
+}
+
+.main-btn-add {
+    -fx-background-image: url(../images/add-new.png);
+    -fx-background-size: 13px;
+    -fx-background-position: center center;
+    -fx-background-repeat: stretch;
+}
+
+.main-btn-edit {
+    -fx-background-image: url(../images/edit-new.png);
+    -fx-background-size: 13px;
+    -fx-background-position: center center;
+    -fx-background-repeat: stretch;
+}
+
+.main-btn-print {
+    -fx-background-image: url(../images/print-new.png);
+    -fx-background-size: 13px;
+    -fx-background-position: center center;
+    -fx-background-repeat: stretch;
+}
+
+.main-btn-delete {
+    -fx-background-image: url(../images/delete-new.png);
+    -fx-background-size: 13px;
+    -fx-background-position: center center;
+    -fx-background-repeat: stretch;
+}
+
+.main-btn-add:disabled {
+    -fx-background-image: url(../images/add-disabled.png);
+    -fx-background-size: 13px;
+    -fx-background-position: center center;
+    -fx-background-repeat: stretch;
+}
+
+.main-btn-edit:disabled {
+    -fx-background-image: url(../images/edit-disabled.png);
+    -fx-background-size: 13px;
+    -fx-background-position: center center;
+    -fx-background-repeat: stretch;
+}
+
+.main-btn-print:disabled {
+    -fx-background-image: url(../images/print-disabled.png);
+    -fx-background-size: 13px;
+    -fx-background-position: center center;
+    -fx-background-repeat: stretch;
+}
+
+.main-btn-delete:disabled {
+    -fx-background-image: url(../images/delete-disabled.png);
+    -fx-background-size: 13px;
+    -fx-background-position: center center;
+    -fx-background-repeat: stretch;
+}
+
+.main-btn-export {
+    -fx-background-image: url(../images/exporter.png);
+    -fx-background-size: 13px;
+    -fx-background-position: center center;
+    -fx-background-repeat: stretch;
+}
+
+.subtype-btn-add {
+    -fx-background-image: url(../images/add-subtype.png);
+    -fx-background-size: 13px;
+    -fx-background-position: center center;
+    -fx-background-repeat: stretch;
+}
+
+.subtype-btn-delete {
+    -fx-background-image: url(../images/delete-subtype.png);
+    -fx-background-size: 13px;
+    -fx-background-position: center center;
+    -fx-background-repeat: stretch;
+}
+
+.subtype-btn-update{
+    -fx-background-image: url(../images/update-subtype.png);
+    -fx-background-size: 13px;
+    -fx-background-position: center center;
+    -fx-background-repeat: stretch;
+}
+
+.subtype-btn-add,
+.subtype-btn-update,
+.subtype-btn-delete {
+    -fx-background-color: #FFFFFF;
+    -fx-background-radius: 0;
+  /*  -fx-padding: 3 15 1 15;*/
+    -fx-border-width: 1 1 1 1;
+    -fx-border-color:  #9B9798;
+}
+
+.main-btn-add,
+.main-btn-edit,
+.main-btn-print,
+.main-btn-delete,
+.main-btn {
+    -fx-background-color: #E7E7E7;
+    -fx-background-radius: 0;
+    -fx-padding: 3 15 3 15;
+    -fx-border-width: 0 1 0 0;
+    -fx-border-color:  #9B9798;
+}
+
+.main-btn-add:hover,
+.main-btn-edit:hover,
+.main-btn-print:hover,
+.main-btn-delete:hover,
+.main-btn:hover {
+    -fx-background-color: #fff;
+    -fx-background-radius: 0;
+    -fx-padding: 3 15 3 15;
+    -fx-border-width: 0 1 0 0;
+    -fx-border-color:  #9B9798;
+}
+
+.main-btn-add:disabled:hover,
+.main-btn-edit:disabled:hover,
+.main-btn-print:disabled:hover,
+.main-btn-delete:disabled:hover,
+.main-btn:disabled:hover {
+    -fx-background-color: #E7E7E7;
+    -fx-background-radius: 0;
+    -fx-padding: 3 15 3 15;
+    -fx-border-width: 0 1 0 0;
+    -fx-border-color:  #9B9798;
+}
+
+.banner {
+    /*-fx-background-image: url(../images/logo-ip.png);
+    -fx-background-position: center left;
+    -fx-background-repeat: stretch;*/
+    -fx-background-color:  transparent;
+}
+
+.mainFxmlClass {
+    -fx-background-color: rgb(246, 247, 249);
+}
+
+.table-view {
+    -fx-background-color: transparent;
+    -fx-border-color: rgb(209, 211, 212);
+    -fx-padding: 0;
+}
+
+.table-view .column-header,
+.table-view .column-header-background .filler {
+    -fx-background-color: rgba(115, 135, 132, 1); 
+}
+
+.column-header {
+
+}
+
+.table-view .column-header-background{
+    -fx-padding: 0;
+}
+
+.table-view .column-header {
+    -fx-border-color: rgb(209, 211, 212);
+}
+
+.table-view .column-header .label{
+    -fx-text-fill: white;
+    -fx-font-weight: bold; 
+    -fx-alignment: CENTER;
+    -fx-padding: 5;
+    -fx-font-size: 14px;
+    -fx-text-fill: white;
+    -fx-font-weight: bold;
+}
+
+.table-cell {
+    -fx-border-width: 0 1 0 1;
+    -fx-border-color: rgb(230, 231, 232);
+    -fx-padding: 2;
+    -fx-alignment: CENTER;
+}
+
+.table-row-cell{
+    -fx-background-color: rgb(255, 255, 255);
+}
+
+.table-row-cell .text {
+    -fx-fill: rgb(56, 56, 56);
+    -fx-font-size: 12px;
+}
+
+.table-row-cell:odd {
+    -fx-background-color: rgb(223, 223, 223);
+}
+
+.table-row-cell:selected {
+    -fx-background-color: rgba(214, 236, 219, 1);
+    -fx-background-insets: 0;
+    -fx-background-radius: 0;
+}
+
+.table-row-cell:selected .text {
+    -fx-fill: rgb(56, 56, 56);
+    -fx-font-weight: bold;
+}
+
+/*
+* Style for TextField
+*/
+.text-field {
+    -fx-background-color: #F6F7F9;
+    -fx-border-color: #30AFDC;
+    -fx-border-radius: 3px;
+    -fx-background-radius: 3px;
+}
+
+/*
+Tab Pane style
+*/
+
+.tab-pane > .tab-header-area > .headers-region > .tab:top {
+    -fx-border-color: #a3a7a8;
+    -fx-border-radius: 5 5 0 0;
+    -fx-background-color: white;
+    -fx-pref-height: 40px;  
+    -fx-background-insets: 0;
+}
+
+.tab-pane > .tab-header-area > .headers-region > .tab:selected:top {
+    -fx-border-color: #a3a7a8 #a3a7a8 #a3a7a8 #a3a7a8;
+    -fx-border-width: 1 1 1 1;   
+    -fx-border-radius: 5 5 0 0;
+    -fx-background-color: white;
+    -fx-pref-height: 40px;  
+    -fx-background-insets: 0;
+    -fx-border-insets: 0; 
+}
+
+.tab-pane > .tab-header-area > .headers-region > .tab:selected > .tab-container > .tab-label {
+    -fx-alignment: CENTER;
+    -fx-text-fill: #323232;
+    -fx-font-weight: bold;
+}
+
+.tab-pane > .tab-header-area > .headers-region > .tab > .tab-container > .tab-label {
+    -fx-alignment: CENTER;
+    -fx-text-fill: #323232;
+    -fx-font-weight: bold;
+}
+
+.tab-pane > .tab-header-area > .tab-header-background {
+    -fx-background-color: white;
+    -fx-border-color: #a3a7a8;
+    -fx-border-width: 0 0 1 0;
+    -fx-background-insets: 0;
+    -fx-pref-height: 45px;  
+}
+
+/*
+* Title pane style
+*/
+.titled-pane {
+    -fx-border-color: rgba(203, 203, 203, 1);
+    -fx-text-fill: rgba(255, 255, 255, 1);
+    -fx-border-width: 0.5;
+}
+
+.titled-pane > .title {
+    -fx-background-radius: 0;
+    -fx-border-radius: 0;
+    -fx-background-color: rgba(115, 135, 132, 1);
+}
+
+.titled-pane > .title .text {
+
+}
+
+/* #2 */
+.titled-pane > .title > .text {
+    -fx-background-color: rgba(114, 114, 116, 1);
+    -fx-font-size: 14px;
+    -fx-text-fill: white;
+    -fx-font-weight: bold;
+}
+
+/*
+* Search buttons
+*/
+
+.search {   
+    -fx-background-image: url(../images/Recherche.png);
+    -fx-background-size: 12px;
+    -fx-background-position: center center;
+    -fx-background-repeat: stretch;
+    -fx-padding: 2 10 2 10;
+    -fx-background-color: rgba(220, 221, 223, 1);
+    -fx-background-radius: 0;
+    -fx-border-radius: 0;
+}
+
+.search:hover {
+    -fx-background-color: rgba(255, 255, 255, 1);
+    -fx-border-color: rgba(220, 221, 223, 1);
+    -fx-border-width: 1px;
+    -fx-padding: 1 9 1 9;
+}
+
+.reset {   
+    -fx-background-image: url(../images/Reset.png);
+    -fx-background-size: 12px;
+    -fx-background-position: center center;
+    -fx-background-repeat: stretch;
+    -fx-padding: 2 10 2 10;
+    -fx-background-color: rgba(220, 221, 223, 1);
+    -fx-background-radius: 0;
+    -fx-border-radius: 0;
+}
+
+.reset:hover {
+    -fx-background-color: rgba(255, 255, 255, 1);
+    -fx-border-color: rgba(220, 221, 223, 1);
+    -fx-border-width: 1px;
+    -fx-padding: 1 9 1 9;
+}
+
+/* CHECKBOX */
+.check-box {
+    /* default properties */
+    selected-box-color: rgba(255, 255, 255, 1);
+    box-color: rgba(255, 255, 255, 1);
+    mark-color: white;
+}
+
+.check-box .box {
+    /* background color for selected checkbox */
+    -fx-border-width: 1px;
+    -fx-border-color: rgb(208, 208, 208);
+}
+
+.check-box:selected > .box {
+    /* background color for selected checkbox */
+    -fx-background-color: selected-box-color;
+}
+
+.check-box > .box {
+    /* background color of unselected checkbox */
+    -fx-background-color: box-color;
+    -fx-border-radius: 0px;
+    -fx-background-radius: 0px;
+}
+
+/*
+* SCROLLBAR
+*/
+* {
+    /*-fx-background-color: black;*/
+    -fx-focus-color: transparent;
+    -fx-faint-focus-color: transparent;
+}
+
+.scroll-bar:horizontal, .scroll-bar:vertical{
+    -fx-background-color:transparent;
+}
+
+.increment-button, .decrement-button {
+    -fx-background-color: transparent;
+    -fx-border-color: transparent;
+}
+
+.scroll-bar:horizontal .track,
+.scroll-bar:vertical .track{
+    -fx-background-color: transparent;
+    -fx-border-color: transparent;
+    -fx-background-radius: 0em;
+}
+
+.scroll-bar:horizontal .thumb,
+.scroll-bar:vertical .thumb {
+    -fx-background-color: white;
+    -fx-background-radius: 5em;
+}
\ No newline at end of file

--
Gitblit v1.10.0