Files
supabase/apps/studio/styles/contextMenu.scss
Joshen Lim fca9b3bff8 Feat/support expanding text cells into a sidepanel editor (#20727)
* Do up logic for callback for opening side panel

* Add TextEditor side panel and fix some quirky bugs with JSONEditor too

* Add Markdown Preview in TextEditor

* Fix bad cs

* Fix border css
2024-01-25 17:47:36 +07:00

23 lines
643 B
SCSS

.react-contexify {
@apply border border-default;
background-color: hsl(var(--background-surface-100)) !important;
.react-contexify__item {
.react-contexify__item__content {
@apply text-foreground-light text-sm;
}
.react-contexify__submenu {
@apply bg-surface-100 border;
}
}
.react-contexify__item:not(.react-contexify__item--disabled):hover
> .react-contexify__item__content,
.react-contexify__item:not(.react-contexify__item--disabled):focus
> .react-contexify__item__content {
@apply bg-overlay-hover text-foreground;
}
.react-contexify__separator {
@apply bg-surface-300;
}
}