Commit 175d0cd7 authored by Andrew Fontaine's avatar Andrew Fontaine

Merge branch 'nicolasdular/fix-bm-close-icon' into 'master'

Fix broadcast notification icon appearance

See merge request gitlab-org/gitlab!46804
parents 81564f14 e3212279
...@@ -15,10 +15,6 @@ ...@@ -15,10 +15,6 @@
.broadcast-banner-message { .broadcast-banner-message {
text-align: center; text-align: center;
.broadcast-message-dismiss {
color: inherit;
}
} }
.broadcast-notification-message { .broadcast-notification-message {
...@@ -36,10 +32,6 @@ ...@@ -36,10 +32,6 @@
&.preview { &.preview {
position: static; position: static;
} }
.broadcast-message-dismiss {
color: $gray-700;
}
} }
.toggle-colors { .toggle-colors {
......
...@@ -8,5 +8,5 @@ ...@@ -8,5 +8,5 @@
= render_broadcast_message(message) = render_broadcast_message(message)
.gl-flex-grow-1.gl-flex-basis-0.gl-text-right .gl-flex-grow-1.gl-flex-basis-0.gl-text-right
- if (message.notification? || message.dismissable?) && opts[:preview].blank? - if (message.notification? || message.dismissable?) && opts[:preview].blank?
%button.broadcast-message-dismiss.js-dismiss-current-broadcast-notification.btn.btn-link.gl-button{ 'aria-label' => _('Close'), :type => 'button', data: { id: message.id, expire_date: message.ends_at.iso8601 } } %button.js-dismiss-current-broadcast-notification.btn.btn-link.gl-button{ 'aria-label' => _('Close'), :type => 'button', data: { id: message.id, expire_date: message.ends_at.iso8601 } }
= sprite_icon('close', size: 16, css_class: 'gl-icon gl-text-white gl-mx-3!') = sprite_icon('close', size: 16, css_class: "gl-icon gl-mx-3! #{is_banner ? 'gl-text-white' : 'gl-text-gray-700'}")
---
title: Fix broadcast notification close icon appearance
merge_request: 46804
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment