Skip to content

Commit

Permalink
CB-5810 fixes cell edit styles (#2996)
Browse files Browse the repository at this point in the history
Co-authored-by: mr-anton-t <[email protected]>
  • Loading branch information
sergeyteleshev and mr-anton-t authored Oct 14, 2024
1 parent a4bb23b commit 439c806
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
display: flex;
overflow: hidden;
box-sizing: border-box;
position: relative;
}

.container {
Expand All @@ -28,8 +27,3 @@
display: none;
}
}

.cellMenu {
width: 25px;
height: 100%;
}
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ export const CellFormatter = observer<Props>(function CellFormatter({ className,
spreadsheetActions={spreadsheetActions}
resultIndex={context.resultIndex}
simple={context.simple}
className={s(styles, { cellMenu: true })}
onStateSwitch={setMenuVisible}
/>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,15 @@
position: absolute;
top: 0px;
right: 0px;
height: 100%;
}

.menuTrigger {
padding: 1px 2px;
display: flex;
align-items: center;
height: 100%;
justify-content: center;

&:hover {
background: none;
Expand Down

0 comments on commit 439c806

Please sign in to comment.