fix(ui): error dialog overflow. Closes #1677.
This commit is contained in:
@@ -1,25 +1,38 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
<?import com.jfoenix.controls.JFXButton?>
|
|
||||||
<?import javafx.scene.control.Label?>
|
<?import javafx.scene.control.Label?>
|
||||||
|
<?import javafx.scene.control.ScrollPane?>
|
||||||
<?import javafx.scene.layout.*?>
|
<?import javafx.scene.layout.*?>
|
||||||
<?import java.lang.String?>
|
<?import java.lang.String?>
|
||||||
|
<?import javafx.geometry.Insets?>
|
||||||
<fx:root xmlns="http://javafx.com/javafx"
|
<fx:root xmlns="http://javafx.com/javafx"
|
||||||
xmlns:fx="http://javafx.com/fxml"
|
xmlns:fx="http://javafx.com/fxml"
|
||||||
type="StackPane">
|
type="StackPane">
|
||||||
<HBox spacing="8" styleClass="jfx-dialog-layout">
|
<BorderPane styleClass="jfx-dialog-layout">
|
||||||
<Label fx:id="graphic" translateX="10" translateY="10" minWidth="40" maxWidth="40" minHeight="40" maxHeight="40" />
|
<left>
|
||||||
<VBox HBox.hgrow="ALWAYS">
|
<Label fx:id="graphic" translateX="10" translateY="10" minWidth="40" maxWidth="40" minHeight="40" maxHeight="40" />
|
||||||
<StackPane>
|
</left>
|
||||||
<styleClass>
|
<center>
|
||||||
<String fx:value="jfx-layout-heading" />
|
<VBox>
|
||||||
<String fx:value="title" />
|
<BorderPane.margin>
|
||||||
</styleClass>
|
<Insets left="8" />
|
||||||
<Label fx:id="title" text="%message.info" />
|
</BorderPane.margin>
|
||||||
</StackPane>
|
<HBox spacing="8">
|
||||||
<StackPane fx:id="content" styleClass="jfx-layout-body">
|
<StackPane>
|
||||||
</StackPane>
|
<styleClass>
|
||||||
|
<String fx:value="jfx-layout-heading" />
|
||||||
|
<String fx:value="title" />
|
||||||
|
</styleClass>
|
||||||
|
<Label fx:id="title" text="%message.info" />
|
||||||
|
</StackPane>
|
||||||
|
</HBox>
|
||||||
|
<ScrollPane VBox.vgrow="ALWAYS" fitToWidth="true" fitToHeight="true">
|
||||||
|
<StackPane fx:id="content" styleClass="jfx-layout-body" />
|
||||||
|
</ScrollPane>
|
||||||
|
</VBox>
|
||||||
|
</center>
|
||||||
|
<bottom>
|
||||||
<HBox fx:id="actions" styleClass="jfx-layout-actions" />
|
<HBox fx:id="actions" styleClass="jfx-layout-actions" />
|
||||||
</VBox>
|
</bottom>
|
||||||
</HBox>
|
</BorderPane>
|
||||||
</fx:root>
|
</fx:root>
|
||||||
|
|||||||
Reference in New Issue
Block a user