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-12 23:49:37 +0300
committerClement Ho <ClemMakesApps@gmail.com>2018-04-12 23:49:37 +0300
commitaefd75c044a44b525ee64e48f067b918b3c55109 (patch)
tree74d382834dddde188e7021786174652159ee95c9 /app/views/projects/_issuable_by_email.html.haml
parentc2cbc155741a2c7f0796c2347e679423ba924e15 (diff)
[skip ci] .input-group-btn into .input-group-prepend, .input-group-append
Diffstat (limited to 'app/views/projects/_issuable_by_email.html.haml')
-rw-r--r--app/views/projects/_issuable_by_email.html.haml17
1 files changed, 9 insertions, 8 deletions
diff --git a/app/views/projects/_issuable_by_email.html.haml b/app/views/projects/_issuable_by_email.html.haml
index 585dd2ce1a1..1704b52ef6c 100644
--- a/app/views/projects/_issuable_by_email.html.haml
+++ b/app/views/projects/_issuable_by_email.html.haml
@@ -17,14 +17,15 @@
You can create a new #{name} inside this project by sending an email to the following email address:
.email-modal-input-group.input-group
= text_field_tag :issuable_email, email, class: "monospace js-select-on-focus form-control", readonly: true
- .input-group-btn
- = clipboard_button(target: '#issuable_email', class: 'btn btn-clipboard btn-transparent d-none d-sm-block')
- = mail_to email, class: 'btn btn-clipboard btn-transparent',
- subject: _("Enter the #{name} title"),
- body: _("Enter the #{name} description"),
- title: _('Send email'),
- data: { toggle: 'tooltip', placement: 'bottom' } do
- = sprite_icon('mail')
+ .input-group-append
+ .input-group-text
+ = clipboard_button(target: '#issuable_email', class: 'btn btn-clipboard btn-transparent d-none d-sm-block')
+ = mail_to email, class: 'btn btn-clipboard btn-transparent',
+ subject: _("Enter the #{name} title"),
+ body: _("Enter the #{name} description"),
+ title: _('Send email'),
+ data: { toggle: 'tooltip', placement: 'bottom' } do
+ = sprite_icon('mail')
%p
= render 'by_email_description'