Skip to content

Commit

Permalink
Merge pull request CS2103JAN2018-F09-B1#13 from JoonKai1995/Developer…
Browse files Browse the repository at this point in the history
…Guide

DeveloperGuide and tag colour change
  • Loading branch information
WoodySIN authored Mar 9, 2018
2 parents fa771b2 + bc2ea8e commit dc7df5c
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 1 deletion.
37 changes: 37 additions & 0 deletions docs/DeveloperGuide.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -974,6 +974,43 @@ Windows, Linux, Unix, OS-X
[[private-contact-detail]] Private contact detail::
A contact detail that is not meant to be shared with others

[[ui]] User interface::
The visible interface that the user will be seeing when using the application

[[logic]] Logic::
The set of commands that can be executed by the application

[[model]] Model::
The internal memory used when application is running

[[storage]] Storage::
The set of instructions to store specific states and data of the application when application is not running so that it
can be loaded back into the application when application is started again.

[[feature]] Feature::
A specific function of the program

[[parser]] Parser::
A converting function or class that takes in raw input and separates it into its usable components for other methods

[[tasks]] Tasks::
A command to be executed

[[deadline]] Deadline::
The date for which certain tasks are due to be done

[[tags]] Tags::
Keywords tied to categories og people

[[to-do-list]]To-do list::
A list of things to do

[[import]] Import::
Bring into the application from an external source

User -

Developer -

[appendix]
== Product Survey

Expand Down
3 changes: 3 additions & 0 deletions src/main/java/seedu/address/ui/PersonCard.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
public class PersonCard extends UiPart<Region> {

private static final String FXML = "PersonListCard.fxml";
//this is the colours that can be used to colour code labels
private static final String[] TAG_COLOUR_STYLES =
{ "blue" };

/**
* Note: Certain keywords such as "location" and "resources" are reserved keywords in JavaFX.
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/view/DarkTheme.css
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@

#tags .label {
-fx-text-fill: white;
-fx-background-color: #3e7b91;
-fx-background-colour: #3e7b91;
-fx-padding: 1 3 1 3;
-fx-border-radius: 2;
-fx-background-radius: 2;
Expand Down

0 comments on commit dc7df5c

Please sign in to comment.