I would like to make a font size picker that allows our users to select a certain font size (e.g. 110%, 125%) for display of the ExtJS application.
I don't want to use zoom or browser zoom, because there are parts that look ugly using browser zoom.
Is there a possibility to change the size of the text of the whole application dynamically (at runtime) by a certain percentage?
I already tried the following, but it didn't change anything:
Ext.util.CSS.createStyleSheet([
'.x-body {',
'font-size:14px',
'}'
].join(''),
'FontSize');