Completed
Last Updated: 30 Apr 2021 13:42 by ADMIN
Release R2 2021
Connor
Created on: 14 Apr 2021 00:28
Category: RichTextEditor
Type: Bug Report
1
RadRichTextEditor: Changing Theme causing styles text to become hard to read
When changing the theme to a dark theme the Rich text editor appears to have an issue converting the Styles tab as below. Expected to see conversion from light theme styles to dark themes styles.

2 comments
Connor
Posted on: 15 Apr 2021 01:36

Hi Dess,

 

Thank you. That worked well :)

ADMIN
Dess | Tech Support Engineer, Principal
Posted on: 14 Apr 2021 06:07

Hello, Connor, 

According to the provided screenshots, indeed, the text looks blurry and difficult to read. I was able to observe such a design with FluentDark and CrystalDark themes. It comes from the dark back color of the style items.

I have logged it in our feedback portal by making this thread public on your behalf. You can track its progress, subscribe for status changes and add your comments on the following link - feedback item.

I have also updated your Telerik points.

Currently, the possible solution that I can suggest is to use the following custom implementation for the Ribbon UI and customize the back color for the style items:

        public class CustomRichTextEditorRibbonBar : RichTextEditorRibbonBar
        {
            protected override void FillStylesGallery()
            {
                base.FillStylesGallery();
                foreach (Telerik.WinControls.UI.RichTextEditorRibbonUI.StyleGalleryItem item in galleryStyles.Items)
                {
                    item.ForeColor = Color.Black ;
                    FillPrimitive fill = item.FindDescendant<FillPrimitive>();
                    fill.GradientStyle = GradientStyles.Solid;
                    fill.BackColor = Color.White;
                }
            }
        }

I hope this information helps. If you need any further assistance please don't hesitate to contact me. 

Regards,
Dess | Tech Support Engineer, Sr.
Progress Telerik

Тhe web is about to get a bit better! 

The Progress Hack-For-Good Challenge has started. Learn how to enter and make the web a worthier place: https://progress-worthyweb.devpost.com.