Replaces CSS with BS4 utility class
This commit is contained in:
parent
7457c1e122
commit
73e6db84bd
3 changed files with 9 additions and 9 deletions
|
@ -1,9 +1,4 @@
|
||||||
.js-pipeline-schedule-form {
|
.pipeline-schedule-form {
|
||||||
.dropdown-select,
|
|
||||||
.dropdown-menu-toggle {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gl-field-error {
|
.gl-field-error {
|
||||||
margin: 10px 0 0;
|
margin: 10px 0 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
= form_for [@project.namespace.becomes(Namespace), @project, @schedule], as: :schedule, html: { id: "new-pipeline-schedule-form", class: "js-pipeline-schedule-form" } do |f|
|
= form_for [@project.namespace.becomes(Namespace), @project, @schedule], as: :schedule, html: { id: "new-pipeline-schedule-form", class: "js-pipeline-schedule-form pipeline-schedule-form" } do |f|
|
||||||
= form_errors(@schedule)
|
= form_errors(@schedule)
|
||||||
.form-group.row
|
.form-group.row
|
||||||
.col-md-9
|
.col-md-9
|
||||||
|
@ -11,12 +11,12 @@
|
||||||
.form-group.row
|
.form-group.row
|
||||||
.col-md-9
|
.col-md-9
|
||||||
= f.label :cron_timezone, _('Cron Timezone'), class: 'label-bold'
|
= f.label :cron_timezone, _('Cron Timezone'), class: 'label-bold'
|
||||||
= dropdown_tag(_("Select a timezone"), options: { toggle_class: 'btn js-timezone-dropdown', title: _("Select a timezone"), filter: true, placeholder: s_("OfSearchInADropdown|Filter"), data: { data: timezone_data } } )
|
= dropdown_tag(_("Select a timezone"), options: { toggle_class: 'btn js-timezone-dropdown w-100', dropdown_class: 'w-100', title: _("Select a timezone"), filter: true, placeholder: s_("OfSearchInADropdown|Filter"), data: { data: timezone_data } } )
|
||||||
= f.text_field :cron_timezone, value: @schedule.cron_timezone, id: 'schedule_cron_timezone', class: 'hidden', name: 'schedule[cron_timezone]', required: true
|
= f.text_field :cron_timezone, value: @schedule.cron_timezone, id: 'schedule_cron_timezone', class: 'hidden', name: 'schedule[cron_timezone]', required: true
|
||||||
.form-group.row
|
.form-group.row
|
||||||
.col-md-9
|
.col-md-9
|
||||||
= f.label :ref, _('Target Branch'), class: 'label-bold'
|
= f.label :ref, _('Target Branch'), class: 'label-bold'
|
||||||
= dropdown_tag(_("Select target branch"), options: { toggle_class: 'btn js-target-branch-dropdown', dropdown_class: 'git-revision-dropdown', title: _("Select target branch"), filter: true, placeholder: s_("OfSearchInADropdown|Filter"), data: { data: @project.repository.branch_names, default_branch: @project.default_branch } } )
|
= dropdown_tag(_("Select target branch"), options: { toggle_class: 'btn js-target-branch-dropdown w-100', dropdown_class: 'git-revision-dropdown w-100', title: _("Select target branch"), filter: true, placeholder: s_("OfSearchInADropdown|Filter"), data: { data: @project.repository.branch_names, default_branch: @project.default_branch } } )
|
||||||
= f.text_field :ref, value: @schedule.ref, id: 'schedule_ref', class: 'hidden', name: 'schedule[ref]', required: true
|
= f.text_field :ref, value: @schedule.ref, id: 'schedule_ref', class: 'hidden', name: 'schedule[ref]', required: true
|
||||||
.form-group.row.js-ci-variable-list-section
|
.form-group.row.js-ci-variable-list-section
|
||||||
.col-md-9
|
.col-md-9
|
||||||
|
|
5
changelogs/unreleased/59921-pipeline-schedule.yml
Normal file
5
changelogs/unreleased/59921-pipeline-schedule.yml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Replaces CSS with BS4 utility class for pipeline schedules
|
||||||
|
merge_request:
|
||||||
|
author:
|
||||||
|
type: other
|
Loading…
Reference in a new issue