diff --git a/djblets/static/djblets/js/jquery.gravy.inlineEditor.js b/djblets/static/djblets/js/jquery.gravy.inlineEditor.js
index dbbc742d2806b54e9e3c31378261a0e02f5c3e44..a384b68d5723ea41a104875f5b91126906b705fc 100644
--- a/djblets/static/djblets/js/jquery.gravy.inlineEditor.js
+++ b/djblets/static/djblets/js/jquery.gravy.inlineEditor.js
@@ -197,7 +197,10 @@ $.widget("ui.inlineEditor", {
             if (this.options.showRequiredFlag) {
                 this._editIcon.append(
                     $("<span/>")
-                        .attr("aria-label", "This field is required")
+                        .attr({
+                            'aria-label': 'This field is required',
+                            title: 'This field is required'
+                        })
                         .addClass("required-flag")
                         .text("*"));
             }
@@ -543,7 +546,6 @@ $.widget("ui.inlineEditor", {
              * the desired width.
              */
             this._field
-                .css("min-width", this.element.innerWidth())
                 .width(0)
                 .outerWidth(formParent.innerWidth() -
                             (this._form.offset().left -
