diff options
-rw-r--r-- | src/main.css | 4 | ||||
-rw-r--r-- | www/releases/1.1.2.md | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/src/main.css b/src/main.css index 2879329..f468e53 100644 --- a/src/main.css +++ b/src/main.css @@ -480,7 +480,9 @@ td, th { ***/ input { display: block; } -label input:not([specificity-hack]) { display: inline; padding-block: 0; } +label :is(input, select):not([specificity-hack]) { + display: inline; padding-block: 0; +} button, input[type="submit"], diff --git a/www/releases/1.1.2.md b/www/releases/1.1.2.md index dbd11ba..2f2c258 100644 --- a/www/releases/1.1.2.md +++ b/www/releases/1.1.2.md @@ -1,3 +1,8 @@ # Changelog - Build step copies `dist/js` into `www/missing-js` so components in pages like `40-aria.md` can function when deployed to Netlify. +- Fixed `<select>` elements being taller than `<input>` elements in inline contexts. +- Fixed a bug in the `hotkey` function where modifier keys were not being parsed. +- Reduced bloat and fixed bugs by removing IE11 transcompilation. +- Fixed some bugs in the documentation website. +- Fixed the build process to work around a Deno bug. |