-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update README.md * Update README.md * revert version * revert comments * companyname * Update README.md * #114 Implemented CssUtil.GetDueClass & tests (#123) * #114 Implemented CssUtil.GetDueClass & tests * #114 Added semicolor to css rule * #114 Changed placement of css rule. * #114 removed dots from string result. * #114 PR review changes. * #115 Added call to GetDueClass method in monthly page. (#124) * add mockups for icons and colors * Adds font color to due period depending on severity. (#126) * Adds font color to due period depending on severity. * Returns text-end class for Index page. * Preserves newline in subscription description (#131) * Introduces subscription background color. (#135) * Adds background color to the database * Adds a control to select background color for a subscription * Updates tests to include background color * Updates migration scripts * Update subtrack.MAUI/Utilities/CssUtil.cs Co-authored-by: chrisK00 <72318023+chrisK00@users.noreply.github.com> * Minor updates * Update subtrack.MAUI/Pages/UpsertSubscription.razor Co-authored-by: chrisK00 <72318023+chrisK00@users.noreply.github.com> * Update subtrack.MAUI/Pages/UpsertSubscription.razor Co-authored-by: chrisK00 <72318023+chrisK00@users.noreply.github.com> * Update subtrack.MAUI/Pages/UpsertSubscription.razor Co-authored-by: chrisK00 <72318023+chrisK00@users.noreply.github.com> * Update subtrack.MAUI/Pages/UpsertSubscription.razor Co-authored-by: chrisK00 <72318023+chrisK00@users.noreply.github.com> * Minor adjustments --------- Co-authored-by: chrisK00 <72318023+chrisK00@users.noreply.github.com> * #128 make labels less visible (#136) * #128 make labels less visible * Update subtrack.MAUI/wwwroot/css/app.css Co-authored-by: chrisK00 <72318023+chrisK00@users.noreply.github.com> * Update subtrack.MAUI/Pages/SubscriptionDetails.razor Co-authored-by: chrisK00 <72318023+chrisK00@users.noreply.github.com> * Update subtrack.MAUI/Pages/SubscriptionDetails.razor Co-authored-by: chrisK00 <72318023+chrisK00@users.noreply.github.com> * Update subtrack.MAUI/Pages/SubscriptionDetails.razor Co-authored-by: chrisK00 <72318023+chrisK00@users.noreply.github.com> * Update subtrack.MAUI/Pages/SubscriptionDetails.razor Co-authored-by: chrisK00 <72318023+chrisK00@users.noreply.github.com> * Update subtrack.MAUI/Pages/SubscriptionDetails.razor Co-authored-by: chrisK00 <72318023+chrisK00@users.noreply.github.com> --------- Co-authored-by: chrisK00 <72318023+chrisK00@users.noreply.github.com> * #125 Added US Culture as a constant (#144) * #142 Fixed descriptions not displayed correctly. (#145) * update roadmap * make nav buttons larger and remove outline on back save and edit buttons (#143) * btn outline => btn filled * navbar simplification * resolve comments * format and remove non existing css class * remove default styling --------- Co-authored-by: ChrisK00 <christian.khalil2000@gmail.com> Co-authored-by: chrisK00 <72318023+chrisK00@users.noreply.github.com> --------- Co-authored-by: Konstantinos Grontis <grodiscostas@hotmail.com> Co-authored-by: denislavh <53407843+denislavh@users.noreply.github.com> Co-authored-by: Ashwin Thyagarajan <ashwin031192@gmail.com> Co-authored-by: Penguine-Os <yenebeb.df@gmail.com>
- Loading branch information
1 parent
369ab65
commit 521799d
Showing
30 changed files
with
903 additions
and
93 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
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
101 changes: 101 additions & 0 deletions
101
subtrack.DAL/Migrations/20230916005301_BackgroundColor.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,29 @@ | ||
using Microsoft.EntityFrameworkCore.Migrations; | ||
|
||
#nullable disable | ||
|
||
namespace subtrack.DAL.Migrations | ||
{ | ||
/// <inheritdoc /> | ||
public partial class BackgroundColor : Migration | ||
{ | ||
/// <inheritdoc /> | ||
protected override void Up(MigrationBuilder migrationBuilder) | ||
{ | ||
migrationBuilder.AddColumn<string>( | ||
name: "BackgroundColor", | ||
table: "Subscriptions", | ||
type: "TEXT", | ||
nullable: false, | ||
defaultValue: "#282828"); | ||
} | ||
|
||
/// <inheritdoc /> | ||
protected override void Down(MigrationBuilder migrationBuilder) | ||
{ | ||
migrationBuilder.DropColumn( | ||
name: "BackgroundColor", | ||
table: "Subscriptions"); | ||
} | ||
} | ||
} |
101 changes: 101 additions & 0 deletions
101
subtrack.DAL/Migrations/20230917120115_PrimaryColor.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,28 @@ | ||
using Microsoft.EntityFrameworkCore.Migrations; | ||
|
||
#nullable disable | ||
|
||
namespace subtrack.DAL.Migrations | ||
{ | ||
/// <inheritdoc /> | ||
public partial class PrimaryColor : Migration | ||
{ | ||
/// <inheritdoc /> | ||
protected override void Up(MigrationBuilder migrationBuilder) | ||
{ | ||
migrationBuilder.RenameColumn( | ||
name: "BackgroundColor", | ||
table: "Subscriptions", | ||
newName: "PrimaryColor"); | ||
} | ||
|
||
/// <inheritdoc /> | ||
protected override void Down(MigrationBuilder migrationBuilder) | ||
{ | ||
migrationBuilder.RenameColumn( | ||
name: "PrimaryColor", | ||
table: "Subscriptions", | ||
newName: "BackgroundColor"); | ||
} | ||
} | ||
} |
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
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
Oops, something went wrong.