Skip to content

Commit

Permalink
CB-5819 remove extra styles
Browse files Browse the repository at this point in the history
  • Loading branch information
devnaumov committed Oct 27, 2024
1 parent dc8e7e7 commit 1122c96
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,10 @@
* Licensed under the Apache License, Version 2.0.
* you may not use this file except in compliance with the License.
*/
.expand {
cursor: pointer;
}

.gap {
gap: 16px;
}

.overflow {
overflow: auto !important;
}

.name {
cursor: pointer;
}
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ export const User = observer<Props>(function User({ user, displayAuthRole, selec
<TableItemSelect />
</TableColumnValue>
)}
<TableColumnValue className={style['name']} title={user.userId} expand ellipsis onClick={() => usersTableOptionsPanelService.open(user.userId)}>
<TableColumnValue title={user.userId} ellipsis onClick={() => usersTableOptionsPanelService.open(user.userId)}>
<Link>{user.userId}</Link>
</TableColumnValue>
{displayAuthRole && (
<TableColumnValue className={style['expand']} title={user.authRole} expand ellipsis>
<TableColumnValue title={user.authRole} ellipsis>
{user.authRole}
</TableColumnValue>
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import {
ConfirmationDialog,
GroupTitle,
Loader,
s,
type TableItemExpandProps,
useExecutor,
useTranslate,
Expand Down

0 comments on commit 1122c96

Please sign in to comment.