removed tab indexes from tag form
This commit is contained in:
parent
d673628de0
commit
5d4693cbe7
2 changed files with 8 additions and 3 deletions
|
@ -14,7 +14,7 @@
|
||||||
.form-group
|
.form-group
|
||||||
= label_tag :tag_name, nil, class: 'control-label'
|
= label_tag :tag_name, nil, class: 'control-label'
|
||||||
.col-sm-10
|
.col-sm-10
|
||||||
= text_field_tag :tag_name, params[:tag_name], required: true, tabindex: 1, autofocus: true, class: 'form-control'
|
= text_field_tag :tag_name, params[:tag_name], required: true, autofocus: true, class: 'form-control'
|
||||||
.form-group
|
.form-group
|
||||||
= label_tag :ref, 'Create from', class: 'control-label'
|
= label_tag :ref, 'Create from', class: 'control-label'
|
||||||
.col-sm-10.create-from
|
.col-sm-10.create-from
|
||||||
|
@ -28,7 +28,7 @@
|
||||||
.form-group
|
.form-group
|
||||||
= label_tag :message, nil, class: 'control-label'
|
= label_tag :message, nil, class: 'control-label'
|
||||||
.col-sm-10
|
.col-sm-10
|
||||||
= text_area_tag :message, @message, required: false, tabindex: 3, class: 'form-control', rows: 5
|
= text_area_tag :message, @message, required: false, class: 'form-control', rows: 5
|
||||||
.help-block
|
.help-block
|
||||||
= s_('TagsPage|Optionally, add a message to the tag.')
|
= s_('TagsPage|Optionally, add a message to the tag.')
|
||||||
%hr
|
%hr
|
||||||
|
@ -41,6 +41,6 @@
|
||||||
.help-block
|
.help-block
|
||||||
= s_('TagsPage|Optionally, add release notes to the tag. They will be stored in the GitLab database and displayed on the tags page.')
|
= s_('TagsPage|Optionally, add release notes to the tag. They will be stored in the GitLab database and displayed on the tags page.')
|
||||||
.form-actions
|
.form-actions
|
||||||
= button_tag s_('TagsPage|Create tag'), class: 'btn btn-create', tabindex: 3
|
= button_tag s_('TagsPage|Create tag'), class: 'btn btn-create'
|
||||||
= link_to s_('TagsPage|Cancel'), project_tags_path(@project), class: 'btn btn-cancel'
|
= link_to s_('TagsPage|Cancel'), project_tags_path(@project), class: 'btn btn-cancel'
|
||||||
%script#availableRefs{ type: "application/json" }= @project.repository.ref_names.to_json.html_safe
|
%script#availableRefs{ type: "application/json" }= @project.repository.ref_names.to_json.html_safe
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: removed tabindexes from tag form
|
||||||
|
merge_request:
|
||||||
|
author: Marcus Amargi
|
||||||
|
type: changed
|
Loading…
Reference in a new issue