Merge branch 'align-form-labels' into 'master'
Align form labels following Bootstrap 4 docs See merge request gitlab-org/gitlab-ce!21752
This commit is contained in:
commit
00bb83f7fc
7 changed files with 14 additions and 10 deletions
|
@ -93,7 +93,6 @@ hr {
|
|||
}
|
||||
|
||||
.form-group.row .col-form-label {
|
||||
padding-top: 0;
|
||||
// Bootstrap 4 aligns labels to the left
|
||||
// for horizontal forms
|
||||
@include media-breakpoint-up(md) {
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
%legend
|
||||
Navigation bar:
|
||||
.form-group.row
|
||||
= f.label :header_logo, 'Header logo', class: 'col-sm-2 col-form-label'
|
||||
= f.label :header_logo, 'Header logo', class: 'col-sm-2 col-form-label pt-0'
|
||||
.col-sm-10
|
||||
- if @appearance.header_logo?
|
||||
= image_tag @appearance.header_logo_url, class: 'appearance-light-logo-preview'
|
||||
|
@ -22,7 +22,7 @@
|
|||
%legend
|
||||
Favicon:
|
||||
.form-group.row
|
||||
= f.label :favicon, 'Favicon', class: 'col-sm-2 col-form-label'
|
||||
= f.label :favicon, 'Favicon', class: 'col-sm-2 col-form-label pt-0'
|
||||
.col-sm-10
|
||||
- if @appearance.favicon?
|
||||
= image_tag @appearance.favicon_url, class: 'appearance-light-logo-preview'
|
||||
|
@ -51,7 +51,7 @@
|
|||
.hint
|
||||
Description parsed with #{link_to "GitLab Flavored Markdown", help_page_path('user/markdown'), target: '_blank'}.
|
||||
.form-group.row
|
||||
= f.label :logo, class: 'col-sm-2 col-form-label'
|
||||
= f.label :logo, class: 'col-sm-2 col-form-label pt-0'
|
||||
.col-sm-10
|
||||
- if @appearance.logo?
|
||||
= image_tag @appearance.logo_url, class: 'appearance-logo-preview'
|
||||
|
|
|
@ -21,14 +21,14 @@
|
|||
for local tests
|
||||
|
||||
= content_tag :div, class: 'form-group row' do
|
||||
= f.label :trusted, class: 'col-sm-2 col-form-label'
|
||||
= f.label :trusted, class: 'col-sm-2 col-form-label pt-0'
|
||||
.col-sm-10
|
||||
= f.check_box :trusted
|
||||
%span.form-text.text-muted
|
||||
Trusted applications are automatically authorized on GitLab OAuth flow.
|
||||
|
||||
.form-group.row
|
||||
= f.label :scopes, class: 'col-sm-2 col-form-label'
|
||||
= f.label :scopes, class: 'col-sm-2 col-form-label pt-0'
|
||||
.col-sm-10
|
||||
= render 'shared/tokens/scopes_form', prefix: 'doorkeeper_application', token: application, scopes: @scopes
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.form-group.row
|
||||
= f.label :lfs_enabled, 'Large File Storage', class: 'col-form-label col-sm-2'
|
||||
= f.label :lfs_enabled, 'Large File Storage', class: 'col-form-label col-sm-2 pt-0'
|
||||
.col-sm-10
|
||||
.form-check
|
||||
= f.check_box :lfs_enabled, checked: @group.lfs_enabled?, class: 'form-check-input'
|
||||
|
@ -11,7 +11,7 @@
|
|||
%span.descr This setting can be overridden in each project.
|
||||
|
||||
.form-group.row
|
||||
= f.label :require_two_factor_authentication, 'Two-factor authentication', class: 'col-form-label col-sm-2'
|
||||
= f.label :require_two_factor_authentication, 'Two-factor authentication', class: 'col-form-label col-sm-2 pt-0'
|
||||
.col-sm-10
|
||||
.form-check
|
||||
= f.check_box :require_two_factor_authentication, class: 'form-check-input'
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
= render 'shared/allow_request_access', form: f
|
||||
|
||||
.form-group.row
|
||||
%label.col-form-label.col-sm-2
|
||||
%label.col-form-label.col-sm-2.pt-0
|
||||
= s_('GroupSettings|Share with group lock')
|
||||
.col-sm-10
|
||||
.form-check
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
.form-group.row.visibility-level-setting
|
||||
- if with_label
|
||||
= f.label :visibility_level, class: 'col-form-label col-sm-2' do
|
||||
= f.label :visibility_level, class: 'col-form-label col-sm-2 pt-0' do
|
||||
Visibility Level
|
||||
= link_to icon('question-circle'), help_page_path("public_access/public_access")
|
||||
%div{ :class => (with_label ? "col-sm-10" : "col-sm-12") }
|
||||
|
|
5
changelogs/unreleased/align-form-labels.yml
Normal file
5
changelogs/unreleased/align-form-labels.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Align form labels following Bootstrap 4 docs
|
||||
merge_request: 21752
|
||||
author:
|
||||
type: fixed
|
Loading…
Reference in a new issue