Skip to content

Commit

Permalink
CB-5810 fixes cell edit styles
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeyteleshev committed Oct 11, 2024
1 parent fd711b0 commit 59ae4cc
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 59ae4cc

Please sign in to comment.