aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDeniz Akşimşek <deniz@denizaksimsek.com>2024-06-13 19:46:06 +0300
committerDeniz Akşimşek <deniz@denizaksimsek.com>2024-06-13 19:56:42 +0300
commit95449a724e57f8c2e70ee4361bb8427d9d0a16df (patch)
treebe1d697ce45b1cc0ea0e6a4e4877568e77a8f8a9
parente89af740a7639704b31178c0c604e6f63794ec05 (diff)
downloadmissing-95449a724e57f8c2e70ee4361bb8427d9d0a16df.tar.gz
missing-95449a724e57f8c2e70ee4361bb8427d9d0a16df.zip
Fix <select> elements being taller than <input> elements in inline contexts
-rw-r--r--src/main.css4
-rw-r--r--www/releases/1.1.2.md5
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.