Change internal font size from from 15 to 20.

pull/21833/head
Jorik Schellekens 2020-06-02 17:10:22 +01:00
parent b50046f1ab
commit c0ac44e471
4 changed files with 60 additions and 59 deletions

View File

@ -19,7 +19,7 @@ limitations under the License.
@import "./_font-sizes.scss";
:root {
font-size: 15px;
font-size: 20px;
}
html {

View File

@ -14,59 +14,59 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
$font-1px: 0.067rem;
$font-1-5px: 0.100rem;
$font-2px: 0.133rem;
$font-3px: 0.200rem;
$font-4px: 0.267rem;
$font-5px: 0.333rem;
$font-6px: 0.400rem;
$font-7px: 0.467rem;
$font-8px: 0.533rem;
$font-9px: 0.600rem;
$font-10px: 0.667rem;
$font-10-4px: 0.693rem;
$font-11px: 0.733rem;
$font-12px: 0.800rem;
$font-13px: 0.867rem;
$font-14px: 0.933rem;
$font-15px: 1.000rem;
$font-16px: 1.067rem;
$font-17px: 1.133rem;
$font-18px: 1.200rem;
$font-19px: 1.267rem;
$font-20px: 1.3333333rem;
$font-21px: 1.400rem;
$font-22px: 1.467rem;
$font-23px: 1.533rem;
$font-24px: 1.600rem;
$font-25px: 1.667rem;
$font-26px: 1.733rem;
$font-27px: 1.800rem;
$font-28px: 1.867rem;
$font-29px: 1.933rem;
$font-30px: 2.000rem;
$font-31px: 2.067rem;
$font-32px: 2.133rem;
$font-33px: 2.200rem;
$font-34px: 2.267rem;
$font-35px: 2.333rem;
$font-36px: 2.400rem;
$font-37px: 2.467rem;
$font-38px: 2.533rem;
$font-39px: 2.600rem;
$font-40px: 2.667rem;
$font-41px: 2.733rem;
$font-42px: 2.800rem;
$font-43px: 2.867rem;
$font-44px: 2.933rem;
$font-45px: 3.000rem;
$font-46px: 3.067rem;
$font-47px: 3.133rem;
$font-48px: 3.200rem;
$font-49px: 3.267rem;
$font-50px: 3.333rem;
$font-51px: 3.400rem;
$font-52px: 3.467rem;
$font-88px: 5.887rem;
$font-400px: 26.667rem;
$font-1px: 0.05rem;
$font-1-5px: 0.075rem;
$font-2px: 0.1rem;
$font-3px: 0.15rem;
$font-4px: 0.2rem;
$font-5px: 0.25rem;
$font-6px: 0.3rem;
$font-7px: 0.35rem;
$font-8px: 0.4rem;
$font-9px: 0.45rem;
$font-10px: 0.5rem;
$font-10-4px: 0.52rem;
$font-11px: 0.55rem;
$font-12px: 0.6rem;
$font-13px: 0.65rem;
$font-14px: 0.7rem;
$font-15px: 0.75rem;
$font-16px: 0.8rem;
$font-17px: 0.85rem;
$font-18px: 0.9rem;
$font-19px: 0.95rem;
$font-20px: 1.0rem;
$font-21px: 1.05rem;
$font-22px: 1.1rem;
$font-23px: 1.15rem;
$font-24px: 1.2rem;
$font-25px: 1.25rem;
$font-26px: 1.3rem;
$font-27px: 1.35rem;
$font-28px: 1.4rem;
$font-29px: 1.45rem;
$font-30px: 1.5rem;
$font-31px: 1.55rem;
$font-32px: 1.6rem;
$font-33px: 1.65rem;
$font-34px: 1.7rem;
$font-35px: 1.75rem;
$font-36px: 1.8rem;
$font-37px: 1.85rem;
$font-38px: 1.9rem;
$font-39px: 1.95rem;
$font-40px: 2.0rem;
$font-41px: 2.05rem;
$font-42px: 2.1rem;
$font-43px: 2.15rem;
$font-44px: 2.2rem;
$font-45px: 2.25rem;
$font-46px: 2.3rem;
$font-47px: 2.35rem;
$font-48px: 2.4rem;
$font-49px: 2.45rem;
$font-50px: 2.5rem;
$font-51px: 2.55rem;
$font-52px: 2.6rem;
$font-88px: 4.4rem;
$font-400px: 20rem;

View File

@ -180,7 +180,7 @@ export const SETTINGS = {
"fontSize": {
displayName: _td("Font size"),
supportedLevels: LEVELS_ACCOUNT_SETTINGS,
default: 15,
default: 20,
controller: new FontSizeController(),
},
"useCustomFontSize": {

View File

@ -45,7 +45,8 @@ export class FontWatcher implements IWatcher {
};
private setRootFontSize = (size) => {
const fontSize = Math.max(Math.min(FontWatcher.MAX_SIZE, size), FontWatcher.MIN_SIZE);
// Externally we tell the user the font is size 15. Internally we use 20.
const fontSize = Math.max(Math.min(FontWatcher.MAX_SIZE, size), FontWatcher.MIN_SIZE) + 5;
if (fontSize !== size) {
SettingsStore.setValue("fontSize", null, SettingLevel.Device, fontSize);