Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

* 1661 bug office 2007 dark blue theme form text is hard to read when app loses focus #1671

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Documents/Changelog/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
=======

## 2024-11-xx - Build 2411 - November 2024
* Resolved [#1661](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1661), Office 2007 Dark Blue theme: Form Text is hard to read when app loses focus
* Implemented [#1650](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1650), EditorConfig null masking needs to be "Unhidden"
* Resolved [#822](https://github.com/Krypton-Suite/Standard-Toolkit/issues/822), Unable to make closed auto hidden docked page visible after config reloading (fix courtesy of [dyurshevich](https://github.com/dyurshevich))
* Resolved [#1646](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1646), `KryptonRibbonGroupThemeComboBox` does not react to index changes anymore.
Expand Down
105 changes: 0 additions & 105 deletions Source/Krypton Components/Krypton.Ribbon/Utilities/ExceptionHandler.cs

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,9 @@ public class PaletteMicrosoft365BlueDarkMode : PaletteMicrosoft365BlueDarkModeBa
Color.FromArgb(179, 209, 247), // FormBorderHeaderInctive1
Color.FromArgb(96, 150, 220), // FormBorderHeaderInctive2
Color.FromArgb(21, 66, 139), // FormHeaderShortActive
Color.FromArgb(160, 160, 160), // FormHeaderShortInactive
Color.FromArgb(150, 143, 134), // FormHeaderShortInactive
Color.FromArgb(105, 112, 121), // FormHeaderLongActive
Color.FromArgb(160, 160, 160), // FormHeaderLongInactive
Color.FromArgb(150, 143, 134), // FormHeaderLongInactive
Color.FromArgb(158, 193, 241), // FormButtonBorderTrack
Color.FromArgb(210, 228, 254), // FormButtonBack1Track
Color.FromArgb(255, 255, 255), // FormButtonBack2Track
Expand Down Expand Up @@ -716,7 +716,7 @@ public abstract class PaletteMicrosoft365BlueDarkModeBase : PaletteBase

private static readonly Color _gridTextColor = Color.Black;
private static readonly Color _disabledText2 = Color.FromArgb(51, 51, 51);
private static readonly Color _disabledText = Color.FromArgb(89, 89, 89);
private static readonly Color _disabledText = Color.FromArgb(150, 143, 134);
private static readonly Color _disabledBack = Color.FromArgb(235, 235, 235);
private static readonly Color _disabledBorder = Color.FromArgb(212, 212, 212);
private static readonly Color _disabledGlyphDark = Color.FromArgb(183, 183, 183);
Expand Down
Loading