Skip to content

Commit 9b47c28

Browse files
authored
remove create cell button background on hover (#7298)
## 📝 Summary <!-- Provide a concise summary of what this pull request is addressing. If this PR fixes any issues, list them here by number (e.g., Fixes #123). --> When hovering on the cell-button, it would show a light gray background. This PR removes that. This was fixed in an earlier PR but was accidentally removed. gray border: <img width="337" height="171" alt="image" src="https://github.com/user-attachments/assets/a0e72ded-4463-4fea-8c63-cd17cf4f6fb1" /> ## 🔍 Description of Changes <!-- Detail the specific changes made in this pull request. Explain the problem addressed and how it was resolved. If applicable, provide before and after comparisons, screenshots, or any relevant details to help reviewers understand the changes easily. --> ## 📋 Checklist - [x] I have read the [contributor guidelines](https://github.com/marimo-team/marimo/blob/main/CONTRIBUTING.md). - [ ] For large changes, or changes that affect the public API: this change was discussed or approved through an issue, on [Discord](https://marimo.io/discord?ref=pr), or the community [discussions](https://github.com/marimo-team/marimo/discussions) (Please provide a link if applicable). - [ ] I have added tests for the changes made. - [x] I have run the code and verified that it works as expected.
1 parent afa7ae2 commit 9b47c28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/editor/cell/CreateCellButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export const CreateCellButton = ({
113113
<DropdownMenuTrigger asChild={true} onPointerDown={handleButtonClick}>
114114
<Button
115115
className={cn(
116-
"border-none hover-action shadow-none! bg-transparent focus-visible:outline-none",
116+
"border-none hover-action shadow-none! bg-transparent! focus-visible:outline-none",
117117
isAppInteractionDisabled(connectionState) && " inactive-button",
118118
)}
119119
onMouseDown={Events.preventFocus}

0 commit comments

Comments
 (0)