You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Background of items in QuickAccessToolBar is not changed when mouse is over them (Colorful theme variant). The dropdown button of QuickAccessToolBar is not visible when is shown bellow ribbon
Light theme (correct behaviour):
Light Colorful theme (incorrect behaviour):
Light Colorful theme (dropdown button is not visible):
In version 7.1.0 it works, however background color change was pretty pale.
Environment
Fluent.Ribbon 8.0.0
Windows 10
.NET Framework 3.1 Core
The text was updated successfully, but these errors were encountered:
I believe that the problem is in the background of the title bar.
What I've found is that, when one uses Fluent.Ribbon and MahApps (which share the same theming), the MetroWindow and the RibbonWindow have different title bar colors. In the case of MetroWindow (MahAapps) it's the Accent color ("MahApps.Colors.Accent": "#CCxxxxxx"), on the other hand Fluent.Ribbon uses the AccentBaseColor ("Fluent.Ribbon.Colors.AccentBaseColor": "#FFxxxxxx"). I believe that the hover effect is to be achieved by using a color, darker then the current one (AccentBaseColor). Having in mind theming, I suggest transition of color from Fluent.Ribbon.Colors.AccentColor80 to Fluent.Ribbon.Colors.AccentBaseColor. And, of course, RibbonWindow should use AccentColor80 as a title bar background in colorful themes.
Another issue related to that one, is that if one uses both libraries together, particularly with the colorful theme of Fluent.Ribbon, and has child windows inherited from MetroWindow (MahApps), he will end up with windows that have different title bar colors. Recently I had such an issue and I fixed it just by setting MahApps's MetroWindow title bar background to the AccentBase (in my case I have generated my own custom color themes for both libraries with the same parameters).
As I can see, MS Office uses the same approach and deals with accent colors in that way.
Will change TitleBackground to AccentColor80 to be aligned with MahApps.Metro. Don't know why i never noticed this difference.
There is one change that would solve all these color issues:
Switching from RGBA to pure RGB colors instead of using transparency and then fix all accent color usage to look good again.
But it would solve all issues caused by transparency/opacity used in the colors.
Will experiment a bit to see how much work this would require.
Background of items in QuickAccessToolBar is not changed when mouse is over them (Colorful theme variant). The dropdown button of QuickAccessToolBar is not visible when is shown bellow ribbon
Light theme (correct behaviour):
Light Colorful theme (incorrect behaviour):
Light Colorful theme (dropdown button is not visible):
In version 7.1.0 it works, however background color change was pretty pale.
Environment
The text was updated successfully, but these errors were encountered: