forked from nus-cs2103-AY1617S1/addressbook-level4
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ready for v0.4 beta release.
- Loading branch information
Showing
120 changed files
with
7,987 additions
and
548 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ preferences.json | |
./screenshot*.png | ||
classes/ | ||
/data/ | ||
/bin/ | ||
/target/ | ||
target/ | ||
bin/data | ||
Collate-TUI.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,288 @@ | ||
.background { | ||
-fx-background-color: derive(#1d1d1d, 20%); | ||
} | ||
|
||
.label { | ||
-fx-font-size: 11pt; | ||
-fx-font-family: "Segoe UI Semibold"; | ||
-fx-text-fill: #555555; | ||
-fx-opacity: 0.9; | ||
} | ||
|
||
.label-bright { | ||
-fx-font-size: 11pt; | ||
-fx-font-family: "Segoe UI Semibold"; | ||
-fx-text-fill: white; | ||
-fx-opacity: 1; | ||
} | ||
|
||
.label-header { | ||
-fx-font-size: 32pt; | ||
-fx-font-family: "Segoe UI Light"; | ||
-fx-text-fill: white; | ||
-fx-opacity: 1; | ||
} | ||
|
||
.text-field { | ||
-fx-font-size: 12pt; | ||
-fx-font-family: "Segoe UI Semibold"; | ||
} | ||
|
||
.tab-pane { | ||
-fx-padding: 0 0 0 1; | ||
} | ||
|
||
.tab-pane .tab-header-area { | ||
-fx-padding: 0 0 0 0; | ||
-fx-min-height: 0; | ||
-fx-max-height: 0; | ||
} | ||
|
||
.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: "Segoe UI Light"; | ||
-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, 10%); | ||
} | ||
|
||
.split-pane { | ||
-fx-border-radius: 1; | ||
-fx-border-width: 1; | ||
-fx-background-color: derive(#1d1d1d, 20%); | ||
} | ||
|
||
.list-cell { | ||
-fx-label-padding: 0 0 0 0; | ||
-fx-graphic-text-gap : 0; | ||
-fx-padding: 0 0 0 0; | ||
} | ||
|
||
.list-cell .label { | ||
-fx-text-fill: #010504; | ||
} | ||
|
||
.cell_big_label { | ||
-fx-font-size: 16px; | ||
-fx-text-fill: #010504; | ||
} | ||
|
||
.cell_small_label { | ||
-fx-font-size: 11px; | ||
-fx-text-fill: #010504; | ||
} | ||
|
||
.anchor-pane { | ||
-fx-background-color: derive(#1d1d1d, 20%); | ||
} | ||
|
||
.anchor-pane-with-border { | ||
-fx-background-color: derive(#1d1d1d, 20%); | ||
-fx-border-color: derive(#1d1d1d, 10%); | ||
-fx-border-top-width: 1px; | ||
} | ||
|
||
.status-bar { | ||
-fx-background-color: derive(#1d1d1d, 20%); | ||
-fx-text-fill: black; | ||
} | ||
|
||
.result-display { | ||
-fx-background-color: #ffffff; | ||
} | ||
|
||
.result-display .label { | ||
-fx-text-fill: black !important; | ||
} | ||
|
||
.status-bar .label { | ||
-fx-text-fill: white; | ||
} | ||
|
||
.status-bar-with-border { | ||
-fx-background-color: derive(#1d1d1d, 30%); | ||
-fx-border-color: derive(#1d1d1d, 25%); | ||
-fx-border-width: 1px; | ||
} | ||
|
||
.status-bar-with-border .label { | ||
-fx-text-fill: white; | ||
} | ||
|
||
.grid-pane { | ||
-fx-background-color: derive(#1d1d1d, 30%); | ||
-fx-border-color: derive(#1d1d1d, 30%); | ||
-fx-border-width: 1px; | ||
} | ||
|
||
.grid-pane .anchor-pane { | ||
-fx-background-color: derive(#1d1d1d, 30%); | ||
} | ||
|
||
.context-menu { | ||
-fx-background-color: derive(#1d1d1d, 50%); | ||
} | ||
|
||
.context-menu .label { | ||
-fx-text-fill: white; | ||
} | ||
|
||
.menu-bar { | ||
-fx-background-color: derive(#1d1d1d, 20%); | ||
} | ||
|
||
.menu-bar .label { | ||
-fx-font-size: 14pt; | ||
-fx-font-family: "Segoe UI Light"; | ||
-fx-text-fill: white; | ||
-fx-opacity: 0.9; | ||
} | ||
|
||
.menu .left-container { | ||
-fx-background-color: black; | ||
} | ||
|
||
/* | ||
* Metro style Push Button | ||
* Author: Pedro Duque Vieira | ||
* http://pixelduke.wordpress.com/2012/10/23/jmetro-windows-8-controls-on-java/ | ||
*/ | ||
.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: "Segoe 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%); | ||
} | ||
|
||
.dialog-pane { | ||
-fx-background-color: #1d1d1d; | ||
} | ||
|
||
.dialog-pane > *.button-bar > *.container { | ||
-fx-background-color: #1d1d1d; | ||
} | ||
|
||
.dialog-pane > *.label.content { | ||
-fx-font-size: 14px; | ||
-fx-font-weight: bold; | ||
-fx-text-fill: white; | ||
} | ||
|
||
.dialog-pane:header *.header-panel { | ||
-fx-background-color: derive(#1d1d1d, 25%); | ||
} | ||
|
||
.dialog-pane:header *.header-panel *.label { | ||
-fx-font-size: 18px; | ||
-fx-font-style: italic; | ||
-fx-fill: white; | ||
-fx-text-fill: white; | ||
} | ||
|
||
.scroll-bar .thumb { | ||
-fx-background-color: derive(#1d1d1d, 50%); | ||
-fx-background-insets: 3; | ||
} | ||
|
||
.scroll-bar .increment-button, .scroll-bar .decrement-button { | ||
-fx-background-color: transparent; | ||
-fx-padding: 0 0 0 0; | ||
} | ||
|
||
.scroll-bar .increment-arrow, .scroll-bar .decrement-arrow { | ||
-fx-shape: " "; | ||
} | ||
|
||
.scroll-bar:vertical .increment-arrow, .scroll-bar:vertical .decrement-arrow { | ||
-fx-padding: 1 8 1 8; | ||
} | ||
|
||
.scroll-bar:horizontal .increment-arrow, .scroll-bar:horizontal .decrement-arrow { | ||
-fx-padding: 8 1 8 1; | ||
} | ||
|
||
#cardPane { | ||
-fx-background-color: transparent; | ||
-fx-border-color: #d6d6d6; | ||
-fx-border-width: 1 1 1 1; | ||
} | ||
|
||
#commandTypeLabel { | ||
-fx-font-size: 11px; | ||
-fx-text-fill: #F70D1A; | ||
} | ||
|
||
#filterField, #personListPanel, #personWebpage { | ||
-fx-effect: innershadow(gaussian, black, 10, 0, 0, 0); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
|
||
.error { | ||
-fx-background-color: red; | ||
} | ||
|
||
|
||
.tag-selector { | ||
-fx-border-width: 1; | ||
-fx-border-color: white; | ||
-fx-border-radius: 3; | ||
-fx-background-radius: 3; | ||
} | ||
|
||
.tooltip-text { | ||
-fx-text-fill: white; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.root { | ||
-fx-background-image: url("Welcome.png"); | ||
} | ||
|
||
.label .text{ | ||
-fx-strikethrough: false ; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<?import javafx.scene.control.TextField?> | ||
<?import javafx.scene.layout.AnchorPane?> | ||
|
||
|
||
<AnchorPane styleClass="anchor-pane" stylesheets="@DarkTheme.css" xmlns="http://javafx.com/javafx/8.0.65" xmlns:fx="http://javafx.com/fxml/1" fx:controller="seedu.cmdo.ui.CommandBox"> | ||
<TextField fx:id="commandTextField" onAction="#handleCommandInputChanged" promptText="Enter command here..." /> | ||
</AnchorPane> |
Oops, something went wrong.