From eab18d92e30cb68c298430ea96b3dd449d87b425 Mon Sep 17 00:00:00 2001 From: forstisabella <92472883+forstisabella@users.noreply.github.com> Date: Mon, 30 Jun 2025 10:23:26 -0400 Subject: [PATCH 1/2] font weight 500 --- src/_sass/components/_accordion.scss | 4 ++-- src/_sass/components/_button.scss | 2 +- src/_sass/components/_code-example.scss | 2 +- src/_sass/components/_destination-menu.scss | 2 +- src/_sass/components/_list-steps.scss | 2 +- src/_sass/components/_markdown.scss | 8 ++++---- src/_sass/components/_mobile-menu-side.scss | 2 +- src/_sass/components/_quickinfo.scss | 4 ++-- src/_sass/components/_thumbnail-integration.scss | 2 +- src/_sass/components/_widget.scss | 2 +- src/_sass/generics/_typography.scss | 2 +- src/_sass/vendors/_premonition.scss | 2 +- 12 files changed, 17 insertions(+), 17 deletions(-) diff --git a/src/_sass/components/_accordion.scss b/src/_sass/components/_accordion.scss index 67dc317578..bba537b688 100644 --- a/src/_sass/components/_accordion.scss +++ b/src/_sass/components/_accordion.scss @@ -13,7 +13,7 @@ &__heading { padding-right: 20px; font-size: 16px; - font-weight: 600; + font-weight: 500; color: color(gray-800); line-height: 1.71; position: relative; @@ -38,7 +38,7 @@ display: inline-block; margin-top: 7px; font-size: 14px; - font-weight: 600; + font-weight: 500; text-decoration: underline; } diff --git a/src/_sass/components/_button.scss b/src/_sass/components/_button.scss index f3a0532daa..2303116ed6 100644 --- a/src/_sass/components/_button.scss +++ b/src/_sass/components/_button.scss @@ -1,6 +1,6 @@ .button { font-size: 12px; - font-weight: 600; + font-weight: 500; line-height: 1.5; text-align: center; padding: 8px 12px; diff --git a/src/_sass/components/_code-example.scss b/src/_sass/components/_code-example.scss index 3d1a1344eb..dba324aaf7 100644 --- a/src/_sass/components/_code-example.scss +++ b/src/_sass/components/_code-example.scss @@ -26,7 +26,7 @@ color: color(gray-700); font-size: 12px; line-height: 16px; - font-weight: 600; + font-weight: 500; &:hover { color: color(primary); diff --git a/src/_sass/components/_destination-menu.scss b/src/_sass/components/_destination-menu.scss index 8e48146169..f5544f8186 100644 --- a/src/_sass/components/_destination-menu.scss +++ b/src/_sass/components/_destination-menu.scss @@ -1,6 +1,6 @@ .destination-menu { &__title { - font-weight: 600; + font-weight: 500; padding-bottom: 10px; font-size: 14px; } diff --git a/src/_sass/components/_list-steps.scss b/src/_sass/components/_list-steps.scss index f7f0ce69f5..71bf71d497 100644 --- a/src/_sass/components/_list-steps.scss +++ b/src/_sass/components/_list-steps.scss @@ -9,7 +9,7 @@ height: 40px; border-radius: 50%; background-color: color(primary-lighter); - font-weight: 600; + font-weight: 500; color: color(primary); } diff --git a/src/_sass/components/_markdown.scss b/src/_sass/components/_markdown.scss index 6a3e144465..8dd7e9e16c 100644 --- a/src/_sass/components/_markdown.scss +++ b/src/_sass/components/_markdown.scss @@ -183,7 +183,7 @@ &::before { content: counter(list-items) ". "; color: color(primary); - font-weight: 600; + font-weight: 500; transform: translate(-23px, 0); } } @@ -227,7 +227,7 @@ th { color: color(gray-700); - font-weight: 600; + font-weight: 500; padding: 12px; @include breakpoint(medium up) { @@ -240,7 +240,7 @@ } th > code { color: #696f8c; - font-weight: 600; + font-weight: 500; font-size: 10px; background-color: inherit; } @@ -392,7 +392,7 @@ tr.show { padding: 0px 6px; border-radius: 4px; height: 16px; - font-weight: 600; + font-weight: 500; text-transform: uppercase; color: rgb(71, 77, 102); opacity: 0.65; diff --git a/src/_sass/components/_mobile-menu-side.scss b/src/_sass/components/_mobile-menu-side.scss index 7c02248795..4e80a8d787 100644 --- a/src/_sass/components/_mobile-menu-side.scss +++ b/src/_sass/components/_mobile-menu-side.scss @@ -14,7 +14,7 @@ } &__title { - font-weight: 600; + font-weight: 500; } &__list { diff --git a/src/_sass/components/_quickinfo.scss b/src/_sass/components/_quickinfo.scss index 3fe4e5a579..bc3db22f35 100644 --- a/src/_sass/components/_quickinfo.scss +++ b/src/_sass/components/_quickinfo.scss @@ -14,7 +14,7 @@ background-color:#E7E4F9; color: #6E62B6; text-transform: uppercase; - font-weight: 600; + font-weight: 500; padding: 0px 6px; border-radius: 4px @@ -35,7 +35,7 @@ margin-top: 12px; th { font-size: 14px; - font-weight: 600; + font-weight: 500; padding: 5px 13px; background-color: #F4F6FA; text-transform: none; diff --git a/src/_sass/components/_thumbnail-integration.scss b/src/_sass/components/_thumbnail-integration.scss index ee08180946..c2e1c05639 100644 --- a/src/_sass/components/_thumbnail-integration.scss +++ b/src/_sass/components/_thumbnail-integration.scss @@ -56,7 +56,7 @@ border-radius: 4px; font-size: 11px; line-height: 16px; - font-weight: 600; + font-weight: 500; text-transform: uppercase; letter-spacing: 0.2px; color: #6E62B6; diff --git a/src/_sass/components/_widget.scss b/src/_sass/components/_widget.scss index 88733076cf..f91417834c 100644 --- a/src/_sass/components/_widget.scss +++ b/src/_sass/components/_widget.scss @@ -12,7 +12,7 @@ a { text-decoration: underline; - font-weight: 600; + font-weight: 500; } } diff --git a/src/_sass/generics/_typography.scss b/src/_sass/generics/_typography.scss index d881e09ddb..f81c3fe816 100644 --- a/src/_sass/generics/_typography.scss +++ b/src/_sass/generics/_typography.scss @@ -19,5 +19,5 @@ samp { } strong { - font-weight: 600; + font-weight: 500; } diff --git a/src/_sass/vendors/_premonition.scss b/src/_sass/vendors/_premonition.scss index 7a99092854..da9fdb883c 100644 --- a/src/_sass/vendors/_premonition.scss +++ b/src/_sass/vendors/_premonition.scss @@ -94,7 +94,7 @@ .header { font-size: 14px; - font-weight: 600; + font-weight: 500; line-height: 24px; } From 782600a9f497f5ddae426a97259c3fb355ad1a16 Mon Sep 17 00:00:00 2001 From: forstisabella <92472883+forstisabella@users.noreply.github.com> Date: Mon, 30 Jun 2025 10:28:49 -0400 Subject: [PATCH 2/2] [netlify-build] --- src/privacy/consent-management/consent-in-retl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/privacy/consent-management/consent-in-retl.md b/src/privacy/consent-management/consent-in-retl.md index 2a9240ea1b..6212dc02b7 100644 --- a/src/privacy/consent-management/consent-in-retl.md +++ b/src/privacy/consent-management/consent-in-retl.md @@ -146,4 +146,4 @@ Open the [Profile Explorer](/docs/unify/#profile-explorer) and verify that your ### Reverse ETL Actions destinations Segment automatically filters out data from users who have not consented to the category mapped to your destination. -To verify that this behavior is working as intended, open [Delivery Overview](/docs/connections/delivery-overview) for a Reverse ETL-supported Actions destination and view the events that were successfully delivered to the destination. The events in your destination should only come from users that consented to send data to the category that your supported Actions destination belongs to. \ No newline at end of file +To verify that this behavior is working as intended, open [Delivery Overview](/docs/connections/delivery-overview) for a Reverse ETL-supported Actions destination and view the events that were successfully delivered to the destination. The events in your destination should only come from users that consented to send data to the category that your supported Actions destination belongs to.