| import { menuAnatomy } from "../../anatomy" |
| import { defineSlotRecipe } from "../../styled-system" |
|
|
| export const menuSlotRecipe = defineSlotRecipe({ |
| className: "chakra-menu", |
| slots: menuAnatomy.keys(), |
| base: { |
| content: { |
| outline: 0, |
| bg: "bg.panel", |
| boxShadow: "lg", |
| color: "fg", |
| maxHeight: "var(--available-height)", |
| "--menu-z-index": "zIndex.dropdown", |
| zIndex: "calc(var(--menu-z-index) + var(--layer-index, 0))", |
| borderRadius: "l2", |
| overflow: "hidden", |
| overflowY: "auto", |
| _open: { |
| animationStyle: "slide-fade-in", |
| animationDuration: "fast", |
| }, |
| _closed: { |
| animationStyle: "slide-fade-out", |
| animationDuration: "faster", |
| }, |
| }, |
| item: { |
| textDecoration: "none", |
| color: "fg", |
| userSelect: "none", |
| borderRadius: "l1", |
| width: "100%", |
| display: "flex", |
| cursor: "menuitem", |
| alignItems: "center", |
| textAlign: "start", |
| position: "relative", |
| flex: "0 0 auto", |
| outline: 0, |
| _disabled: { |
| layerStyle: "disabled", |
| }, |
| "&[data-type]": { |
| ps: "8", |
| }, |
| }, |
| itemText: { |
| flex: "1", |
| }, |
| itemIndicator: { |
| position: "absolute", |
| insetStart: "2", |
| transform: "translateY(-50%)", |
| top: "50%", |
| }, |
| itemGroupLabel: { |
| px: "2", |
| py: "1.5", |
| fontWeight: "semibold", |
| textStyle: "sm", |
| }, |
| indicator: { |
| display: "inline-flex", |
| alignItems: "center", |
| justifyContent: "center", |
| flexShrink: "0", |
| }, |
| itemCommand: { |
| opacity: "0.6", |
| textStyle: "xs", |
| ms: "auto", |
| ps: "4", |
| letterSpacing: "widest", |
| fontFamily: "inherit", |
| }, |
| separator: { |
| height: "1px", |
| bg: "bg.muted", |
| my: "1", |
| mx: "-1", |
| }, |
| }, |
|
|
| variants: { |
| variant: { |
| subtle: { |
| item: { |
| _highlighted: { |
| bg: "bg.emphasized/60", |
| }, |
| }, |
| }, |
| solid: { |
| item: { |
| _highlighted: { |
| bg: "colorPalette.solid", |
| color: "colorPalette.contrast", |
| }, |
| }, |
| }, |
| }, |
|
|
| size: { |
| sm: { |
| content: { |
| minW: "8rem", |
| padding: "1", |
| }, |
| item: { |
| gap: "1", |
| textStyle: "xs", |
| py: "1", |
| px: "1.5", |
| }, |
| }, |
| md: { |
| content: { |
| minW: "8rem", |
| padding: "1.5", |
| }, |
| item: { |
| gap: "2", |
| textStyle: "sm", |
| py: "1.5", |
| px: "2", |
| }, |
| }, |
| }, |
| }, |
|
|
| defaultVariants: { |
| size: "md", |
| variant: "subtle", |
| }, |
| }) |
|
|