リビジョン c23d136a
| 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" 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 | ||
|---|---|---|
|
/*
|
||
|
Copyright © 2014 TAKAHASHI,Toru
|
||
|
*/
|
||
|
/*
|
||
|
Created on : 2014/08/01, 11:09:46
|
||
|
Author : TAKAHASHI,Toru
|
||
|
*/
|
||
|
|
||
|
.background {
|
||
|
-fx-background-color: #1d1d1d;
|
||
|
}
|
||
|
|
||
|
.label {
|
||
|
-fx-font-size: 11pt;
|
||
|
-fx-font-family: "Meiryo UI";
|
||
|
-fx-text-fill: white;
|
||
|
-fx-opacity: 0.6;
|
||
|
}
|
||
|
|
||
|
.label-bright {
|
||
|
-fx-font-size: 11pt;
|
||
|
-fx-font-family: "Meiryo UI";
|
||
|
-fx-text-fill: white;
|
||
|
-fx-opacity: 1;
|
||
|
}
|
||
|
|
||
|
.label-header {
|
||
|
-fx-font-size: 32pt;
|
||
|
-fx-font-family: "Meiryo UI";
|
||
|
-fx-text-fill: white;
|
||
|
-fx-opacity: 1;
|
||
|
}
|
||
|
|
||
|
.table-view {
|
||
|
-fx-base: #1d1d1d;
|
||
|
-fx-control-inner-background: #1d1d1d;
|
||
|
-fx-background-color: #1d1d1d;
|
||
|
-fx-table-cell-border-color: transparent;
|
||
|
-fx-table-header-border-color: transparent;
|
||
|
-fx-padding: 5;
|
||
|
}
|
||
|
|
||
|
.table-view .column-header-background {
|
||
|
-fx-background-color: transparent;
|
||
|
}
|
||
|
|
||
|
.table-view .column-header, .table-view .filler {
|
||
|
-fx-size: 35;
|
||
|
-fx-border-width: 0 0 1 0;
|
||
|
-fx-background-color: transparent;
|
||
|
-fx-border-color:
|
||
|
transparent
|
||
|
transparent
|
||
|
derive(-fx-base, 80%)
|
||
|
transparent;
|
||
|
-fx-border-insets: 0 10 1 0;
|
||
|
}
|
||
|
|
||
|
.table-view .column-header .label {
|
||
|
-fx-font-size: 20pt;
|
||
|
-fx-font-family: "Meiryo UI";
|
||
|
-fx-text-fill: white;
|
||
|
-fx-alignment: center-left;
|
||
|
-fx-opacity: 1;
|
||
|
}
|
||
|
|
||
|
.table-view:focused .table-row-cell:filled:focused:selected {
|
||
|
-fx-background-color: -fx-focus-color;
|
||
|
}
|
||
|
|
||
|
.split-pane:horizontal > .split-pane-divider {
|
||
|
-fx-border-color: transparent #1d1d1d transparent #1d1d1d;
|
||
|
-fx-background-color: transparent, derive(#1d1d1d, 20%);
|
||
|
}
|
||
|
|
||
|
.split-pane {
|
||
|
-fx-padding: 1 0 0 0;
|
||
|
}
|
||
|
|
||
|
.menu-bar {
|
||
|
-fx-background-color: derive(#1d1d1d, 20%);
|
||
|
}
|
||
|
|
||
|
.context-menu {
|
||
|
-fx-background-color: derive(#1d1d1d, 50%);
|
||
|
}
|
||
|
|
||
|
.menu-bar .label {
|
||
|
-fx-font-size: 14pt;
|
||
|
-fx-font-family: "Meiryo UI";
|
||
|
-fx-text-fill: white;
|
||
|
-fx-opacity: 0.9;
|
||
|
}
|
||
|
|
||
|
.menu .left-container {
|
||
|
-fx-background-color: black;
|
||
|
}
|
||
|
|
||
|
.text-field {
|
||
|
-fx-background-color: derive(#1d1d1d, 20%);
|
||
|
-fx-font-size: 12pt;
|
||
|
-fx-font-family: "Meiryo UI";
|
||
|
-fx-text-fill: white;
|
||
|
}
|
||
|
|
||
|
.button {
|
||
|
-fx-padding: 5 22 5 22;
|
||
|
-fx-border-color: #e2e2e2;
|
||
|
-fx-border-width: 2;
|
||
|
-fx-background-radius: 0;
|
||
|
-fx-background-color: #1d1d1d;
|
||
|
-fx-font-family: "Meiryo UI", Helvetica, Arial, sans-serif;
|
||
|
-fx-font-size: 11pt;
|
||
|
-fx-text-fill: #d8d8d8;
|
||
|
-fx-background-insets: 0 0 0 0, 0, 1, 2;
|
||
|
}
|
||
|
|
||
|
.button:hover {
|
||
|
-fx-background-color: #3a3a3a;
|
||
|
}
|
||
|
|
||
|
.button:pressed, .button:default:hover:pressed {
|
||
|
-fx-background-color: white;
|
||
|
-fx-text-fill: #1d1d1d;
|
||
|
}
|
||
|
|
||
|
.button:focused {
|
||
|
-fx-border-color: white, white;
|
||
|
-fx-border-width: 1, 1;
|
||
|
-fx-border-style: solid, segments(1, 1);
|
||
|
-fx-border-radius: 0, 0;
|
||
|
-fx-border-insets: 1 1 1 1, 0;
|
||
|
}
|
||
|
|
||
|
.button:disabled, .button:default:disabled {
|
||
|
-fx-opacity: 0.4;
|
||
|
-fx-background-color: #1d1d1d;
|
||
|
-fx-text-fill: white;
|
||
|
}
|
||
|
|
||
|
.button:default {
|
||
|
-fx-background-color: -fx-focus-color;
|
||
|
-fx-text-fill: #ffffff;
|
||
|
}
|
||
|
|
||
|
.button:default:hover {
|
||
|
-fx-background-color: derive(-fx-focus-color, 30%);
|
||
|
}
|
||
|
|
||
|
.hbox {
|
||
|
-fx-background-color: #1d1d1d;
|
||
|
}
|
||
ルックアンドフィールをダークに設定するCSSファイルを適用。 refs #15