/*
|
* Empty Stylesheet file.
|
*/
|
|
.banner {
|
-fx-background-image: url(../images/Motif.png);
|
-fx-background-position: center center;
|
-fx-background-repeat: stretch;
|
-fx-background-size: cover;
|
}
|
|
.mainFxmlClass {
|
|
}
|
|
.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: #44507B;
|
}
|
|
.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;
|
}
|
|
.table-cell {
|
-fx-border-width: 0 1 0 1;
|
-fx-border-color: rgb(230, 231, 232);
|
-fx-padding: 5;
|
-fx-alignment: CENTER;
|
}
|
|
.table-row-cell{
|
-fx-background-color: #ffffff;
|
}
|
|
.table-row-cell:odd {
|
-fx-background-color: rgb(239, 239, 240);
|
}
|
|
.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: #000;
|
}
|
|
/*
|
* 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(199, 200, 202, 1);
|
-fx-text-fill: rgba(255, 255, 255, 1);
|
}
|
|
.titled-pane > .title {
|
-fx-background-radius: 0;
|
-fx-border-radius: 0;
|
-fx-background-color: rgba(68, 80, 123, 1);
|
}
|
|
.titled-pane > .title .text {
|
|
}
|
|
/* #2 */
|
.titled-pane > .title > .text {
|
-fx-font-size: 14px;
|
-fx-background-color: rgba(114, 114, 116, 1);
|
}
|
|
/*
|
* Search buttons
|
*/
|
|
.search {
|
-fx-background-color: rgba(220, 221, 223, 1);
|
-fx-background-radius: 0;
|
-fx-border-radius: 0;
|
-fx-text-fill: rgba(53, 52, 52, 1);
|
}
|
|
.search:hover {
|
-fx-background-color: rgba(220, 221, 223, .8);
|
}
|
|
.search:cancel {
|
-fx-text-fill: gray;
|
}
|
|
/* 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;
|
}
|
|
/* TEXTFIELD */
|
|
.text-field {
|
-fx-background-color: rgba(208, 208, 208, 1);
|
-fx-border-radius: 0px;
|
-fx-background-radius: 0px;
|
-fx-text-fill: rgba(98, 98, 100, 1);
|
-fx-border-color: rgba(208, 208, 208, 1);
|
-fx-border-width: 1;
|
}
|
|
.text-field:disabled {
|
-fx-opacity: 0.8;
|
}
|
|
/* COMBOBOX */
|
/* The ListCell that shows the selected item in a non-editable ComboBox */
|
.combo-box,
|
.combo-box:focus,
|
.combo-box .list-cell {
|
-fx-background-color: rgba(208, 208, 208, 1);
|
}
|
|
.combo-box .list-view .list-cell {
|
-fx-background-color: rgba(255, 255, 255, 1);
|
}
|
|
/* The TextField that shows the selected item in an editable ComboBox */
|
.combo-box .text-input {
|
-fx-background-color: rgba(208, 208, 208, 1);
|
}
|
|
.combo-box:disabled {
|
-fx-opacity: 0.8;
|
}
|
|
|
/* Style the arrow button area */
|
.combo-box .arrow-button {
|
-fx-background-color: rgba(255, 255, 255, 1);
|
-fx-border-radius: 0px;
|
-fx-background-radius: 0px;
|
-fx-border-color: rgba(225, 225, 225, 1);
|
-fx-border-width: 1;
|
}
|
|
.combo-box .arrow-button .arrow {
|
-fx-background-color: rgba(162, 162, 162, 1);
|
}
|
|
/* Set the text color in the popup list for ComboBox to blue */
|
.combo-box-popup .list-view .list-cell {
|
-fx-text-fill: rgba(98, 98, 100, 1);
|
}
|
|
/* Set the text color in the popup list for ComboBox to blue */
|
.combo-box-popup .list-view .list-cell:hover {
|
-fx-text-fill: rgba(98, 98, 100, 1);
|
-fx-background-color: rgba(214, 236, 219, 1);
|
}
|