Commit 322dc03193b for woocommerce
commit 322dc03193bba3cdb25ae9f16a2fb0e85a4776e0
Author: Ralf Wiechers <Drivingralle@users.noreply.github.com>
Date: Fri Sep 25 20:18:09 2026 +0200
Add field-sizing rule to order note text area (#69065)
* Add field-sizing rule to order note text area
Close #69064
* Add changefile(s) from automation for the following project(s): woocommerce
* Disable property-no-unknown rule for field-sizing rule
Co-authored-by: Karol Manijak <20098064+kmanijak@users.noreply.github.com>
---------
Co-authored-by: woocommercebot <woocommercebot@users.noreply.github.com>
Co-authored-by: Thomas Roberts <5656702+opr@users.noreply.github.com>
Co-authored-by: Karol Manijak <20098064+kmanijak@users.noreply.github.com>
diff --git a/plugins/woocommerce/changelog/69065-patch-1 b/plugins/woocommerce/changelog/69065-patch-1
new file mode 100644
index 00000000000..5e0c486fa7d
--- /dev/null
+++ b/plugins/woocommerce/changelog/69065-patch-1
@@ -0,0 +1,4 @@
+Significance: minor
+Type: tweak
+
+Let the text area for order notes grow for longer text
diff --git a/plugins/woocommerce/client/legacy/css/admin.scss b/plugins/woocommerce/client/legacy/css/admin.scss
index 945c9258492..9de824c5e78 100644
--- a/plugins/woocommerce/client/legacy/css/admin.scss
+++ b/plugins/woocommerce/client/legacy/css/admin.scss
@@ -3905,7 +3905,9 @@ ul.order_notes {
#add_order_note {
width: 100%;
- height: 60px;
+ min-height: 60px;
+ // stylelint-disable-next-line property-no-unknown -- field-sizing is missing from Stylelint 14. See #69077.
+ field-sizing: content;
}
.order_note_visibility {