Skip to content

Commit f405631

Browse files
authored
Fixed classification sidebar item selection UI (#25543)
* Fixed classification sidebar item selection UI * minor fix
1 parent 0422260 commit f405631

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

openmetadata-ui/src/main/resources/ui/src/pages/TagsPage/TagsPage.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -705,6 +705,16 @@ const TagsPage = () => {
705705
noWrap
706706
className="self-center m-b-0 tag-category"
707707
data-testid="tag-name"
708+
sx={{
709+
fontWeight:
710+
currentClassification?.name === category.name
711+
? theme.typography.fontWeightBold
712+
: 'inherit',
713+
color:
714+
currentClassification?.name === category.name
715+
? 'primary.main'
716+
: 'inherit',
717+
}}
708718
title={getEntityName(category)}
709719
variant="body2">
710720
{getEntityName(category)}

openmetadata-ui/src/main/resources/ui/src/styles/app.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ a[href].link-text-grey,
346346
}
347347

348348
.activeCategory {
349-
border-left: 2px solid @primary-color;
349+
border-left: 3px solid @primary-color;
350350
background: @primary-1;
351351
padding-left: 10px;
352352
font-weight: 600;

0 commit comments

Comments
 (0)