Opened 11 years ago
Last modified 9 years ago
#11728 assigned Bug
[Android][Chrome] Font size
Reported by: | Piotr Jasiun | Owned by: | Szymon Kupś |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | |
Keywords: | Android | Cc: |
Description
Tested on CKEditor 4.3.4, Chrome 33 on Android 4.4.2.
Android change font size in the contenteditable
area what is on the one hand useful, because it is easier to read and edit content. But on the other hand, because of this, non-editable elements, like placeholder
widget, has smaller font size. Also what user see is not what he would get.
We should search for a flag to disable such feature and consider if we should use it.
Attachments (1)
Change History (5)
Changed 11 years ago by
Attachment: | nexus7-placeholder.png added |
---|
comment:1 Changed 11 years ago by
Keywords: | Android added |
---|---|
Status: | new → confirmed |
comment:2 Changed 9 years ago by
Owner: | set to Szymon Kupś |
---|---|
Status: | confirmed → assigned |
comment:3 Changed 9 years ago by
comment:4 Changed 9 years ago by
Some progress in https://code.google.com/p/chromium/issues/detail?id=532408. New CSS property text-size-adjust: none;
landed in Canary and could help us resolving this issue.
It looks like this is caused by font boosting on Android Chrome.
display-inline
elements insidecontenteditable
are not scaled as the rest of the text.Font boosting can be disabled by hacks like this http://stackoverflow.com/a/16432702, but I think it's not a solution for our situation.
I reported an issue on Chromium project https://code.google.com/p/chromium/issues/detail?id=532408 and I will wait for any responses there to continue work on this ticket.