Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Ho <ClemMakesApps@gmail.com>2018-04-25 00:40:46 +0300
committerClement Ho <ClemMakesApps@gmail.com>2018-04-25 00:40:46 +0300
commit80766821b24cc13a6ce054f5b0c996bebccc4121 (patch)
treea930e81665bb24b4798906c59c1ce065099a5dbf /app/views/devise
parentfe60886aa279d3031d1fe8ac596ba5fd4178b451 (diff)
Revert .hide to .d-none conversion
Diffstat (limited to 'app/views/devise')
-rw-r--r--app/views/devise/shared/_signup_box.html.haml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/devise/shared/_signup_box.html.haml b/app/views/devise/shared/_signup_box.html.haml
index d8ce63a1770..2554b2688bb 100644
--- a/app/views/devise/shared/_signup_box.html.haml
+++ b/app/views/devise/shared/_signup_box.html.haml
@@ -9,9 +9,9 @@
.username.form-group
= f.label :username
= f.text_field :username, class: "form-control middle", pattern: Gitlab::PathRegex::NAMESPACE_FORMAT_REGEX_JS, required: true, title: 'Please create a username with only alphanumeric characters.'
- %p.validation-error.d-none Username is already taken.
- %p.validation-success.d-none Username is available.
- %p.validation-pending.d-none Checking username availability...
+ %p.validation-error.hide Username is already taken.
+ %p.validation-success.hide Username is available.
+ %p.validation-pending.hide Checking username availability...
.form-group
= f.label :email
= f.email_field :email, class: "form-control middle", required: true, title: "Please provide a valid email address."