View Issue Details

IDProjectCategoryView StatusLast Update
0017014MMW 5Skinning frameworkpublic2020-12-27 14:40
Reporterpeke Assigned To 
PriorityurgentSeverityminorReproducibilityalways
Status closedResolutionfixed 
Target Version5.0Fixed in Version5.0 
Summary0017014: Ratings: Rating representation on UI can be clear
DescriptionAs pointed by User maybe it could be usefull to tweak Rating representation in Skins of Player Object.

I would make few adjustments:
1. No rating graphics would look like currently 0 Rating graphics
2. 0 rating graphics would look like current No rating Graphics with added small 1px outline in contrasted color (rating color)

Result would be that in both cases rating is clearly visible for user to find in UI even on 4k monitors.
Steps To Reproducehttps://www.mediamonkey.com/forum/viewtopic.php?f=30&t=97583
TagsNo tags attached.
Fixed in build2277

Activities

drakinite

2020-11-28 17:46

developer   ~0060433

Item 1) can be resolved simply by adding this to skin_rating.less:

div[data-id="player-rating"] .ratingCanvas[data-unknown] {
    opacity: unset;
}

Item 2) would be much more complicated to implement successfully. It's possible to control the stroke of stars with this type of CSS:
.ratingStar[data-emptystar] svg path:nth-child(1) {
    stroke: @textColor;
    stroke-opacity: 0.5;
    fill-opacity: 0.2;
}
however, it gets very finicky because data-emptystar would have to be given unset opacity in order to get its stroke to stand out... and I was unable to get it done in a reasonably elegant manner. I would suggest putting off item 2 to a later release.

michal

2020-11-30 12:45

developer   ~0060459

Fixed in build 2277. Outline used only for no rating, I think this will be more consistent with the rest of the GUI. Try, I think it is pretty usable.

peke

2020-12-03 00:02

developer   ~0060514

Re-open

I do not see much of improvements at all?

peke

2020-12-03 00:03

developer   ~0060515

bug17014.jpg (685,718 bytes)

michal

2020-12-03 06:50

developer   ~0060521

Peke: you have hidden rating control on player... this issue was about its visibility on player control, when set visible in player layout.

peke

2020-12-27 14:40

developer   ~0061086

Verified 2291

Player UI uses outline for no rating.

Closing for now and based on user feedback we can extent same behavior to track browser views.