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

banner_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: 4fa2ed09cd359685e5ad0a653568de1c13180fb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
%section.gl-banner{ @banner_options, class: banner_class }
  - if illustration?
    .gl-banner-illustration
      = illustration
  - elsif @svg_path.present?
    .gl-banner-illustration
      = image_tag @svg_path, alt: ""

  .gl-banner-content
    %h1.gl-banner-title= title

    = content

    - if primary_action?
      = primary_action
    - else
      = link_to @button_text, @button_link, { **@button_options, class: 'btn btn-md btn-confirm gl-button js-close-callout' }

    - actions.each do |action|
      = action

  %button.gl-button.gl-banner-close.btn-sm.btn-icon.js-close{ @close_options, class: close_class, type: 'button' }
    = sprite_icon('close', size: 16, css_class: 'dismiss-icon')