Skip to content

Commit 9c9d4ac

Browse files
committed
refactor:resolved the bug [CMG-697]:UI overlapping issue
1 parent dfd52cc commit 9c9d4ac

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

ui/src/components/AdvancePropertise/index.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,11 @@
105105
position: relative;
106106
z-index: 10000;
107107
}
108-
.Select__control--menu-is-open {
109-
position: relative;
110-
border: 2px solid red;
111-
z-index: 10000;
112-
}
108+
// .Select__control--menu-is-open {
109+
// position: relative;
110+
// border: 2px solid red;
111+
// z-index: 10000;
112+
// }
113113
}
114114
.Radio-class {
115115
display: flex;

ui/src/components/ContentMapper/index.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,4 +317,8 @@ div .table-row {
317317
.filterButton-color{
318318
color: $color-brand-primary-base;
319319
font-weight: $font-weight-bold;
320+
}
321+
.icon-padding{
322+
padding: 10px 10px;
323+
margin-left: 6px;
320324
}

ui/src/components/ContentMapper/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2470,17 +2470,17 @@ const ContentMapper = forwardRef(({ handleStepChange }: contentMapperProps, ref:
24702470
/>
24712471
</div>
24722472

2473-
<Tooltip content={'Fetch content types from destination stack'} position="left">
2474-
<Button buttonType="light" icon={onlyIcon ? "v2-FetchTemplate" : ''}
2473+
<Tooltip content={'Fetch content types from destination stack'} position="top">
2474+
<Button className='icon-padding' buttonType="light" icon={onlyIcon ? "v2-FetchTemplate" : ''}
24752475
version="v2" onlyIcon={true} onlyIconHoverColor={'primary'}
24762476
size='small' onClick={handleFetchContentType}>
24772477
</Button>
24782478
</Tooltip>
24792479
</>
24802480
)}
24812481

2482-
<Tooltip content={'Reset to system mapping'} position="left">
2483-
<Button buttonType="light" icon={onlyIcon ? "v2-ResetReverse" : ''}
2482+
<Tooltip content={'Reset to system mapping'} position="top">
2483+
<Button className='icon-padding' buttonType="light" icon={onlyIcon ? "v2-ResetReverse" : ''}
24842484
version="v2" onlyIcon={true} onlyIconHoverColor={'primary'}
24852485
size='small' onClick={handleResetContentType}></Button>
24862486
</Tooltip>

0 commit comments

Comments
 (0)