Skip to content

Commit 6b4eb86

Browse files
authored
tweak style for gateway list item hover (#1184)
* tweak style for gateway list item hover * ns to gw text
1 parent 73f309d commit 6b4eb86

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

src/nextapp/pages/manager/gateways/detail.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ const NamespacesPage: React.FC = () => {
247247
<PopoverArrow bgColor="#373d3f" />
248248
<PopoverBody>
249249
If you need to change the Organization or Business Unit for
250-
your Namespace, submit a request through the{' '}
250+
your Gateway, submit a request through the{' '}
251251
<Link
252252
href={global.helpLinks.helpChangeOrgUrl}
253253
target="_blank"

src/nextapp/pages/manager/gateways/list.tsx

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,15 @@ const MyGatewaysPage: React.FC = () => {
292292
onClick={handleNamespaceChange(namespace)}
293293
cursor="pointer"
294294
transition="background-color 0.2s"
295-
_hover={{ backgroundColor: "#f0f0f0" }}
295+
_hover={{
296+
backgroundColor: "#EDEBE9",
297+
h2: {
298+
color: 'bc-blue',
299+
textDecor: 'underline',
300+
},
301+
302+
cursor: 'pointer',
303+
}}
296304
>
297305
<Box>
298306
<Flex alignItems="center">
@@ -302,15 +310,15 @@ const MyGatewaysPage: React.FC = () => {
302310
mr={4}
303311
boxSize={4}
304312
/>
305-
<Text
313+
<Heading
306314
fontSize="md"
307315
fontWeight="bold"
308-
color="bc-blue"
316+
lineHeight={6}
309317
mr={2}
310318
data-testid={`ns-list-activate-link-${namespace.name}`}
311319
>
312320
{namespace.displayName}
313-
</Text>
321+
</Heading>
314322
</Flex>
315323
<Text fontSize="md" pl="33px">
316324
{namespace.name}

0 commit comments

Comments
 (0)