From 69e96403f4ada4e7dbeb61c6dbbdf2f6aeeae905 Mon Sep 17 00:00:00 2001 From: vraj545 Date: Fri, 6 Mar 2026 17:16:28 -0500 Subject: [PATCH] Added "Generate Report" and got rid of program year and enrollment date --- .../add-student-modal/add-student-modal.html | 4 ++-- .../components/goal-list/goal-list.html | 1 + .../components/goal-list/goal-list.scss | 19 +++++++++++++++++++ .../student-card-list/student-card-list.html | 2 +- .../student-card-list/student-card-list.scss | 3 ++- 5 files changed, 25 insertions(+), 4 deletions(-) diff --git a/ui/winstudentgoaltracker/src/app/desktop/components/add-student-modal/add-student-modal.html b/ui/winstudentgoaltracker/src/app/desktop/components/add-student-modal/add-student-modal.html index 904794f..ab309bb 100644 --- a/ui/winstudentgoaltracker/src/app/desktop/components/add-student-modal/add-student-modal.html +++ b/ui/winstudentgoaltracker/src/app/desktop/components/add-student-modal/add-student-modal.html @@ -20,7 +20,7 @@ /> -
+
diff --git a/ui/winstudentgoaltracker/src/app/desktop/components/goal-list/goal-list.html b/ui/winstudentgoaltracker/src/app/desktop/components/goal-list/goal-list.html index a72299d..0b63021 100644 --- a/ui/winstudentgoaltracker/src/app/desktop/components/goal-list/goal-list.html +++ b/ui/winstudentgoaltracker/src/app/desktop/components/goal-list/goal-list.html @@ -1,6 +1,7 @@
+
diff --git a/ui/winstudentgoaltracker/src/app/desktop/components/goal-list/goal-list.scss b/ui/winstudentgoaltracker/src/app/desktop/components/goal-list/goal-list.scss index 56ef332..a13b731 100644 --- a/ui/winstudentgoaltracker/src/app/desktop/components/goal-list/goal-list.scss +++ b/ui/winstudentgoaltracker/src/app/desktop/components/goal-list/goal-list.scss @@ -4,6 +4,24 @@ height: 100%; } +.generate-report { + display: inline-flex; + align-items: center; + background-color: #4000ee; + color: white; + border: none; + padding: 8px 14px; + border-radius: 6px; + font-size: 0.875rem; + font-weight: 500; + cursor: pointer; + +} + +.generate-report:hover { + background-color: #4f46e5; +} + .toolbar { display: flex; align-items: center; @@ -15,6 +33,7 @@ border-bottom: 1px solid #ddd; margin-bottom: 1rem; flex-shrink: 0; + cursor: pointer; } .toolbar-btn { diff --git a/ui/winstudentgoaltracker/src/app/desktop/components/student-card-list/student-card-list.html b/ui/winstudentgoaltracker/src/app/desktop/components/student-card-list/student-card-list.html index d4dd7ed..48ebc2d 100644 --- a/ui/winstudentgoaltracker/src/app/desktop/components/student-card-list/student-card-list.html +++ b/ui/winstudentgoaltracker/src/app/desktop/components/student-card-list/student-card-list.html @@ -1,5 +1,5 @@
-

Students

+

My Students - {{ students().length}}

diff --git a/ui/winstudentgoaltracker/src/app/desktop/components/student-card-list/student-card-list.scss b/ui/winstudentgoaltracker/src/app/desktop/components/student-card-list/student-card-list.scss index acea3ce..52f5f7a 100644 --- a/ui/winstudentgoaltracker/src/app/desktop/components/student-card-list/student-card-list.scss +++ b/ui/winstudentgoaltracker/src/app/desktop/components/student-card-list/student-card-list.scss @@ -43,4 +43,5 @@ gap: 1rem; overflow-y: auto; flex: 1; -} \ No newline at end of file +} +