Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
yuxunn committed Nov 1, 2023
1 parent 52fab05 commit 232bd4c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/ui/HelpWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
public class HelpWindow extends UiPart<Stage> {

public static final String USERGUIDE_URL = "https://se-education.org/addressbook-level3/UserGuide.html";
public static final String USERGUIDE_URL = "https://ay2324s1-cs2103t-f08-2.github.io/tp/UserGuide.html";
public static final String HELP_MESSAGE = "Refer to the user guide: " + USERGUIDE_URL;

private static final Logger logger = LogsCenter.getLogger(HelpWindow.class);
Expand Down
6 changes: 6 additions & 0 deletions src/main/resources/view/DarkTheme.css
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,12 @@
-fx-border-width: 2;
}

.list-cell:empty {
-fx-background-color: #CAD3C8;
-fx-border-width: 0;

}

.list-cell:filled:even {
-fx-background-color: #ECEBC9;
}
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/view/HelpWindow.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
}

#copyButton {
-fx-background-color: dimgray;
-fx-background-color: derive(#777D68, 30%);
}

#copyButton:hover {
-fx-background-color: gray;
-fx-background-color: #777D68;
}

#copyButton:armed {
-fx-background-color: darkgray;
}

#helpMessageContainer {
-fx-background-color: derive(#1d1d1d, 20%);
-fx-background-color: derive(#B5C1B2, 30%);
}

0 comments on commit 232bd4c

Please sign in to comment.