com.sun.javafx.scene.control.skin.modena.dialog.css Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openjfx-dialogs Show documentation
Show all versions of openjfx-dialogs Show documentation
Generic Sampler Support for JavaFX Control libraries
/*******************************************************************************
* *
* Dialog *
* *
******************************************************************************/
.dialog {
-fx-padding: 0;
}
.dialog > .dialog-pane {
-fx-background-color: linear-gradient(#ffffff,#f3f3f4);
-fx-border-width: 1px;
-fx-border-color: #b4b4b4 transparent #b4b4b4 transparent;
-fx-font-size: 1.083333em; /*13px;*/
-fx-text-fill: #292929;
}
.dialog > .dialog-pane > .button-bar {
-fx-font-size: 1em;
}
.dialog > .dialog-pane {
-fx-padding: 0;
}
.dialog > .dialog-pane > .expandable-content {
-fx-padding: 0.666667em; /* 8px */
}
.dialog > .dialog-pane > .button-bar > .container {
-fx-padding: 0.833333em; /* 10px */
}
.dialog > .dialog-pane > .content.label {
-fx-alignment: top-left;
-fx-padding: 0.833333em 0.833333em 0 0.833333em; /* 0 10 0 10 */
}
.dialog > .dialog-pane > .content {
-fx-padding: 0.833333em; /* 10 */
}
.dialog:no-header > .dialog-pane .graphic-container {
-fx-padding: 0.833333em 0 0 0.833333em; /* 10px 0px 0px 10px */
}
.dialog:header > .dialog-pane .header-panel {
-fx-padding: 0.833333em 1.166667em 0.833333em 1.166667em; /* 10px 14px 10px 14px */
-fx-background-insets: 0 -1 0 -1, 0 -1 1 -1;
-fx-background-color: #b4b4b4, linear-gradient(#e2e2e2,#e2e2e2,#eeeeee);
}
.dialog:header > .dialog-pane .header-panel .label {
-fx-font-size: 1.249999em;
-fx-wrap-text: true;
}
.dialog:header > .dialog-pane .header-panel .graphic-container {
/* This prevents the text in the header running directly into the graphic */
-fx-padding: 0 0 0 0.833333em; /* 0px 0px 0px 10px */
}
.dialog > .dialog-pane > .button-bar > .container > .details-button {
-fx-alignment: baseline-left;
-fx-focus-traversable: false;
-fx-padding: 0.416667em; /* 5px */
-fx-font-size: 1em;
}
.dialog > .dialog-pane > .button-bar > .container > .details-button.more {
-fx-graphic: url("dialog-more-details.png");
}
.dialog > .dialog-pane > .button-bar > .container > .details-button.less {
-fx-graphic: url("dialog-fewer-details.png");
}
.dialog > .dialog-pane > .button-bar > .container > .details-button:hover {
-fx-underline: true;
}
.alert.confirmation.dialog-pane,
.text-input-dialog.dialog-pane,
.choice-dialog.dialog-pane {
-fx-graphic: url("dialog-confirm.png");
}
.alert.information.dialog-pane {
-fx-graphic: url("dialog-information.png");
}
.alert.error.dialog-pane {
-fx-graphic: url("dialog-error.png");
}
.alert.warning.dialog-pane {
-fx-graphic: url("dialog-warning.png");
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy