Skip to content

Commit 837fead

Browse files
committed
i feel that the border around the jupyter cell buttons is too much
1 parent 1b65e59 commit 837fead

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/packages/frontend/jupyter/cell-buttonbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ export const CellButtonBar: React.FC<Props> = React.memo(
236236
style={{
237237
marginLeft: "1px",
238238
padding: "4px 5px 4px 6px",
239-
borderLeft: `1px solid ${COLORS.GRAY_LL}`,
239+
borderLeft: `1px solid ${COLORS.GRAY_L}`,
240240
}}
241241
>
242242
{index + 1}

src/packages/frontend/jupyter/consts.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ export const MINI_BUTTONS_STYLE_INNER: CSS = {
1717
gap: "3px",
1818
alignItems: "flex-start",
1919
...CODE_BAR_BTN_STYLE,
20-
borderTop: `1px solid ${COLORS.GRAY_L}`,
21-
borderLeft: `1px solid ${COLORS.GRAY_L}`,
22-
borderRight: `1px solid ${COLORS.GRAY_L}`,
23-
borderRadius: "3px 3px 3px 0",
20+
// borderTop: `1px solid ${COLORS.GRAY_L}`,
21+
// borderLeft: `1px solid ${COLORS.GRAY_L}`,
22+
// borderRight: `1px solid ${COLORS.GRAY_L}`,
23+
// borderRadius: "3px 3px 3px 0",
2424
} as const;
2525

2626
export const RUN_ALL_CELLS_ABOVE_ICON = "vertical-align-bottom";

0 commit comments

Comments
 (0)