reactbook icon indicating copy to clipboard operation
reactbook copied to clipboard

Minor cosmetic suggestion for Rating.css

Open sisyfus opened this issue 8 years ago • 0 comments

I noticed that for the read-only Rating control (in the Whinepad app), the mouse pointer changes between an arrow (hovering over a highlighted star) to a vertical bar (hovering over a non-highlighted star). I was able to fix this by changing the cursor type from "auto" to "default" in the Rating.RatingReadonly style. This change allows the pointer to remain as an arrow no matter where it is in the control, at least using Chrome on Windows.

.Rating.RatingReadonly {
    cursor: default;
}

sisyfus avatar May 22 '17 08:05 sisyfus