No subpixel hinting in message list and left panel
Categories
(Thunderbird :: Folder and Message Lists, defect)
Tracking
(Not tracked)
People
(Reporter: kokoko3k, Unassigned)
References
Details
Attachments
(1 file)
7.19 KB,
image/png
|
Details |
User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:95.0) Gecko/20100101 Firefox/95.0
Steps to reproduce:
Used thunderbird
Actual results:
Noticed that there is no No subpixel hinting in message list and left panel.In the attachment you'll se a picture that shows part of the text in the [unread -starred -cardbook ] bar that is correctly rendered with subpixel AA, and in the bottom part you see the part of the text (the object of an email) not rendered using AA.
Expected results:
Subpixelhinting everywhere as configured on my system and as it work in email messages.
Comment 2•3 years ago
|
||
Reporter, do you still see this issue when using version 102?
Comment 5•2 years ago
|
||
The subpixel anti‐aliasing in the message list pane can be restored by removing non‐static positioning from some elements, but I'm not sure if it has any side effects:
table[is="tree-view-table"] td {
position: static !important;
}
tr[is="thread-row"] td > .thread-container {
position: static !important;
}
/* fix line spacing */
tr[is="thread-row"] .subject-line {
line-height: normal !important;
}
With WebRender one has to be careful not to lose subpixel anti‐aliasing. Non‐static positioning seems to be a common problem, as it can cause elements to overlap and often a new layer is then used for the elements on top. But since WebRender does not support per‐component alpha channel, subpixel anti‐aliasing cannot be used for this layer.
Updated•2 years ago
|
Description
•