Skip to content

Commit 21e86e0

Browse files
committedMay 9, 2022
fixes after code reviews
1 parent a12987e commit 21e86e0

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed
 

‎packages/components/addon/components/hds/alert/index.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div class={{this.classNames}} role="alert" ...attributes>
1+
<div class={{this.classNames}} role="alert" aria-live="polite" ...attributes>
22
{{#if this.icon}}
33
<div class="hds-alert__icon">
44
<FlightIcon @name={{this.icon}} @size={{this.iconSize}} @stretched={{true}} @isInlineBlock={{false}} />

‎packages/components/app/styles/components/alert.scss

+5-7
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
}
100100

101101
> * + * {
102-
margin-left: 16px;
102+
margin-left: 8px;
103103
}
104104
}
105105

@@ -182,14 +182,12 @@
182182
border-color: var(--token-color-border-strong); // notice: in the "neutral" color the "inline" has a slightly darker border color compared to the others to increase contrast (eg. could be used on a light gray background)
183183
}
184184

185-
&.hds-alert--type-compact {
186-
// special override by design
187-
.hds-alert__icon {
188-
color: var(--token-color-foreground-faint);
189-
}
185+
// different color by design
186+
.hds-alert__icon {
187+
color: var(--token-color-foreground-faint);
190188
}
191189

192-
.hds-alert__icon, .hds-alert__title {
190+
.hds-alert__title {
193191
color: var(--token-color-foreground-primary);
194192
}
195193
}

‎packages/components/tests/dummy/app/templates/components/alert.hbs

+4-4
Original file line numberDiff line numberDiff line change
@@ -701,29 +701,29 @@
701701
<div class="dummy-alert-sample-grid dummy-alert-sample-grid--wide-content">
702702
<Hds::Alert
703703
@type="inline"
704-
@color="critical"
704+
@color="neutral"
705705
@title="Without the dismiss button (default)"
706706
@description="Lorem ipsum dolor sit amet, consectetur adipiscing elit."
707707
/>
708708
<Hds::Alert
709709
@type="inline"
710-
@color="critical"
710+
@color="neutral"
711711
@title="With the dismiss button"
712712
@description="Lorem ipsum dolor sit amet, consectetur adipiscing elit."
713713
{{! TODO: understand if we can use a generic helper - see https://hashicorp.slack.com/archives/C11JCBJTW/p1648751235987409 }}
714714
@onDismiss={{this.noop}}
715715
/>
716716
<Hds::Alert
717717
@type="inline"
718-
@color="critical"
718+
@color="neutral"
719719
@icon=""
720720
@title="With the dismiss button and no icon"
721721
@description="Lorem ipsum dolor sit amet, consectetur adipiscing elit."
722722
@onDismiss={{this.noop}}
723723
/>
724724
<Hds::Alert
725725
@type="inline"
726-
@color="critical"
726+
@color="neutral"
727727
@description="With the dismiss button and no title"
728728
@onDismiss={{this.noop}}
729729
/>

0 commit comments

Comments
 (0)
Failed to load comments.