1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-13 17:16:48 +00:00

Update reset.tid to use modern-normalize 2.0.0 (#8120)

This PR updates the vanilla/reset stylesheet to use the newer `modern-normalize 2.0.0`
This commit is contained in:
Simon Huber 2024-04-02 18:35:10 +02:00 committed by GitHub
parent 9939759690
commit 7ce85a2ddb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,7 +1,7 @@
title: $:/themes/tiddlywiki/vanilla/reset title: $:/themes/tiddlywiki/vanilla/reset
type: text/css type: text/css
/*! modern-normalize v1.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */ /*! modern-normalize v2.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
/* /*
Document Document
@ -13,51 +13,15 @@ Use a better box model (opinionated).
*/ */
*, *,
*::before, ::before,
*::after { ::after {
box-sizing: border-box; box-sizing: border-box;
} }
/**
Use a more readable tab size (opinionated).
*/
:root {
-moz-tab-size: 4;
tab-size: 4;
}
/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/
html { html {
line-height: 1.15; /* 1 */ /* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
-webkit-text-size-adjust: 100%; /* 2 */
}
/*
Sections
========
*/
/**
Remove the margin in all browsers.
*/
body {
margin: 0;
}
/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/
body {
font-family: font-family:
system-ui, system-ui,
-apple-system, /* Firefox supports this but not yet `system-ui` */
'Segoe UI', 'Segoe UI',
Roboto, Roboto,
Helvetica, Helvetica,
@ -65,6 +29,19 @@ body {
sans-serif, sans-serif,
'Apple Color Emoji', 'Apple Color Emoji',
'Segoe UI Emoji'; 'Segoe UI Emoji';
line-height: 1.15; /* 1. Correct the line height in all browsers. */
-webkit-text-size-adjust: 100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
-moz-tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
tab-size: 4; /* 3 */
}
/*
Sections
========
*/
body {
margin: 0; /* Remove the margin in all browsers. */
} }
/* /*
@ -158,7 +135,7 @@ Tabular data
/** /**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) 2. Correct table border color inheritance in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/ */
table { table {
@ -189,11 +166,10 @@ textarea {
/** /**
Remove the inheritance of text transform in Edge and Firefox. Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/ */
button, button,
select { /* 1 */ select {
text-transform: none; text-transform: none;
} }