Commit 0b355aba authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Replace alerts with well where alert is not needed

parent 3a111656
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
- @service.errors.full_messages.each do |msg| - @service.errors.full_messages.each do |msg|
%p= msg %p= msg
- if @service.help.present? - if @service.help.present?
.alert.alert-info .well
= preserve do = preserve do
= markdown @service.help = markdown @service.help
......
...@@ -31,14 +31,11 @@ ...@@ -31,14 +31,11 @@
= render "visibility_level", f: f, visibility_level: @project.visibility_level, can_change_visibility_level: can?(current_user, :change_visibility_level, @project) = render "visibility_level", f: f, visibility_level: @project.visibility_level, can_change_visibility_level: can?(current_user, :change_visibility_level, @project)
%fieldset.features .form-group
%legend = f.label :tag_list, "Tags", class: 'control-label'
Tags: .col-sm-10
.form-group = f.text_field :tag_list, maxlength: 2000, class: "form-control"
= f.label :tag_list, "Tags", class: 'control-label' %p.help-block Separate tags with commas.
.col-sm-10
= f.text_field :tag_list, maxlength: 2000, class: "form-control"
%p.hint Separate tags with commas.
%fieldset.features %fieldset.features
%legend %legend
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
%span Import existing git repo %span Import existing git repo
.col-sm-10 .col-sm-10
= f.text_field :import_url, class: 'form-control', placeholder: 'https://github.com/randx/six.git' = f.text_field :import_url, class: 'form-control', placeholder: 'https://github.com/randx/six.git'
.alert.alert-info .well.prepend-top-20
This URL must be publicly accessible or you can add a username and password like this: https://username:password@gitlab.com/company/project.git. This URL must be publicly accessible or you can add a username and password like this: https://username:password@gitlab.com/company/project.git.
%br %br
The import will time out after 4 minutes. For big repositories, use a clone/push combination. The import will time out after 4 minutes. For big repositories, use a clone/push combination.
......
...@@ -72,7 +72,7 @@ ...@@ -72,7 +72,7 @@
%span Git repository URL %span Git repository URL
.col-sm-10 .col-sm-10
= f.text_field :import_url, class: 'form-control', placeholder: 'https://username:password@gitlab.company.com/group/project.git' = f.text_field :import_url, class: 'form-control', placeholder: 'https://username:password@gitlab.company.com/group/project.git'
.alert.alert-info.prepend-top-10 .well.prepend-top-20
%ul %ul
%li %li
The repository must be accessible over HTTP(S). If it is not publicly accessible, you can add authentication information to the URL: <code>https://username:password@gitlab.company.com/group/project.git</code>. The repository must be accessible over HTTP(S). If it is not publicly accessible, you can add authentication information to the URL: <code>https://username:password@gitlab.company.com/group/project.git</code>.
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
%p.light Keep stable branches secure and force developers to use Merge Requests %p.light Keep stable branches secure and force developers to use Merge Requests
%hr %hr
.alert.alert-info .well.append-bottom-20
%p Protected branches are designed to %p Protected branches are designed to
%ul %ul
%li prevent pushes from everybody except #{link_to "masters", help_page_path("permissions", "permissions"), class: "vlink"} %li prevent pushes from everybody except #{link_to "masters", help_page_path("permissions", "permissions"), class: "vlink"}
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
%li= msg %li= msg
- if @service.help.present? - if @service.help.present?
.alert.alert-info .well
= preserve do = preserve do
= markdown @service.help = markdown @service.help
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment