mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-16 19:33:11 +02:00
speaking! (#5925)
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
/**
|
||||
* Z-index constants for layering elements across the application
|
||||
* Organized in ascending order to prevent conflicts
|
||||
*/
|
||||
|
||||
export const ZINDEX = {
|
||||
// Base layers
|
||||
BASE: 0,
|
||||
|
||||
// Overlay/modal layers
|
||||
MODAL_BACKDROP: 1000,
|
||||
MODAL_CONTENT: 1001,
|
||||
|
||||
// Popover/tooltip layers
|
||||
POPOVER: 1100,
|
||||
TOOLTIP: 1200,
|
||||
|
||||
// Viewer specific layers
|
||||
VIEWER_HIGHLIGHT: 999,
|
||||
VIEWER_ANNOTATION_MENU: 1300,
|
||||
|
||||
// Sticky/fixed layers
|
||||
STICKY_HEADER: 900,
|
||||
STICKY_SIDEBAR: 850,
|
||||
} as const;
|
||||
Reference in New Issue
Block a user