47 lines
1.5 KiB
CSS
47 lines
1.5 KiB
CSS
/*
|
|
Created on : 08 mai. 2023, 13:28:01
|
|
Author : Maher Ben Tili
|
|
*/
|
|
/*******************************************************************************
|
|
* *
|
|
* TableView Print * *
|
|
* *
|
|
******************************************************************************/
|
|
.table-view {
|
|
-fx-border-color: #000000;
|
|
-fx-border-width: 0.5;
|
|
}
|
|
|
|
.table-view .column-header{
|
|
-fx-border-color: #000000;
|
|
-fx-border-width: 0 0.5 0.5 0;
|
|
-fx-font-family: "Arial";
|
|
-fx-background-color: #ffffff;
|
|
}
|
|
|
|
.table-view .table-column{
|
|
-fx-font-family: "Arial";
|
|
-fx-text-fill: black;
|
|
-fx-font-size: 7pt;
|
|
|
|
-fx-border-color: #000000;
|
|
-fx-border-width: 0 0.5 0 0;
|
|
}
|
|
|
|
.table-view .table-row-cell{
|
|
-fx-border-color: #000000;
|
|
-fx-border-width: 0 0 0.5 0;
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
* *
|
|
* GridPane (imprimer) * *
|
|
* *
|
|
******************************************************************************/
|
|
|
|
.grid-pane-print{
|
|
-fx-border-color:#000000;
|
|
|
|
} |