@mkbabb/glass-ui 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +172 -0
- package/dist/glass-ui.css +1 -0
- package/dist/glass-ui.js +10019 -0
- package/dist/index.d.ts +6619 -0
- package/package.json +65 -0
- package/src/components/custom/aurora/Aurora.vue +34 -0
- package/src/components/custom/aurora/composables/color.ts +122 -0
- package/src/components/custom/aurora/composables/useAurora.ts +355 -0
- package/src/components/custom/aurora/index.ts +8 -0
- package/src/components/custom/confirm-dialog/ConfirmDialog.vue +88 -0
- package/src/components/custom/confirm-dialog/index.ts +1 -0
- package/src/components/custom/controls/DarkModeToggle.vue +96 -0
- package/src/components/custom/controls/index.ts +1 -0
- package/src/components/custom/dock/DockLayerGroup.vue +21 -0
- package/src/components/custom/dock/DockPopover.vue +263 -0
- package/src/components/custom/dock/GlassDock.vue +276 -0
- package/src/components/custom/dock/composables/index.ts +16 -0
- package/src/components/custom/dock/composables/isTeleportedTarget.ts +19 -0
- package/src/components/custom/dock/composables/useDockActionBar.ts +33 -0
- package/src/components/custom/dock/composables/useDockState.ts +301 -0
- package/src/components/custom/dock/composables/useDockTransition.ts +146 -0
- package/src/components/custom/dock/composables/useLayerTransition.ts +135 -0
- package/src/components/custom/dock/composables/usePopupMutex.ts +83 -0
- package/src/components/custom/dock/index.ts +9 -0
- package/src/components/custom/expandable-container/ExpandableContainer.vue +64 -0
- package/src/components/custom/expandable-container/index.ts +1 -0
- package/src/components/custom/glass-panel/GlassPanel.vue +98 -0
- package/src/components/custom/glass-panel/index.ts +2 -0
- package/src/components/custom/icon-tooltip/IconTooltip.vue +20 -0
- package/src/components/custom/icon-tooltip/index.ts +1 -0
- package/src/components/custom/index.ts +15 -0
- package/src/components/custom/infinite-scroll/InfiniteScroll.vue +55 -0
- package/src/components/custom/infinite-scroll/composables/index.ts +2 -0
- package/src/components/custom/infinite-scroll/composables/types.ts +23 -0
- package/src/components/custom/infinite-scroll/composables/useInfiniteScroll.ts +73 -0
- package/src/components/custom/infinite-scroll/index.ts +1 -0
- package/src/components/custom/labeled-field/LabeledInput.vue +29 -0
- package/src/components/custom/labeled-field/LabeledSelect.vue +59 -0
- package/src/components/custom/labeled-field/LabeledSlider.vue +32 -0
- package/src/components/custom/labeled-field/LabeledSwitch.vue +27 -0
- package/src/components/custom/labeled-field/index.ts +4 -0
- package/src/components/custom/metaballs/MetaballCanvas.vue +23 -0
- package/src/components/custom/metaballs/index.ts +4 -0
- package/src/components/custom/metaballs/shaders.ts +63 -0
- package/src/components/custom/metaballs/types.ts +29 -0
- package/src/components/custom/metaballs/useMetaballs.ts +252 -0
- package/src/components/custom/search/FuzzySearch.vue +589 -0
- package/src/components/custom/search/SearchBar.vue +44 -0
- package/src/components/custom/search/composables/fuzzySearchIndex.ts +224 -0
- package/src/components/custom/search/composables/index.ts +5 -0
- package/src/components/custom/search/composables/types.ts +34 -0
- package/src/components/custom/search/composables/useFuzzySearch.ts +115 -0
- package/src/components/custom/search/index.ts +7 -0
- package/src/components/custom/sidebar/ProgressiveSidebar.vue +256 -0
- package/src/components/custom/sidebar/composables/index.ts +6 -0
- package/src/components/custom/sidebar/composables/useScrollTracker.ts +242 -0
- package/src/components/custom/sidebar/composables/useSidebarFollow.ts +247 -0
- package/src/components/custom/sidebar/composables/useSidebarState.ts +72 -0
- package/src/components/custom/sidebar/composables/useTreeIndex.ts +152 -0
- package/src/components/custom/sidebar/index.ts +15 -0
- package/src/components/custom/sidebar/types.ts +50 -0
- package/src/components/custom/tabs/BouncyTabs.vue +39 -0
- package/src/components/custom/tabs/BouncyToggle.vue +352 -0
- package/src/components/custom/tabs/UnderlineTabs.vue +115 -0
- package/src/components/custom/tabs/index.ts +5 -0
- package/src/components/custom/timeline/GlassTimeline.vue +174 -0
- package/src/components/custom/timeline/index.ts +1 -0
- package/src/components/custom/typewriter/TypewriterText.vue +239 -0
- package/src/components/custom/typewriter/composables/index.ts +1 -0
- package/src/components/custom/typewriter/composables/useTypewriter.ts +413 -0
- package/src/components/custom/typewriter/index.ts +7 -0
- package/src/components/custom/typewriter/types.ts +159 -0
- package/src/components/custom/typewriter/utils/keyboard.ts +213 -0
- package/src/components/custom/typewriter/utils/pausePatterns.ts +55 -0
- package/src/components/custom/typewriter/utils/timing.ts +104 -0
- package/src/components/custom/typewriter/utils/typoStateMachine.ts +197 -0
- package/src/components/index.ts +2 -0
- package/src/components/ui/accordion/Accordion.vue +19 -0
- package/src/components/ui/accordion/AccordionContent.vue +24 -0
- package/src/components/ui/accordion/AccordionItem.vue +24 -0
- package/src/components/ui/accordion/AccordionTrigger.vue +39 -0
- package/src/components/ui/accordion/index.ts +4 -0
- package/src/components/ui/alert/Alert.vue +20 -0
- package/src/components/ui/alert/AlertDescription.vue +17 -0
- package/src/components/ui/alert/AlertTitle.vue +17 -0
- package/src/components/ui/alert/index.ts +23 -0
- package/src/components/ui/avatar/Avatar.vue +21 -0
- package/src/components/ui/avatar/AvatarFallback.vue +11 -0
- package/src/components/ui/avatar/AvatarImage.vue +9 -0
- package/src/components/ui/avatar/index.ts +24 -0
- package/src/components/ui/badge/Badge.vue +16 -0
- package/src/components/ui/badge/index.ts +25 -0
- package/src/components/ui/button/Button.vue +26 -0
- package/src/components/ui/button/index.ts +43 -0
- package/src/components/ui/card/Card.vue +28 -0
- package/src/components/ui/card/CardContent.vue +14 -0
- package/src/components/ui/card/CardDescription.vue +14 -0
- package/src/components/ui/card/CardFooter.vue +14 -0
- package/src/components/ui/card/CardHeader.vue +14 -0
- package/src/components/ui/card/CardTitle.vue +21 -0
- package/src/components/ui/card/index.ts +6 -0
- package/src/components/ui/carousel/Carousel.vue +53 -0
- package/src/components/ui/carousel/CarouselContent.vue +35 -0
- package/src/components/ui/carousel/CarouselItem.vue +24 -0
- package/src/components/ui/carousel/CarouselNext.vue +40 -0
- package/src/components/ui/carousel/CarouselPrevious.vue +40 -0
- package/src/components/ui/carousel/index.ts +10 -0
- package/src/components/ui/carousel/interface.ts +26 -0
- package/src/components/ui/carousel/useCarousel.ts +56 -0
- package/src/components/ui/checkbox/Checkbox.vue +33 -0
- package/src/components/ui/checkbox/index.ts +1 -0
- package/src/components/ui/collapsible/Collapsible.vue +15 -0
- package/src/components/ui/collapsible/CollapsibleContent.vue +11 -0
- package/src/components/ui/collapsible/CollapsibleTrigger.vue +11 -0
- package/src/components/ui/collapsible/index.ts +3 -0
- package/src/components/ui/combobox/Combobox.vue +17 -0
- package/src/components/ui/combobox/ComboboxAnchor.vue +23 -0
- package/src/components/ui/combobox/ComboboxEmpty.vue +21 -0
- package/src/components/ui/combobox/ComboboxGroup.vue +27 -0
- package/src/components/ui/combobox/ComboboxInput.vue +41 -0
- package/src/components/ui/combobox/ComboboxItem.vue +24 -0
- package/src/components/ui/combobox/ComboboxItemIndicator.vue +23 -0
- package/src/components/ui/combobox/ComboboxList.vue +29 -0
- package/src/components/ui/combobox/ComboboxSeparator.vue +21 -0
- package/src/components/ui/combobox/ComboboxViewport.vue +23 -0
- package/src/components/ui/combobox/index.ts +12 -0
- package/src/components/ui/command/Command.vue +30 -0
- package/src/components/ui/command/CommandDialog.vue +21 -0
- package/src/components/ui/command/CommandEmpty.vue +20 -0
- package/src/components/ui/command/CommandGroup.vue +29 -0
- package/src/components/ui/command/CommandInput.vue +33 -0
- package/src/components/ui/command/CommandItem.vue +26 -0
- package/src/components/ui/command/CommandList.vue +27 -0
- package/src/components/ui/command/CommandSeparator.vue +23 -0
- package/src/components/ui/command/CommandShortcut.vue +14 -0
- package/src/components/ui/command/index.ts +9 -0
- package/src/components/ui/context-menu/ContextMenu.vue +15 -0
- package/src/components/ui/context-menu/ContextMenuCheckboxItem.vue +40 -0
- package/src/components/ui/context-menu/ContextMenuContent.vue +36 -0
- package/src/components/ui/context-menu/ContextMenuGroup.vue +11 -0
- package/src/components/ui/context-menu/ContextMenuItem.vue +34 -0
- package/src/components/ui/context-menu/ContextMenuLabel.vue +25 -0
- package/src/components/ui/context-menu/ContextMenuPortal.vue +11 -0
- package/src/components/ui/context-menu/ContextMenuRadioGroup.vue +19 -0
- package/src/components/ui/context-menu/ContextMenuRadioItem.vue +40 -0
- package/src/components/ui/context-menu/ContextMenuSeparator.vue +20 -0
- package/src/components/ui/context-menu/ContextMenuShortcut.vue +14 -0
- package/src/components/ui/context-menu/ContextMenuSub.vue +19 -0
- package/src/components/ui/context-menu/ContextMenuSubContent.vue +35 -0
- package/src/components/ui/context-menu/ContextMenuSubTrigger.vue +34 -0
- package/src/components/ui/context-menu/ContextMenuTrigger.vue +13 -0
- package/src/components/ui/context-menu/index.ts +14 -0
- package/src/components/ui/data-table/DataTable.vue +167 -0
- package/src/components/ui/data-table/DataTablePagination.vue +112 -0
- package/src/components/ui/data-table/index.ts +3 -0
- package/src/components/ui/data-table/types.ts +48 -0
- package/src/components/ui/dialog/Dialog.vue +14 -0
- package/src/components/ui/dialog/DialogClose.vue +11 -0
- package/src/components/ui/dialog/DialogContent.vue +61 -0
- package/src/components/ui/dialog/DialogDescription.vue +24 -0
- package/src/components/ui/dialog/DialogFooter.vue +19 -0
- package/src/components/ui/dialog/DialogHeader.vue +16 -0
- package/src/components/ui/dialog/DialogScrollContent.vue +65 -0
- package/src/components/ui/dialog/DialogTitle.vue +29 -0
- package/src/components/ui/dialog/DialogTrigger.vue +11 -0
- package/src/components/ui/dialog/index.ts +9 -0
- package/src/components/ui/drawer/Drawer.vue +19 -0
- package/src/components/ui/drawer/DrawerContent.vue +28 -0
- package/src/components/ui/drawer/DrawerDescription.vue +20 -0
- package/src/components/ui/drawer/DrawerFooter.vue +14 -0
- package/src/components/ui/drawer/DrawerHeader.vue +14 -0
- package/src/components/ui/drawer/DrawerOverlay.vue +18 -0
- package/src/components/ui/drawer/DrawerTitle.vue +20 -0
- package/src/components/ui/drawer/index.ts +8 -0
- package/src/components/ui/dropdown-menu/DropdownMenu.vue +14 -0
- package/src/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue +40 -0
- package/src/components/ui/dropdown-menu/DropdownMenuContent.vue +44 -0
- package/src/components/ui/dropdown-menu/DropdownMenuGroup.vue +11 -0
- package/src/components/ui/dropdown-menu/DropdownMenuItem.vue +28 -0
- package/src/components/ui/dropdown-menu/DropdownMenuLabel.vue +24 -0
- package/src/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue +19 -0
- package/src/components/ui/dropdown-menu/DropdownMenuRadioItem.vue +40 -0
- package/src/components/ui/dropdown-menu/DropdownMenuSeparator.vue +22 -0
- package/src/components/ui/dropdown-menu/DropdownMenuShortcut.vue +14 -0
- package/src/components/ui/dropdown-menu/DropdownMenuSub.vue +19 -0
- package/src/components/ui/dropdown-menu/DropdownMenuSubContent.vue +36 -0
- package/src/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue +33 -0
- package/src/components/ui/dropdown-menu/DropdownMenuTrigger.vue +13 -0
- package/src/components/ui/dropdown-menu/index.ts +16 -0
- package/src/components/ui/hover-card/HoverCard.vue +14 -0
- package/src/components/ui/hover-card/HoverCardContent.vue +41 -0
- package/src/components/ui/hover-card/HoverCardTrigger.vue +11 -0
- package/src/components/ui/hover-card/index.ts +3 -0
- package/src/components/ui/index.ts +41 -0
- package/src/components/ui/input/Input.vue +24 -0
- package/src/components/ui/input/index.ts +1 -0
- package/src/components/ui/label/Label.vue +27 -0
- package/src/components/ui/label/index.ts +1 -0
- package/src/components/ui/multi-select/MultiSelect.vue +141 -0
- package/src/components/ui/multi-select/index.ts +7 -0
- package/src/components/ui/notification/Notification.vue +85 -0
- package/src/components/ui/notification/index.ts +1 -0
- package/src/components/ui/number-field/NumberField.vue +23 -0
- package/src/components/ui/number-field/NumberFieldContent.vue +14 -0
- package/src/components/ui/number-field/NumberFieldDecrement.vue +25 -0
- package/src/components/ui/number-field/NumberFieldIncrement.vue +25 -0
- package/src/components/ui/number-field/NumberFieldInput.vue +8 -0
- package/src/components/ui/number-field/index.ts +5 -0
- package/src/components/ui/popover/Popover.vue +15 -0
- package/src/components/ui/popover/PopoverContent.vue +61 -0
- package/src/components/ui/popover/PopoverTrigger.vue +11 -0
- package/src/components/ui/popover/index.ts +3 -0
- package/src/components/ui/progress/Progress.vue +39 -0
- package/src/components/ui/progress/index.ts +1 -0
- package/src/components/ui/radio-group/RadioGroup.vue +25 -0
- package/src/components/ui/radio-group/RadioGroupItem.vue +39 -0
- package/src/components/ui/radio-group/index.ts +2 -0
- package/src/components/ui/scroll-area/ScrollArea.vue +29 -0
- package/src/components/ui/scroll-area/ScrollBar.vue +30 -0
- package/src/components/ui/scroll-area/index.ts +2 -0
- package/src/components/ui/scroll-pane/ScrollPane.vue +25 -0
- package/src/components/ui/scroll-pane/ScrollPaneHeader.vue +75 -0
- package/src/components/ui/scroll-pane/index.ts +2 -0
- package/src/components/ui/select/Select.vue +15 -0
- package/src/components/ui/select/SelectContent.vue +57 -0
- package/src/components/ui/select/SelectGroup.vue +19 -0
- package/src/components/ui/select/SelectItem.vue +47 -0
- package/src/components/ui/select/SelectItemText.vue +11 -0
- package/src/components/ui/select/SelectLabel.vue +13 -0
- package/src/components/ui/select/SelectScrollDownButton.vue +24 -0
- package/src/components/ui/select/SelectScrollUpButton.vue +24 -0
- package/src/components/ui/select/SelectSeparator.vue +17 -0
- package/src/components/ui/select/SelectTrigger.vue +45 -0
- package/src/components/ui/select/SelectValue.vue +11 -0
- package/src/components/ui/select/index.ts +11 -0
- package/src/components/ui/separator/Separator.vue +35 -0
- package/src/components/ui/separator/index.ts +1 -0
- package/src/components/ui/sheet/Sheet.vue +14 -0
- package/src/components/ui/sheet/SheetClose.vue +11 -0
- package/src/components/ui/sheet/SheetContent.vue +56 -0
- package/src/components/ui/sheet/SheetDescription.vue +22 -0
- package/src/components/ui/sheet/SheetFooter.vue +19 -0
- package/src/components/ui/sheet/SheetHeader.vue +16 -0
- package/src/components/ui/sheet/SheetTitle.vue +22 -0
- package/src/components/ui/sheet/SheetTrigger.vue +11 -0
- package/src/components/ui/sheet/index.ts +31 -0
- package/src/components/ui/skeleton/Skeleton.vue +14 -0
- package/src/components/ui/skeleton/index.ts +1 -0
- package/src/components/ui/slider/Slider.vue +66 -0
- package/src/components/ui/slider/index.ts +1 -0
- package/src/components/ui/switch/Switch.vue +37 -0
- package/src/components/ui/switch/index.ts +1 -0
- package/src/components/ui/table/Table.vue +16 -0
- package/src/components/ui/table/TableBody.vue +14 -0
- package/src/components/ui/table/TableCaption.vue +14 -0
- package/src/components/ui/table/TableCell.vue +14 -0
- package/src/components/ui/table/TableEmpty.vue +39 -0
- package/src/components/ui/table/TableFooter.vue +16 -0
- package/src/components/ui/table/TableHead.vue +21 -0
- package/src/components/ui/table/TableHeader.vue +14 -0
- package/src/components/ui/table/TableRow.vue +21 -0
- package/src/components/ui/table/index.ts +9 -0
- package/src/components/ui/tabs/Tabs.vue +15 -0
- package/src/components/ui/tabs/TabsContent.vue +22 -0
- package/src/components/ui/tabs/TabsIndicator.vue +22 -0
- package/src/components/ui/tabs/TabsList.vue +25 -0
- package/src/components/ui/tabs/TabsTrigger.vue +29 -0
- package/src/components/ui/tabs/index.ts +5 -0
- package/src/components/ui/tags-input/TagsInput.vue +22 -0
- package/src/components/ui/tags-input/TagsInputInput.vue +19 -0
- package/src/components/ui/tags-input/TagsInputItem.vue +22 -0
- package/src/components/ui/tags-input/TagsInputItemDelete.vue +24 -0
- package/src/components/ui/tags-input/TagsInputItemText.vue +19 -0
- package/src/components/ui/tags-input/index.ts +5 -0
- package/src/components/ui/textarea/Textarea.vue +24 -0
- package/src/components/ui/textarea/index.ts +1 -0
- package/src/components/ui/toast/Toast.vue +57 -0
- package/src/components/ui/toast/ToastAction.vue +30 -0
- package/src/components/ui/toast/ToastClose.vue +31 -0
- package/src/components/ui/toast/ToastDescription.vue +25 -0
- package/src/components/ui/toast/ToastTitle.vue +25 -0
- package/src/components/ui/toast/Toaster.vue +31 -0
- package/src/components/ui/toast/index.ts +8 -0
- package/src/components/ui/toast/use-toast.ts +136 -0
- package/src/components/ui/toggle/Toggle.vue +35 -0
- package/src/components/ui/toggle/index.ts +27 -0
- package/src/components/ui/toggle-group/ToggleGroup.vue +34 -0
- package/src/components/ui/toggle-group/ToggleGroupItem.vue +35 -0
- package/src/components/ui/toggle-group/index.ts +2 -0
- package/src/components/ui/tooltip/Tooltip.vue +14 -0
- package/src/components/ui/tooltip/TooltipContent.vue +31 -0
- package/src/components/ui/tooltip/TooltipProvider.vue +11 -0
- package/src/components/ui/tooltip/TooltipTrigger.vue +11 -0
- package/src/components/ui/tooltip/index.ts +4 -0
- package/src/composables/glass/index.ts +8 -0
- package/src/composables/glass/useGlassRenderer.ts +252 -0
- package/src/composables/glass/webgl/frostShader.ts +221 -0
- package/src/composables/glass/webgpu/glassShader.wgsl +173 -0
- package/src/composables/index.ts +32 -0
- package/src/composables/infinite-scroll/index.ts +2 -0
- package/src/composables/infinite-scroll/types.ts +25 -0
- package/src/composables/infinite-scroll/useInfiniteScroll.ts +101 -0
- package/src/composables/interaction/index.ts +5 -0
- package/src/composables/interaction/useHeightTransition.ts +82 -0
- package/src/composables/interaction/useHoverPopover.ts +64 -0
- package/src/composables/interaction/useHoverToggle.ts +103 -0
- package/src/composables/interaction/useLeaveTimer.ts +17 -0
- package/src/composables/interaction/useTouchGate.ts +207 -0
- package/src/composables/pagination/index.ts +2 -0
- package/src/composables/pagination/useOffsetPagination.ts +70 -0
- package/src/composables/prng.ts +32 -0
- package/src/composables/useCharSplit.ts +31 -0
- package/src/composables/useClipboard.ts +46 -0
- package/src/composables/useGlobalDark.ts +61 -0
- package/src/composables/useKeyboardShortcuts.ts +205 -0
- package/src/composables/useWatercolorBlob.ts +136 -0
- package/src/composables/virtual/index.ts +22 -0
- package/src/composables/virtual/useVirtualSectionWindow.ts +338 -0
- package/src/composables/virtual/useWindowedStore.ts +86 -0
- package/src/composables/virtual/virtualSectionLayout.ts +212 -0
- package/src/index.ts +9 -0
- package/src/styles/animations.css +233 -0
- package/src/styles/cards.css +66 -0
- package/src/styles/dock.css +221 -0
- package/src/styles/floating-panel.css +49 -0
- package/src/styles/glass.css +266 -0
- package/src/styles/index.css +26 -0
- package/src/styles/scroll-pane.css +10 -0
- package/src/styles/theme.css +138 -0
- package/src/styles/tokens.css +333 -0
- package/src/styles/transitions.css +226 -0
- package/src/styles/typography.css +277 -0
- package/src/styles/utilities.css +697 -0
- package/src/utils/cn.ts +6 -0
- package/src/utils/index.ts +1 -0
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
/* Dock utilities — icon buttons, select triggers, separators, layer grid */
|
|
2
|
+
|
|
3
|
+
@layer components {
|
|
4
|
+
.dock-icon-btn {
|
|
5
|
+
@apply inline-flex items-center justify-center flex-shrink-0 cursor-pointer p-0 border-none bg-transparent;
|
|
6
|
+
width: var(--size-icon-btn);
|
|
7
|
+
height: var(--size-icon-btn);
|
|
8
|
+
border-radius: var(--radius-pill);
|
|
9
|
+
color: color-mix(in srgb, var(--foreground) 80%, transparent);
|
|
10
|
+
transition: all var(--duration-fast) var(--ease-standard);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.dock-icon-btn:hover:not(:disabled) {
|
|
14
|
+
background: var(--muted);
|
|
15
|
+
color: var(--btn-hover-color, var(--foreground));
|
|
16
|
+
transform: scale(var(--scale-hover-dock));
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.dock-icon-btn:active:not(:disabled) {
|
|
20
|
+
transform: scale(var(--scale-press-dock));
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.dock-icon-btn:focus-visible {
|
|
24
|
+
box-shadow: var(--focus-ring-shadow);
|
|
25
|
+
outline: none;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.dock-icon-btn:disabled {
|
|
29
|
+
opacity: 0.35;
|
|
30
|
+
cursor: not-allowed;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.dock-icon-btn.is-active,
|
|
34
|
+
.dock-icon-btn.active {
|
|
35
|
+
background: var(--muted);
|
|
36
|
+
color: var(--foreground);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/* Compact variant — auto-sized for inline use */
|
|
40
|
+
.dock-icon-btn-compact {
|
|
41
|
+
@apply inline-flex items-center justify-center flex-shrink-0 cursor-pointer border-none bg-transparent w-auto h-auto min-w-0 p-1;
|
|
42
|
+
border-radius: var(--radius-pill);
|
|
43
|
+
color: color-mix(in srgb, var(--foreground) 80%, transparent);
|
|
44
|
+
transition: all var(--duration-fast) var(--ease-standard);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.dock-icon-btn-compact:hover:not(:disabled) {
|
|
48
|
+
background: var(--muted);
|
|
49
|
+
color: var(--btn-hover-color, var(--foreground));
|
|
50
|
+
transform: scale(var(--scale-hover-dock));
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.dock-icon-btn-compact:active:not(:disabled) {
|
|
54
|
+
transform: scale(var(--scale-press-dock));
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.dock-icon-btn-compact:focus-visible {
|
|
58
|
+
box-shadow: var(--focus-ring-shadow);
|
|
59
|
+
outline: none;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.dock-icon-btn-compact:disabled {
|
|
63
|
+
opacity: 0.35;
|
|
64
|
+
cursor: not-allowed;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.dock-select-trigger {
|
|
68
|
+
@apply inline-flex items-center gap-1 py-1 px-2 cursor-pointer whitespace-nowrap border-none bg-transparent;
|
|
69
|
+
border-radius: var(--radius-pill);
|
|
70
|
+
color: color-mix(in srgb, var(--foreground) 80%, transparent);
|
|
71
|
+
transition: all var(--duration-fast) var(--ease-standard);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.dock-select-trigger:hover:not(:disabled) {
|
|
75
|
+
background: var(--muted);
|
|
76
|
+
color: var(--foreground);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.dock-select-trigger:active:not(:disabled) {
|
|
80
|
+
transform: scale(var(--scale-press));
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.dock-select-trigger:focus-visible {
|
|
84
|
+
box-shadow:
|
|
85
|
+
0 0 0 var(--focus-ring-width) var(--dock-ring, color-mix(in srgb, var(--ring) 30%, transparent)),
|
|
86
|
+
0 0 8px color-mix(in srgb, var(--ring) 15%, transparent);
|
|
87
|
+
outline: none;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.dock-select-trigger[aria-expanded="true"],
|
|
91
|
+
.dock-select-trigger.is-active {
|
|
92
|
+
background: var(--muted);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.dock-select-trigger:disabled {
|
|
96
|
+
opacity: 0.35;
|
|
97
|
+
cursor: not-allowed;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
/* Dropdown trigger — variable width, text + icon + chevron */
|
|
101
|
+
.dock-dropdown-trigger {
|
|
102
|
+
@apply inline-flex items-center gap-1 py-1 px-2 flex-shrink-0 cursor-pointer whitespace-nowrap border-none bg-transparent;
|
|
103
|
+
border-radius: var(--radius-pill);
|
|
104
|
+
transition: all var(--duration-fast) var(--ease-standard);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.dock-dropdown-trigger:hover:not(:disabled) {
|
|
108
|
+
background: var(--muted);
|
|
109
|
+
transform: scale(var(--scale-hover-dock));
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.dock-dropdown-trigger:active:not(:disabled) {
|
|
113
|
+
transform: scale(var(--scale-press-dock));
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.dock-dropdown-trigger[aria-expanded="true"],
|
|
117
|
+
.dock-dropdown-trigger.is-active {
|
|
118
|
+
background: var(--muted);
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.dock-dropdown-trigger:focus-visible {
|
|
122
|
+
box-shadow: var(--focus-ring-shadow);
|
|
123
|
+
outline: none;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.dock-dropdown-trigger:disabled {
|
|
127
|
+
opacity: 0.35;
|
|
128
|
+
cursor: not-allowed;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.dock-label {
|
|
132
|
+
@apply inline-flex items-center gap-1 cursor-default whitespace-nowrap;
|
|
133
|
+
padding: 0.25rem 0.375rem;
|
|
134
|
+
border-radius: var(--radius-pill);
|
|
135
|
+
color: var(--muted-foreground);
|
|
136
|
+
font-size: var(--type-small);
|
|
137
|
+
transition: all var(--duration-fast) var(--ease-standard);
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.dock-label:hover {
|
|
141
|
+
color: color-mix(in srgb, var(--foreground) 85%, transparent);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.dock-play-btn {
|
|
145
|
+
@apply inline-flex items-center justify-center cursor-pointer border-none;
|
|
146
|
+
border-radius: var(--radius-pill);
|
|
147
|
+
transition:
|
|
148
|
+
filter var(--duration-fast) var(--ease-standard),
|
|
149
|
+
transform var(--duration-fast) var(--ease-standard);
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.dock-play-btn:hover:not(:disabled) {
|
|
153
|
+
filter: brightness(1.1);
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.dock-play-btn:active:not(:disabled) {
|
|
157
|
+
transform: scale(var(--scale-press-dock));
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.dock-play-btn:focus-visible {
|
|
161
|
+
box-shadow: var(--focus-ring-shadow);
|
|
162
|
+
outline: none;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.dock-play-btn:disabled {
|
|
166
|
+
opacity: 0.35;
|
|
167
|
+
cursor: not-allowed;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.dock-separator {
|
|
171
|
+
@apply flex-shrink-0;
|
|
172
|
+
width: 1px;
|
|
173
|
+
height: calc(var(--dock-h, var(--size-icon-btn)) * 0.5);
|
|
174
|
+
margin: 0 0.375rem;
|
|
175
|
+
background: color-mix(in srgb, var(--foreground) 15%, transparent);
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.dock-spacer {
|
|
179
|
+
@apply flex-1;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
/* ── Layer transition grid ── */
|
|
183
|
+
.dock-layer-grid {
|
|
184
|
+
display: grid;
|
|
185
|
+
position: relative;
|
|
186
|
+
transition: width var(--duration-normal) var(--spring-snappy);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.dock-layer-item {
|
|
190
|
+
grid-area: 1 / 1;
|
|
191
|
+
display: flex;
|
|
192
|
+
align-items: center;
|
|
193
|
+
gap: 0.375rem;
|
|
194
|
+
min-width: 0;
|
|
195
|
+
transition: opacity var(--duration-normal) var(--ease-standard);
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
/* Inactive layers: out of flow so only the active layer drives grid width */
|
|
199
|
+
.dock-layer-item:not(.dock-layer-active) {
|
|
200
|
+
position: absolute !important;
|
|
201
|
+
opacity: 0;
|
|
202
|
+
pointer-events: none;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.dock-layer-item.dock-layer-active {
|
|
206
|
+
position: relative;
|
|
207
|
+
opacity: 1;
|
|
208
|
+
pointer-events: auto;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.dock-layer-item.dock-layer-leaving {
|
|
212
|
+
z-index: var(--z-controls);
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
/* ── Dock-safe insets — content clears top + bottom floating docks ── */
|
|
216
|
+
/* Content insets that clear floating top + bottom docks. */
|
|
217
|
+
.dock-inset {
|
|
218
|
+
padding-top: calc(var(--dock-h) + var(--dock-margin));
|
|
219
|
+
padding-bottom: calc(var(--dock-menubar-reserve) + var(--dock-margin));
|
|
220
|
+
}
|
|
221
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/* Floating panel — teleported action menus, swatch popovers */
|
|
2
|
+
|
|
3
|
+
@layer components {
|
|
4
|
+
.floating-panel {
|
|
5
|
+
position: fixed;
|
|
6
|
+
z-index: var(--z-overlay);
|
|
7
|
+
border-radius: var(--radius-panel);
|
|
8
|
+
border: 1px solid var(--glass-border-medium);
|
|
9
|
+
background: var(--glass-bg-medium);
|
|
10
|
+
backdrop-filter: var(--glass-blur-medium);
|
|
11
|
+
-webkit-backdrop-filter: var(--glass-blur-medium);
|
|
12
|
+
color: var(--popover-foreground);
|
|
13
|
+
box-shadow: var(--glass-shadow-medium);
|
|
14
|
+
pointer-events: auto;
|
|
15
|
+
animation: floating-panel-in var(--duration-fast) var(--ease-out);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.floating-panel-item {
|
|
19
|
+
display: flex;
|
|
20
|
+
align-items: center;
|
|
21
|
+
justify-content: center;
|
|
22
|
+
gap: 0.5rem;
|
|
23
|
+
padding: 0.375rem;
|
|
24
|
+
border-radius: var(--radius-pill);
|
|
25
|
+
color: inherit;
|
|
26
|
+
cursor: pointer;
|
|
27
|
+
transition:
|
|
28
|
+
background-color var(--duration-fast) var(--ease-standard),
|
|
29
|
+
transform var(--duration-fast) var(--ease-standard);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.floating-panel-item:hover {
|
|
33
|
+
background-color: color-mix(in srgb, var(--foreground) 6%, transparent);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.floating-panel-item:focus-visible {
|
|
37
|
+
outline: none;
|
|
38
|
+
border-radius: var(--radius-pill);
|
|
39
|
+
box-shadow: var(--focus-ring-shadow);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.floating-panel-item:active:not(:disabled) {
|
|
43
|
+
transform: scale(0.95);
|
|
44
|
+
}
|
|
45
|
+
.floating-panel-item:disabled {
|
|
46
|
+
opacity: 0.35;
|
|
47
|
+
pointer-events: none;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
@@ -0,0 +1,266 @@
|
|
|
1
|
+
/* Glass utilities — glassmorphism surface classes referencing --glass-* tokens */
|
|
2
|
+
|
|
3
|
+
@layer components {
|
|
4
|
+
/* ── Four-tier surface classes (visual only, no geometry) ── */
|
|
5
|
+
|
|
6
|
+
.glass-subtle {
|
|
7
|
+
position: relative;
|
|
8
|
+
background: var(--glass-bg-subtle);
|
|
9
|
+
backdrop-filter: var(--glass-blur-subtle);
|
|
10
|
+
-webkit-backdrop-filter: var(--glass-blur-subtle);
|
|
11
|
+
border: 1px solid var(--glass-border-subtle);
|
|
12
|
+
box-shadow: var(--glass-highlight);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.glass-default {
|
|
16
|
+
position: relative;
|
|
17
|
+
background: var(--glass-bg-default);
|
|
18
|
+
backdrop-filter: var(--glass-blur-default);
|
|
19
|
+
-webkit-backdrop-filter: var(--glass-blur-default);
|
|
20
|
+
border: 1px solid var(--glass-border-default);
|
|
21
|
+
box-shadow: var(--glass-highlight);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.glass-medium {
|
|
25
|
+
position: relative;
|
|
26
|
+
background: var(--glass-bg-medium);
|
|
27
|
+
backdrop-filter: var(--glass-blur-medium);
|
|
28
|
+
-webkit-backdrop-filter: var(--glass-blur-medium);
|
|
29
|
+
border: 1px solid var(--glass-border-medium);
|
|
30
|
+
box-shadow: var(--glass-highlight);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.glass-elevated {
|
|
34
|
+
position: relative;
|
|
35
|
+
background: var(--glass-bg-elevated);
|
|
36
|
+
backdrop-filter: var(--glass-blur-elevated);
|
|
37
|
+
-webkit-backdrop-filter: var(--glass-blur-elevated);
|
|
38
|
+
border: 1px solid var(--glass-border-elevated);
|
|
39
|
+
box-shadow: var(--glass-highlight);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/* Grain noise overlay — reuses paper texture SVG, no extra assets */
|
|
43
|
+
.glass-subtle::after,
|
|
44
|
+
.glass-default::after,
|
|
45
|
+
.glass-medium::after,
|
|
46
|
+
.glass-elevated::after {
|
|
47
|
+
content: '';
|
|
48
|
+
position: absolute;
|
|
49
|
+
inset: 0;
|
|
50
|
+
border-radius: inherit;
|
|
51
|
+
background: var(--paper-clean-texture);
|
|
52
|
+
background-repeat: repeat;
|
|
53
|
+
background-size: var(--paper-texture-size);
|
|
54
|
+
opacity: var(--glass-grain-opacity);
|
|
55
|
+
pointer-events: none;
|
|
56
|
+
mix-blend-mode: overlay;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.dark .glass-subtle::after,
|
|
60
|
+
.dark .glass-default::after,
|
|
61
|
+
.dark .glass-medium::after,
|
|
62
|
+
.dark .glass-elevated::after {
|
|
63
|
+
mix-blend-mode: soft-light;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/* ── Convenience shorthands (tier + shape) ── */
|
|
67
|
+
|
|
68
|
+
.glass-card {
|
|
69
|
+
position: relative;
|
|
70
|
+
background: var(--glass-bg-default);
|
|
71
|
+
backdrop-filter: var(--glass-blur-default);
|
|
72
|
+
-webkit-backdrop-filter: var(--glass-blur-default);
|
|
73
|
+
border: 1px solid var(--glass-border-default);
|
|
74
|
+
border-radius: var(--radius-card);
|
|
75
|
+
box-shadow: var(--glass-shadow-default);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.glass-pill {
|
|
79
|
+
position: relative;
|
|
80
|
+
background: var(--glass-bg-default);
|
|
81
|
+
backdrop-filter: var(--glass-blur-default);
|
|
82
|
+
-webkit-backdrop-filter: var(--glass-blur-default);
|
|
83
|
+
border: 1px solid var(--glass-border-default);
|
|
84
|
+
border-radius: var(--radius-pill);
|
|
85
|
+
box-shadow: var(--glass-shadow-subtle);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/* ── Glassmorphic circular icon button ── */
|
|
89
|
+
|
|
90
|
+
.glass-btn {
|
|
91
|
+
@apply flex items-center justify-center cursor-pointer;
|
|
92
|
+
|
|
93
|
+
width: var(--size-icon-btn);
|
|
94
|
+
height: var(--size-icon-btn);
|
|
95
|
+
border-radius: var(--radius-pill);
|
|
96
|
+
border: 1.5px solid var(--glass-border-subtle);
|
|
97
|
+
background: var(--glass-bg-subtle);
|
|
98
|
+
backdrop-filter: var(--glass-blur-subtle);
|
|
99
|
+
color: var(--muted-foreground);
|
|
100
|
+
transition:
|
|
101
|
+
background var(--duration-fast) ease,
|
|
102
|
+
border-color var(--duration-fast) ease,
|
|
103
|
+
color var(--duration-fast) ease,
|
|
104
|
+
transform var(--duration-normal) var(--spring-snappy);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.glass-btn:hover:not(:disabled) {
|
|
108
|
+
background: color-mix(in srgb, var(--background) 85%, transparent);
|
|
109
|
+
border-color: color-mix(in srgb, var(--foreground) 20%, transparent);
|
|
110
|
+
color: var(--foreground);
|
|
111
|
+
transform: scale(var(--scale-hover));
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.glass-btn:active:not(:disabled) {
|
|
115
|
+
transform: scale(var(--scale-press));
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.glass-btn:focus-visible {
|
|
119
|
+
outline: var(--focus-ring-width) solid var(--ring);
|
|
120
|
+
outline-offset: var(--focus-ring-width);
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.glass-btn:disabled {
|
|
124
|
+
opacity: 0.35;
|
|
125
|
+
cursor: not-allowed;
|
|
126
|
+
pointer-events: none;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.glass-btn.is-active {
|
|
130
|
+
background: color-mix(in srgb, var(--foreground) 10%, transparent);
|
|
131
|
+
border-color: color-mix(in srgb, var(--foreground) 25%, transparent);
|
|
132
|
+
color: var(--foreground);
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
/* ── Pill button base ─────────────────────────── */
|
|
136
|
+
.btn-pill {
|
|
137
|
+
@apply inline-flex items-center justify-center cursor-pointer font-medium border-none;
|
|
138
|
+
|
|
139
|
+
gap: 0.375rem;
|
|
140
|
+
border-radius: var(--radius-pill);
|
|
141
|
+
padding: 0.5rem 1rem;
|
|
142
|
+
font-size: 1rem;
|
|
143
|
+
transition: all var(--duration-fast) var(--ease-standard);
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.btn-pill > * {
|
|
147
|
+
@apply flex-shrink-0;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
.btn-pill:active:not(:disabled) {
|
|
152
|
+
transform: scale(0.96);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.btn-pill:disabled {
|
|
156
|
+
opacity: 0.4;
|
|
157
|
+
cursor: not-allowed;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.btn-pill-accent {
|
|
161
|
+
background: var(--th-accent-opaque, var(--primary));
|
|
162
|
+
color: var(--foreground);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.btn-pill-accent:hover:not(:disabled) {
|
|
166
|
+
opacity: 0.9;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.btn-pill-ghost {
|
|
170
|
+
background: transparent;
|
|
171
|
+
color: color-mix(in srgb, var(--foreground) 70%, transparent);
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.btn-pill-ghost:hover:not(:disabled) {
|
|
175
|
+
background: color-mix(in srgb, var(--foreground) 8%, transparent);
|
|
176
|
+
color: var(--foreground);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.btn-pill-glass {
|
|
180
|
+
background: var(--glass-bg-subtle);
|
|
181
|
+
backdrop-filter: var(--glass-blur-subtle);
|
|
182
|
+
border: 1px solid var(--glass-border-default);
|
|
183
|
+
color: var(--foreground);
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.btn-pill-glass:hover:not(:disabled) {
|
|
187
|
+
box-shadow: var(--glass-shadow-default);
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
/* ── Pill input ───────────────────────────────── */
|
|
191
|
+
.input-pill {
|
|
192
|
+
@apply flex w-full;
|
|
193
|
+
|
|
194
|
+
height: 2.5rem;
|
|
195
|
+
border-radius: var(--radius-pill);
|
|
196
|
+
border: 1.5px solid var(--glass-border-subtle);
|
|
197
|
+
background: var(--glass-bg-default);
|
|
198
|
+
backdrop-filter: var(--glass-blur-subtle);
|
|
199
|
+
padding: 0 1rem;
|
|
200
|
+
font-size: 1rem;
|
|
201
|
+
color: var(--foreground);
|
|
202
|
+
transition: all var(--duration-fast) var(--ease-standard);
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.input-pill::placeholder {
|
|
206
|
+
color: color-mix(in srgb, var(--foreground) 35%, transparent);
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.input-pill:focus {
|
|
210
|
+
outline: none;
|
|
211
|
+
border-color: var(--color-accent-opaque, var(--ring));
|
|
212
|
+
box-shadow: 0 0 0 2px var(--color-accent, color-mix(in srgb, var(--ring) 30%, transparent));
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.input-pill:disabled {
|
|
216
|
+
opacity: 0.5;
|
|
217
|
+
cursor: not-allowed;
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
/* ── Accessibility: reduced transparency ────────── */
|
|
222
|
+
@media (prefers-reduced-transparency: reduce) {
|
|
223
|
+
:root {
|
|
224
|
+
--glass-opacity-subtle: 1;
|
|
225
|
+
--glass-opacity-default: 1;
|
|
226
|
+
--glass-opacity-medium: 1;
|
|
227
|
+
--glass-opacity-elevated: 1;
|
|
228
|
+
--glass-blur-subtle: none;
|
|
229
|
+
--glass-blur-default: none;
|
|
230
|
+
--glass-blur-medium: none;
|
|
231
|
+
--glass-blur-elevated: none;
|
|
232
|
+
--glass-grain-opacity: 0;
|
|
233
|
+
--glass-highlight: none;
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
/* ── Accessibility: high contrast ───────────────── */
|
|
238
|
+
@media (prefers-contrast: more) {
|
|
239
|
+
:root {
|
|
240
|
+
--glass-opacity-subtle: 0.88;
|
|
241
|
+
--glass-opacity-default: 0.92;
|
|
242
|
+
--glass-opacity-medium: 0.96;
|
|
243
|
+
--glass-opacity-elevated: 1;
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
/* ── @supports fallbacks for non-backdrop-filter browsers ── */
|
|
248
|
+
@layer components {
|
|
249
|
+
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
|
|
250
|
+
.glass-subtle {
|
|
251
|
+
background: color-mix(in srgb, var(--card) 88%, transparent);
|
|
252
|
+
}
|
|
253
|
+
.glass-default {
|
|
254
|
+
background: color-mix(in srgb, var(--card) 92%, transparent);
|
|
255
|
+
}
|
|
256
|
+
.glass-medium {
|
|
257
|
+
background: color-mix(in srgb, var(--card) 96%, transparent);
|
|
258
|
+
}
|
|
259
|
+
.glass-elevated {
|
|
260
|
+
background: var(--card);
|
|
261
|
+
}
|
|
262
|
+
.glass-btn {
|
|
263
|
+
background: color-mix(in srgb, var(--background) 92%, transparent);
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @mkbabb/glass-ui — Unified design system styles
|
|
3
|
+
*
|
|
4
|
+
* Import this in your project's main CSS file:
|
|
5
|
+
* @import "tailwindcss";
|
|
6
|
+
* @import "tw-animate-css";
|
|
7
|
+
* @import "@mkbabb/glass-ui/styles";
|
|
8
|
+
* (then add your project-specific token overrides locally)
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
/* Order matters: tokens first, then theme (for @theme), then component layers */
|
|
12
|
+
@import "./tokens.css";
|
|
13
|
+
@import "./typography.css";
|
|
14
|
+
@import "./theme.css";
|
|
15
|
+
@import "./glass.css";
|
|
16
|
+
@import "./dock.css";
|
|
17
|
+
@import "./cards.css";
|
|
18
|
+
@import "./scroll-pane.css";
|
|
19
|
+
@import "./floating-panel.css";
|
|
20
|
+
@import "./transitions.css";
|
|
21
|
+
@import "./animations.css";
|
|
22
|
+
@import "./utilities.css";
|
|
23
|
+
|
|
24
|
+
/* Ensure consumer's Tailwind scans glass-ui components for utility classes
|
|
25
|
+
(e.g. CVA button variants like text-destructive-foreground) */
|
|
26
|
+
@source "../components";
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/* Scroll-pane utilities — sticky header with scroll-driven animations */
|
|
2
|
+
|
|
3
|
+
/* Named scroll timeline so ScrollPaneHeader animations respond
|
|
4
|
+
to THIS container's scroll, not portal-triggered layout shifts
|
|
5
|
+
in ancestor containers. */
|
|
6
|
+
.pane-scroll-fade {
|
|
7
|
+
scroll-timeline: --pane-scroll block;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
/* Pane title and description styles are in typography.css — single source of truth */
|