diff --git a/CaPPMS/Data/StudentReviews.db b/CaPPMS/Data/StudentReviews.db index 691e3c2..7c108e4 100644 Binary files a/CaPPMS/Data/StudentReviews.db and b/CaPPMS/Data/StudentReviews.db differ diff --git a/CaPPMS/Pages/StudentReviews/Admin.razor b/CaPPMS/Pages/StudentReviews/Admin.razor index 51df331..fd0928f 100644 --- a/CaPPMS/Pages/StudentReviews/Admin.razor +++ b/CaPPMS/Pages/StudentReviews/Admin.razor @@ -21,11 +21,19 @@ background-color: rgb(30,30,120); color: white; } + .headerColorStudentScore{ + background-color: rgb(243, 149, 9); + color: rgb(7, 6, 6); + } .entriesColor { background-color: rgb(51,16,90); color: white; } + .entriesColorWeeklyRatings{ + background-color: rgb(243, 149, 9); + color: rgb(7, 6, 6); + } .card-body { max-height: calc(520px - 2.5rem); /* Set max height for the card body, considering the card header height */ @@ -81,7 +89,7 @@
-
Student Scores
+
Student Scores
@@ -92,10 +100,10 @@ - - - - + + + + @@ -121,14 +129,14 @@
DetailsFirst NameLast NameAverage ScoreDetailsFirst NameLast NameAverage Score
- - - + + + @@ -139,9 +147,9 @@
StudentAverage StudentAverage 
- - - + + + diff --git a/CaPPMS/Pages/StudentReviews/ManageStudents.razor b/CaPPMS/Pages/StudentReviews/ManageStudents.razor index e9f36d5..355f044 100644 --- a/CaPPMS/Pages/StudentReviews/ManageStudents.razor +++ b/CaPPMS/Pages/StudentReviews/ManageStudents.razor @@ -30,11 +30,19 @@ background-color: rgb(30,30,120); color: white; } + .headerColorStudentDirectory { + background-color: rgb(243, 149, 9); + color: rgb(7, 6, 6); + } .entriesColor { background-color: rgb(51,16,90); color: white; } + .entriesColorHeader { + background-color: rgb(243, 149, 9); + color: rgb(7, 6, 6); + } .short-search { width: 300px; /* Adjust as needed */ @@ -80,7 +88,7 @@
-
Student Directory
+
Student Directory
@@ -95,10 +103,10 @@
WeekScoreCommentsWeekScoreComments
- - - - + + + + @@ -129,14 +137,14 @@
EditFirst NameLast NameAssigned TeamEditFirst NameLast NameAssigned Team
- - - + + + diff --git a/CaPPMS/Pages/StudentReviews/MyRatings.razor b/CaPPMS/Pages/StudentReviews/MyRatings.razor index 9742436..3a69ee6 100644 --- a/CaPPMS/Pages/StudentReviews/MyRatings.razor +++ b/CaPPMS/Pages/StudentReviews/MyRatings.razor @@ -18,12 +18,12 @@ } .headerColor { - background-color: rgb(30,30,120); - color: white; + background-color: rgb(243, 149, 9); + color: rgb(5, 5, 5); } .entriesColor { - background-color: rgb(51,16,90); + background-color: rgb(243, 149, 9); color: white; } @@ -37,7 +37,7 @@ /* Style for the outer table */ table.outerTable { border-collapse: collapse; - border: 2px solid black; /* Add a border to the entire outer table */ + border: 2px solid #960513; /* Add a border to the entire outer table */ } /* Style for the outer table cells (except for the inner table) */ @@ -86,7 +86,7 @@
StudentScoreTeamStudentScoreTeam
- + @@ -97,9 +97,9 @@
AverageAverage
- - - + + + diff --git a/CaPPMS/Pages/StudentReviews/StudentReview.razor b/CaPPMS/Pages/StudentReviews/StudentReview.razor index f38913f..f30acc8 100644 --- a/CaPPMS/Pages/StudentReviews/StudentReview.razor +++ b/CaPPMS/Pages/StudentReviews/StudentReview.razor @@ -19,26 +19,31 @@ } .card-header { - color: white; + color: #030303; font-size: 25px; } .card-header.description { - background-color: rgb(30, 30, 120); + background-color: rgb(243, 149, 9); } .card-header.evaluator { - background-color: rgb(46, 46, 131); + background-color: rgb(243, 149, 9); } .card-header.student { - background-color: rgb(51, 16, 90); + background-color: rgb(243, 149, 9); } .card-header.entries { - background-color: rgb(68, 19, 124); + background-color: rgb(243, 149, 9); } + .custom-table-header { + background-color: #960513; + color: white; + } + .form-label { font-size: 18px; margin-left: 10px; @@ -141,10 +146,10 @@
WeekScoreCommentsWeekScoreComments
- - - - + + + + diff --git a/CaPPMS/StudentReviews/Pages/Index.razor b/CaPPMS/StudentReviews/Pages/Index.razor index 6ff43f9..7c9f4d7 100644 --- a/CaPPMS/StudentReviews/Pages/Index.razor +++ b/CaPPMS/StudentReviews/Pages/Index.razor @@ -17,25 +17,30 @@ } .card-header { - color: white; + color: rgb(243, 240, 240); font-size: 25px; } .card-header.description { - background-color: rgb(30, 30, 120); + background-color: rgb(243, 149, 9); } .card-header.evaluator { - background-color: rgb(46, 46, 131); + background-color: rgb(243, 149, 9); } .card-header.student { - background-color: rgb(51, 16, 90); + background-color: rgb(243, 149, 9); } .card-header.entries { - background-color: rgb(68, 19, 124); + background-color: rgb(243, 149, 9); } + + .custom-table-header { + background-color: #960513; + color: white; + } .form-label { font-size: 18px; @@ -139,10 +144,10 @@
WeekEvaluated Team MemberScoreCommentsWeekEvaluated Team MemberScoreComments
- - - - + + + + diff --git a/CaPPMSTests/CaPPMSTests.csproj b/CaPPMSTests/CaPPMSTests.csproj index 9564b7c..2f0b70e 100644 --- a/CaPPMSTests/CaPPMSTests.csproj +++ b/CaPPMSTests/CaPPMSTests.csproj @@ -1,7 +1,7 @@  - net6.0 + net8.0 false diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties index bc6a58a..09e757e 100644 --- a/android/gradle/wrapper/gradle-wrapper.properties +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ -#Fri Jun 23 08:50:38 CEST 2017 +#Tue Apr 30 18:37:42 EDT 2024 distributionBase=GRADLE_USER_HOME +distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip distributionPath=wrapper/dists -zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip +zipStoreBase=GRADLE_USER_HOME
WeekEvaluated Team MemberScoreCommentsWeekEvaluated Team MemberScoreComments