@@ -325,7 +325,7 @@ const KeyList = forwardRef((props: Props, ref) => {
325
325
{
326
326
id : 'nameString' ,
327
327
label : 'Key' ,
328
- minWidth : 100 ,
328
+ minWidth : 94 ,
329
329
truncateText : true ,
330
330
render : ( cellData : string ) => {
331
331
if ( isUndefined ( cellData ) ) {
@@ -372,7 +372,7 @@ const KeyList = forwardRef((props: Props, ref) => {
372
372
if ( cellData === - 1 ) {
373
373
return (
374
374
< EuiTextColor
375
- className = { cx ( 'hideOnHover ' , { hide : deletePopoverIndex === rowIndex } ) }
375
+ className = { cx ( 'moveOnHover ' , { hide : deletePopoverIndex === rowIndex } ) }
376
376
color = "subdued"
377
377
data-testid = { `ttl-${ name } ` }
378
378
>
@@ -382,7 +382,7 @@ const KeyList = forwardRef((props: Props, ref) => {
382
382
}
383
383
return (
384
384
< EuiText
385
- className = { cx ( 'hideOnHover ' , { hide : deletePopoverIndex === rowIndex } ) }
385
+ className = { cx ( 'moveOnHover ' , { hide : deletePopoverIndex === rowIndex } ) }
386
386
color = "subdued"
387
387
size = "s"
388
388
style = { { maxWidth : '100%' } }
@@ -411,8 +411,8 @@ const KeyList = forwardRef((props: Props, ref) => {
411
411
{
412
412
id : 'size' ,
413
413
label : 'Size' ,
414
- absoluteWidth : 84 ,
415
- minWidth : 84 ,
414
+ absoluteWidth : 90 ,
415
+ minWidth : 90 ,
416
416
alignment : TableCellAlignment . Right ,
417
417
textAlignment : TableCellTextAlignment . Right ,
418
418
render : (
@@ -437,7 +437,7 @@ const KeyList = forwardRef((props: Props, ref) => {
437
437
< EuiText
438
438
color = "subdued"
439
439
size = "s"
440
- className = { cx ( 'hideOnHover ' , { hide : deletePopoverIndex === rowIndex } ) }
440
+ className = { cx ( 'moveOnHover ' , { hide : deletePopoverIndex === rowIndex } ) }
441
441
style = { { maxWidth : '100%' } }
442
442
>
443
443
< div style = { { display : 'flex' } } className = "truncateText" data-testid = { `size-${ name } ` } >
@@ -457,7 +457,7 @@ const KeyList = forwardRef((props: Props, ref) => {
457
457
</ div >
458
458
</ EuiText >
459
459
< EuiPopover
460
- anchorClassName = { cx ( 'showOnHover' , { show : deletePopoverIndex === rowIndex } ) }
460
+ anchorClassName = { cx ( styles . deleteAnchor , 'showOnHover' , { show : deletePopoverIndex === rowIndex } ) }
461
461
anchorPosition = "rightUp"
462
462
isOpen = { deletePopoverIndex === rowIndex }
463
463
closePopover = { ( ) => setDeletePopoverIndex ( undefined ) }
0 commit comments