Ejegg has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/317581

Change subject: Make mailcheck suggestions more subtle
......................................................................

Make mailcheck suggestions more subtle

Smaller, gray instead of red.

Bug: T148970
Change-Id: I532b6087014435b1584cbc7d5ec59ae8e7a29383
---
M gateway_forms/mustache/personal_info.html.mustache
M modules/css/gateway.css
M modules/js/ext.donationInterface.validation.js
3 files changed, 16 insertions(+), 11 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/DonationInterface 
refs/changes/81/317581/1

diff --git a/gateway_forms/mustache/personal_info.html.mustache 
b/gateway_forms/mustache/personal_info.html.mustache
index f20748a..12da095 100644
--- a/gateway_forms/mustache/personal_info.html.mustache
+++ b/gateway_forms/mustache/personal_info.html.mustache
@@ -52,5 +52,10 @@
                                                                <input 
class="fullwidth" name="email" value="{{ email }}" type="email" title="{{ l10n 
"donate_interface-donor-email" }}" placeholder="{{ l10n 
"donate_interface-donor-email" }}" id="email" required autocomplete="email">
                                                        </td>
                                                </tr>
+                        <tr id="emailSuggestion" >
+                            <td>
+                                <span></span>
+                            </td>
+                        </tr>
                         {{{ fieldError "email" }}}
 {{/ email_required }}
diff --git a/modules/css/gateway.css b/modules/css/gateway.css
index 30411b2..2f19d91 100644
--- a/modules/css/gateway.css
+++ b/modules/css/gateway.css
@@ -233,6 +233,12 @@
     display: none;
 }
 
+#emailSuggestion {
+    display: none;
+    color: #7c7c7c;
+    font-size: 95%;
+}
+
 /* Respond to small viewport */
 @media screen and (max-width: 981px) {
     /* Overall layout */
diff --git a/modules/js/ext.donationInterface.validation.js 
b/modules/js/ext.donationInterface.validation.js
index 1e3496c..fb64986 100644
--- a/modules/js/ext.donationInterface.validation.js
+++ b/modules/js/ext.donationInterface.validation.js
@@ -115,22 +115,16 @@
                                        'donate_interface-did-you-mean',
                                        suggestion.full
                                );
-                               $( '#emailMsg' )
-                                       .removeClass( 'errorMsgHide' )
-                                       .addClass( 'errorMsg' )
-                                       .html( message );
+                               $( '#emailSuggestion' ).show();
+                               $( '#emailSuggestion span' ).html( message );
                        },
                        empty: function ( element ) {
-                               $( '#emailMsg' )
-                                       .removeClass( 'errorMsg' )
-                                       .addClass( 'errorMsgHide' );
+                               $( '#emailSuggestion' ).hide();
                        }
                } );
        } );
-       $( document ).on( 'click', '#emailMsg .correction', function () {
+       $( document ).on( 'click', '#emailSuggestion .correction', function () {
                $( '#email' ).val( $( this ).text() );
-               $( '#emailMsg' )
-                       .removeClass( 'errorMsg' )
-                       .addClass( 'errorMsgHide' );
+               $( '#emailSuggestion' ).hide();
        } );
 } )( jQuery, mediaWiki );

-- 
To view, visit https://gerrit.wikimedia.org/r/317581
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I532b6087014435b1584cbc7d5ec59ae8e7a29383
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/DonationInterface
Gerrit-Branch: master
Gerrit-Owner: Ejegg <eeggles...@wikimedia.org>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to