Skip to content

Commit 0b12587

Browse files
authored
chore(merge): 2.21.3 Summer 23 ➡️ Winter 24 (#5217)
2 parents 2f66982 + 313fbe0 commit 0b12587

File tree

6 files changed

+25
-8
lines changed

6 files changed

+25
-8
lines changed

RELEASENOTES.general.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,14 @@
6767
- Updated `delegated_account`
6868
- Updated `entitlement_policy`
6969

70+
## 2.21.3 - June 29, 2023
71+
72+
## Fixed
73+
- Correction in icons package version.
74+
- Updated placeholder text color for Rich Text Editor
75+
- Updated docked utility component's unread notification state icon color
76+
- Updated border colors for Feeds component
77+
7078
## 2.21.2 - June 15, 2023
7179

7280
## Fixed

RELEASENOTES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,14 @@
131131
- Replaced aria-hidden with hidden attribute for components that show/hide content
132132
<!-- ## [VERSION] -->
133133

134+
## Release 2.21.3 - June 29, 2023
135+
136+
## Fixed
137+
- Correction in icons package version.
138+
- Updated placeholder text color for Rich Text Editor
139+
- Updated docked utility component's unread notification state icon color
140+
- Updated border colors for Feeds component
141+
134142
## Release 2.21.2 - June 15, 2023
135143

136144
## Fixed

ui/_config.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
///
1010
/// @type String
1111
/// @access private
12-
$app-version: "2.21.2";
12+
$app-version: "2.21.3";
1313

1414
/// Debug mode (uncomment to activate)
1515
/// Turn on to output deprecation warnings during development

ui/components/docked-utility-bar/base/_index.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,9 @@
4343
*/
4444
.slds-indicator_unread,
4545
.slds-indicator--unread {
46-
background: var(--slds-g-color-neutral-base-100, #{$utility-bar-color-background-notification-badge});
46+
background: var(--slds-g-color-error-base-40, #{$utility-bar-color-background-notification-badge});
4747
top: $spacing-x-small;
48+
border: $border-width-thin solid var(--slds-g-color-neutral-base-95);
4849
}
4950
}
5051

ui/components/feeds/post/_index.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
*/
1111
.slds-feed__item-comments {
1212
background: var(--slds-g-color-neutral-base-95, #{$color-background-post});
13-
border-top: $border-width-thin solid var(--slds-g-color-border-base-4, #{$color-border});
14-
border-bottom: $border-width-thin solid var(--slds-g-color-border-base-4, #{$color-border});
13+
border-top: $border-width-thin solid var(--slds-g-color-border-base-1, #{$color-border});
14+
border-bottom: $border-width-thin solid var(--slds-g-color-border-base-1, #{$color-border});
1515

1616
.slds-comment {
1717
padding: $var-spacing-vertical-x-small $spacing-medium;
@@ -30,7 +30,7 @@
3030
padding: $spacing-small $spacing-medium;
3131

3232
@include mq-medium-max {
33-
border-top: $border-width-thin solid var(--slds-g-color-border-base-4, #{$color-border});
33+
border-top: $border-width-thin solid var(--slds-g-color-border-base-1, #{$color-border});
3434
}
3535

3636
@include mq-large-min {
@@ -90,7 +90,7 @@
9090
order: 1;
9191

9292
@include mq-small-max {
93-
border-top: $border-width-thin solid var(--slds-g-color-border-base-4, #{$color-border});
93+
border-top: $border-width-thin solid var(--slds-g-color-border-base-1, #{$color-border});
9494
margin: 0 ($spacing-small * -1) ($spacing-small * -1);
9595
padding: 0 $spacing-medium;
9696
}
@@ -197,7 +197,7 @@
197197
// class .slds-region--narrow
198198
.slds-post__footer-actions-list {
199199
order: 1;
200-
border-top: $border-width-thin solid var(--slds-g-color-border-base-4, #{$color-border});
200+
border-top: $border-width-thin solid var(--slds-g-color-border-base-1, #{$color-border});
201201
margin: 0 ($spacing-small * -1) ($spacing-small * -1);
202202
padding: 0 $spacing-medium;
203203
}

ui/components/rich-text-editor/base/_index.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@
228228
user-select: text;
229229

230230
&.ql-blank:before {
231-
color: var(--slds-g-color-neutral-base-10, #54698d);
231+
color: var(--slds-g-color-neutral-base-50, #54698d);
232232
content: attr(data-placeholder);
233233
pointer-events: none;
234234
position: absolute;

0 commit comments

Comments
 (0)