aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/quality-profiles/details
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/apps/quality-profiles/details')
-rw-r--r--server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileHeader.tsx8
-rw-r--r--server/sonar-web/src/main/js/apps/quality-profiles/details/ProfilePermissionsGroup.tsx2
-rw-r--r--server/sonar-web/src/main/js/apps/quality-profiles/details/ProfilePermissionsUser.tsx2
3 files changed, 5 insertions, 7 deletions
diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileHeader.tsx b/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileHeader.tsx
index c34c384bb7f..849368e199b 100644
--- a/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileHeader.tsx
+++ b/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileHeader.tsx
@@ -80,17 +80,15 @@ export default function ProfileHeader(props: Props) {
>
<div className="sw-flex sw-items-center sw-gap-3 sw-self-start">
{!isProfileComparePath(location.pathname) && (
- <PageContentFontWrapper className="sw-body-sm sw-flex sw-gap-3">
+ <PageContentFontWrapper className="sw-typo-default sw-flex sw-gap-3">
<div>
- <strong className="sw-body-sm-highlight">
+ <strong className="sw-typo-semibold">
{translate('quality_profiles.updated_')}
</strong>{' '}
<DateFromNow date={profile.rulesUpdatedAt} />
</div>
<div>
- <strong className="sw-body-sm-highlight">
- {translate('quality_profiles.used_')}
- </strong>{' '}
+ <strong className="sw-typo-semibold">{translate('quality_profiles.used_')}</strong>{' '}
<DateFromNow date={profile.lastUsed} />
</div>
diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfilePermissionsGroup.tsx b/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfilePermissionsGroup.tsx
index 91715485d45..48edea8a0e5 100644
--- a/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfilePermissionsGroup.tsx
+++ b/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfilePermissionsGroup.tsx
@@ -61,7 +61,7 @@ export default function ProfilePermissionsGroup(props: Readonly<Props>) {
name={group.name}
size="xs"
/>
- <strong className="sw-body-sm-highlight sw-truncate fs-mask">{group.name}</strong>
+ <strong className="sw-typo-semibold sw-truncate fs-mask">{group.name}</strong>
</div>
<DestructiveIcon
Icon={TrashIcon}
diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfilePermissionsUser.tsx b/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfilePermissionsUser.tsx
index 2f2c2e7e849..ebcfe1e2999 100644
--- a/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfilePermissionsUser.tsx
+++ b/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfilePermissionsUser.tsx
@@ -62,7 +62,7 @@ export default function ProfilePermissionsGroup(props: Readonly<Props>) {
size="xs"
/>
<div className="sw-truncate fs-mask">
- <strong className="sw-body-sm-highlight">{user.name}</strong>
+ <strong className="sw-typo-semibold">{user.name}</strong>
<Note className="sw-block">{user.login}</Note>
</div>
</div>