リビジョン 4c154467
| src/com/torutk/jarmanifest/JarManifestView.fxml | ||
|---|---|---|
|
<?import javafx.scene.control.*?>
|
||
|
<?import javafx.scene.layout.*?>
|
||
|
|
||
|
<BorderPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" styleClass="background" stylesheets="@darktheme.css" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.torutk.jarmanifest.JarManifestViewController">
|
||
|
<BorderPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" stylesheets="@darktheme.css" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.torutk.jarmanifest.JarManifestViewController">
|
||
|
<center>
|
||
|
<TableView fx:id="table" prefHeight="200.0" prefWidth="200.0" BorderPane.alignment="CENTER">
|
||
|
<columns>
|
||
| src/com/torutk/jarmanifest/darktheme.css | ||
|---|---|---|
|
Author : TAKAHASHI,Toru
|
||
|
*/
|
||
|
|
||
|
.background {
|
||
|
.root {
|
||
|
-fx-background-color: #1d1d1d;
|
||
|
}
|
||
|
|
||
CSSで背景色を定義するセレクタ名を.backgroundから.rootに変更、BorderPaneのプロパティStyeclassからbackground削除。 refs #15