mojira.dev

CMPT_LEAWIND

Assigned

No issues.

Reported

MC-265859 The crosshair becomes difficult to distinguish when the target color approaches gray Duplicate

Comments

I reproduced this on Chrome 107.0.5304.107, Windows11

Open this page: https://www.minecraft.net/zh-hans/article/rtxcellent

Then press F12 to open developer tools.

The CSS style overflow of body is set to hidden. When I change it to visible, the scroll bar appears, and the scroll is available.

[media]

To temporily solve this problem, you can run this javascript code in develop tools (F12):

 document.body.style.overflow = "visible";

then the scroll bar will appear.