#369: Change color of buttons
This commit is contained in:
parent
fcbe5f84a1
commit
5037e6782b
|
@ -3,11 +3,9 @@
|
|||
.col-md-6
|
||||
= f.input :name, label: false
|
||||
.col-md-6
|
||||
= f.button :submit, t('layout.search.header')
|
||||
|
|
||||
= t('layout.or')
|
||||
|
|
||||
a href=platform_maintainers_path(@platform)
|
||||
=> f.button :submit, t('layout.search.header')
|
||||
=> t('layout.or')
|
||||
a.btn.btn-default href=platform_maintainers_path(@platform)
|
||||
= t('layout.clear')
|
||||
|
||||
|
||||
|
|
|
@ -60,5 +60,6 @@
|
|||
|
||||
.col-sm-offset-3.col-sm-9
|
||||
=> f.button :submit, t('layout.save')
|
||||
a.btn.btn-primary href=(@platform.new_record? ? root_path : platform_path(@platform))
|
||||
=> t('layout.or')
|
||||
a.btn.btn-default href=(@platform.new_record? ? root_path : platform_path(@platform))
|
||||
= t('layout.cancel')
|
||||
|
|
|
@ -10,9 +10,8 @@
|
|||
= f.input :description, as: :text
|
||||
|
||||
.button_block
|
||||
button type="submit" class="btn btn-default" data-disable-with=t('layout.processing')
|
||||
button type="submit" class="btn btn-primary" data-disable-with=t('layout.processing')
|
||||
= t('layout.clone')
|
||||
|
|
||||
= t('layout.or')
|
||||
|
|
||||
= link_to t('layout.cancel'), platform_path(@platform)
|
||||
=<> t('layout.or')
|
||||
a.btn.btn-default href=platform_path(@platform)
|
||||
= t('layout.cancel')
|
||||
|
|
|
@ -35,10 +35,8 @@
|
|||
|
||||
= f.input :autostart_status, collection: Product::AUTOSTART_STATUSES.collect{|status| [Product.human_autostart_status(status), status]}
|
||||
|
||||
= f.button :submit, t('layout.save')
|
||||
|
|
||||
= t('layout.or')
|
||||
|
|
||||
a href=( @product.new_record? ? platform_path(@platform) : platform_product_path(@platform, @product) )
|
||||
=> f.button :submit, t('layout.save')
|
||||
=> t('layout.or')
|
||||
a.btn.btn-default href=( @product.new_record? ? platform_path(@platform) : platform_product_path(@platform, @product) )
|
||||
= t('layout.cancel')
|
||||
|
||||
|
|
|
@ -7,9 +7,7 @@
|
|||
- if @platform.main?
|
||||
= f.input :publish_builds_only_from_branch
|
||||
|
||||
= f.button :submit, t('layout.save')
|
||||
|
|
||||
= t('layout.or')
|
||||
|
|
||||
a href=(@repository.new_record? ? platform_repositories_path(@platform) : platform_repository_path(@platform, @repository))
|
||||
=> f.button :submit, t('layout.save')
|
||||
=> t('layout.or')
|
||||
a.btn.btn-default href=(@repository.new_record? ? platform_repositories_path(@platform) : platform_repository_path(@platform, @repository))
|
||||
= t('layout.cancel')
|
||||
|
|
|
@ -7,4 +7,4 @@
|
|||
.row
|
||||
= simple_form_for :repository, url: remove_project_platform_repository_path(@platform, @repository), html: { method: :delete } do |f|
|
||||
= f.input :projects_list, as: :text
|
||||
= f.button :submit, t('layout.delete')
|
||||
= f.button :submit, t('layout.delete'), class: 'btn-danger'
|
||||
|
|
|
@ -73,13 +73,13 @@
|
|||
%button.btn.btn-default{ type: 'button', disabled: true }
|
||||
= t('layout.processing')
|
||||
.btn-group{ 'ng-hide' => 'isRequest' }
|
||||
%button.btn.btn-default{ type: 'button', 'ng-click' => 'refresh(true)' }
|
||||
%button.btn.btn-primary{ type: 'button', 'ng-click' => 'refresh(true)' }
|
||||
= t('layout.search.header')
|
||||
.btn-group
|
||||
%button.btn.btn-default{ type: 'button', 'ng-click' => 'clear()' }= t('reset')
|
||||
%button.btn.btn-primary{ type: 'button', 'ng-click' => 'clear()' }= t('reset')
|
||||
-if @project and can?(:create, @project.build_lists.build)
|
||||
.btn-group
|
||||
%button.btn.btn-default{ id: 'filter_new_build', type: 'button',
|
||||
%button.btn.btn-primary{ id: 'filter_new_build', type: 'button',
|
||||
onclick: "location.href='#{new_project_build_list_path(@project)}'" }
|
||||
= t('layout.build_lists.new_header')
|
||||
= hidden_field_tag :name_with_owner, @project.try(:name_with_owner)
|
||||
|
|
|
@ -35,7 +35,7 @@ h4
|
|||
typeahead = "extra.label for extra in #{ctrl_as}get#{field}($viewValue)"
|
||||
typeahead-on-select = "#{ctrl_as}select#{func_name}($item, $model, $label)" ]
|
||||
.col-md-4
|
||||
button[ class='btn btn-default' type='button'
|
||||
button[ class='btn btn-primary' type='button'
|
||||
ng-click="#{ctrl_as}add#{func_name}()" ]
|
||||
= t('layout.add')
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
.col-md-5
|
||||
=> f.button :submit, t('.search')
|
||||
=> t('.or')
|
||||
= link_to t('.clear'), subject
|
||||
= link_to t('.clear'), subject, class: 'btn btn-default'
|
||||
hr
|
||||
|
||||
table.table.table-striped ng-show='!processing'
|
||||
|
|
Loading…
Reference in New Issue