Unreadable elements in monkey groove [#18029]

Post a reply

Smilies
:D :) :( :o :-? 8) :lol: :x :P :oops: :cry: :evil: :roll: :wink:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Unreadable elements in monkey groove [#18029]

Re: Unreadable elements in monkey groove

by Ludek » Mon Jun 14, 2021 11:57 am

Thanks for reporting, to be fixed as https://www.ventismedia.com/mantis/view.php?id=18029

Unreadable elements in monkey groove [#18029]

by TIV73 » Sun Jun 13, 2021 10:38 am

Hi,
skin monkey groove uses the following color definition in skin_base_add.less

Code: Select all

@highlightColor: @warningColor;
@highlightBgColor: @highlightColor;
Css class highlightColor is defined to use these two colors as font and fill color in skin_layout.less, making elements tagged with this class unreadable:

Code: Select all

.highlightColor {
    color: @highlightColor;
    background-color: @highlightBgColor;
}
This class is also applied when the uitools.highlightDiffs function is called, as it is in Files to Edit > Unorganized Files node (also see here)

As far as I can tell this monkey groove is the only (built-in) skin where this occurs, all other skins use different colors for these elements.

Edit: I just noticed that I accidently created the thread in the wrong forum. Could someone kindly move it to the bug and feature request discussion?

Top