Welcome to mirror list, hosted at ThFree Co, Russian Federation.

button_component.html.haml « pajamas « components « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5cf57deb7f1227d283ea0bf177aeaca7d3311e76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
= content_for :pajamas_button_content, flush: true do
  - if @loading
    = gl_loading_icon(inline: true, css_class: 'gl-button-icon gl-button-loading-indicator')
  - if @icon && (!@loading || content)
    = sprite_icon(@icon, css_class: "gl-icon gl-button-icon #{@icon_classes}")
  - if content
    %span.gl-button-text{ class: @button_text_classes }
      = content

- if link?
  = link_to @href, { **@button_options, **base_attributes, class: button_class, target: @target, method: @method } do
    = content_for :pajamas_button_content
- else
  = content_tag 'button', { **@button_options, **base_attributes, class: button_class } do
    = content_for :pajamas_button_content