Defect #42083
closedPage flickers as font size changes while rendering
0%
Description
tried using latest docker version
```
docker run --name default-redmine -p 9002:3000 redmine
```
attached a screen record
Files
Updated by Soonoh Jung 15 days ago
add following code in my theme fixing this issue
* {
--fonts-main: "Noto", Arial, sans-serif;
}
Updated by Mizuki ISHIKAWA 6 days ago
This flickering is likely a phenomenon called FOUT (Flash of Unstyled Text).
* { --fonts-main: "Noto", Arial, sans-serif; }
is not properly loading "Noto Sans," so Arial is being used instead. Indeed, there is no flickering when using Arial, but I personally prefer the Noto Sans font. It's a dilemma.
Updated by Mizuki ISHIKAWA 6 days ago
The Noto Sans font is cached, so FOUT (Flash of Unstyled Text) is less likely to occur with regular reloads and only happens during a hard reload or on the first access. Therefore, I don’t find the flickering caused by FOUT particularly bothersome, but this might vary depending on the person.
Updated by Go MAEDA about 3 hours ago
- Status changed from New to Closed
- Resolution set to Wont fix