debian-mirror-gitlab/app/components/pajamas/alert_component.html.haml

20 lines
623 B
Text
Raw Normal View History

2022-07-16 23:28:13 +05:30
.gl-alert{ role: 'alert', class: [base_class, @alert_class], data: @alert_data }
- if @show_icon
= sprite_icon(icon, css_class: icon_classes)
2022-06-21 17:19:12 +05:30
- if @dismissible
%button.btn.gl-dismiss-btn.btn-default.btn-sm.gl-button.btn-default-tertiary.btn-icon.js-close{ type: 'button',
aria: { label: _('Dismiss') },
class: @close_button_class,
data: @close_button_data }
= sprite_icon('close')
.gl-alert-content{ role: 'alert' }
- if @title
%h4.gl-alert-title
= @title
2022-07-16 23:28:13 +05:30
- if body?
.gl-alert-body
= body
- if actions?
.gl-alert-actions
= actions