Skip to content

Commit

Permalink
Fixed an issue with a back color in the dark theme
Browse files Browse the repository at this point in the history
  • Loading branch information
-- committed Jan 31, 2021
1 parent 4a2807d commit 0e2800c
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 43 deletions.
2 changes: 0 additions & 2 deletions vIDsafe/DarkTheme.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ protected override void SetTags()
SetTagColors("FrontTitleLabel", ThemeColors["DarkGray"], ThemeColors["Transparent"]);
SetTagColors("FrontSubTitleLabel", ThemeColors["LightGray"], ThemeColors["Transparent"]);

SetTagColors("PasswordLabel", ThemeColors["White"], ThemeColors["NavyBlack"]);

SetTagColors("SubPanel", ThemeColors["White"], ThemeColors["NavyBlack"]);
SetTagColors("InnerSubPanel", ThemeColors["White"], ThemeColors["NavyGray"]);
SetTagColors("SmallSubPanel", ThemeColors["White"], ThemeColors["DarkNavyGray"]);
Expand Down
76 changes: 38 additions & 38 deletions vIDsafe/FormIdentities.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vIDsafe/FormIdentities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ private void DisplayCredentialCount(System.Windows.Forms.DataVisualization.Chart
X = e.Position.X - (e.Position.Width / 100),
Y = e.Position.Y + (e.Position.Height / 100),
Font = new Font("Segoe UI", 12, FontStyle.Bold),
Tag = "MainPanel",
Tag = "MainPanel", //Todo: Not working, constant black
//ForeColor = Color.Gainsboro
};
//ta.Alignment = ContentAlignment.MiddleCenter;
Expand Down
2 changes: 1 addition & 1 deletion vIDsafe/FormOverview.cs
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ private void DisplayCredentialCount(System.Windows.Forms.DataVisualization.Chart
X = e.Position.X - (e.Position.Width / 100),
Y = e.Position.Y + (e.Position.Height / 100),
Font = new Font("Segoe UI", 12, FontStyle.Bold),
Tag = "MainPanel",
Tag = "MainPanel", //Todo: Not working, constant black
//ForeColor = Color.Gainsboro
};
//ta.Alignment = ContentAlignment.MiddleCenter;
Expand Down
2 changes: 1 addition & 1 deletion vIDsafe/FormVault.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0e2800c

Please sign in to comment.