@mantine/core 7.0.0-alpha.19 → 7.0.0-alpha.20
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/cjs/components/AppShell/AppShellMediaStyles/get-variables/get-variables.js.map +1 -1
- package/cjs/components/Blockquote/Blockquote.js +1 -1
- package/cjs/components/Button/Button.js.map +1 -1
- package/cjs/components/Card/Card.context.js +13 -0
- package/cjs/components/Card/Card.context.js.map +1 -0
- package/cjs/components/Card/Card.js +88 -0
- package/cjs/components/Card/Card.js.map +1 -0
- package/cjs/components/Card/Card.module.css.js +8 -0
- package/cjs/components/Card/Card.module.css.js.map +1 -0
- package/cjs/components/Card/CardSection/CardSection.js +79 -0
- package/cjs/components/Card/CardSection/CardSection.js.map +1 -0
- package/cjs/components/Collapse/Collapse.js +1 -1
- package/cjs/components/FileInput/FileInput.js +156 -0
- package/cjs/components/FileInput/FileInput.js.map +1 -0
- package/cjs/components/Grid/GridVariables.js.map +1 -1
- package/cjs/components/Group/Group.js +15 -4
- package/cjs/components/Group/Group.js.map +1 -1
- package/cjs/components/Image/Image.js +129 -0
- package/cjs/components/Image/Image.js.map +1 -0
- package/cjs/components/Image/Image.module.css.js +8 -0
- package/cjs/components/Image/Image.module.css.js.map +1 -0
- package/cjs/components/Indicator/Indicator.js +134 -0
- package/cjs/components/Indicator/Indicator.js.map +1 -0
- package/cjs/components/Indicator/Indicator.module.css.js +8 -0
- package/cjs/components/Indicator/Indicator.module.css.js.map +1 -0
- package/cjs/components/Indicator/get-position-variables/get-position-variables.js +46 -0
- package/cjs/components/Indicator/get-position-variables/get-position-variables.js.map +1 -0
- package/cjs/components/Input/InputLabel/InputLabel.js +1 -1
- package/cjs/components/JsonInput/JsonInput.js +117 -0
- package/cjs/components/JsonInput/JsonInput.js.map +1 -0
- package/cjs/components/JsonInput/validate-json/validate-json.js +18 -0
- package/cjs/components/JsonInput/validate-json/validate-json.js.map +1 -0
- package/cjs/components/Modal/Modal.js +5 -3
- package/cjs/components/Modal/Modal.js.map +1 -1
- package/cjs/components/Modal/ModalRoot.js +1 -1
- package/cjs/components/Modal/ModalRoot.js.map +1 -1
- package/cjs/components/ModalBase/ModalBaseContent.js.map +1 -1
- package/cjs/components/Overlay/Overlay.js +1 -1
- package/cjs/components/Paper/Paper.js +1 -1
- package/cjs/components/PasswordInput/PasswordInput.js +253 -0
- package/cjs/components/PasswordInput/PasswordInput.js.map +1 -0
- package/cjs/components/PasswordInput/PasswordInput.module.css.js +8 -0
- package/cjs/components/PasswordInput/PasswordInput.module.css.js.map +1 -0
- package/cjs/components/PasswordInput/PasswordToggleIcon.js +33 -0
- package/cjs/components/PasswordInput/PasswordToggleIcon.js.map +1 -0
- package/cjs/components/PinInput/PinInput.js +292 -0
- package/cjs/components/PinInput/PinInput.js.map +1 -0
- package/cjs/components/PinInput/PinInput.module.css.js +8 -0
- package/cjs/components/PinInput/PinInput.module.css.js.map +1 -0
- package/cjs/components/PinInput/create-pin-array/create-pin-array.js +20 -0
- package/cjs/components/PinInput/create-pin-array/create-pin-array.js.map +1 -0
- package/cjs/components/Popover/Popover.js +6 -6
- package/cjs/components/Popover/Popover.js.map +1 -1
- package/cjs/components/Popover/PopoverTarget/PopoverTarget.js +1 -1
- package/cjs/components/ScrollArea/ScrollArea.js +2 -2
- package/cjs/components/ScrollArea/ScrollAreaScrollbar/ScrollAreaScrollbarVisible.js +1 -1
- package/cjs/components/Textarea/Textarea.js +73 -0
- package/cjs/components/Textarea/Textarea.js.map +1 -0
- package/cjs/components/Tooltip/TooltipFloating/use-floating-tooltip.js +5 -5
- package/cjs/components/Tooltip/TooltipFloating/use-floating-tooltip.js.map +1 -1
- package/cjs/components/Tooltip/use-tooltip.js +2 -4
- package/cjs/components/Tooltip/use-tooltip.js.map +1 -1
- package/cjs/core/Box/Box.js.map +1 -1
- package/cjs/core/factory/create-polymorphic-component.js.map +1 -1
- package/cjs/core/factory/factory.js.map +1 -1
- package/cjs/core/styles-api/use-styles/use-styles.js.map +1 -1
- package/cjs/core/utils/get-size/get-size.js +3 -0
- package/cjs/core/utils/get-size/get-size.js.map +1 -1
- package/cjs/index.css +1281 -1067
- package/cjs/index.js +74 -56
- package/cjs/index.js.map +1 -1
- package/esm/components/AppShell/AppShellMediaStyles/get-variables/get-variables.js.map +1 -1
- package/esm/components/Blockquote/Blockquote.js +1 -1
- package/esm/components/Button/Button.js.map +1 -1
- package/esm/components/Card/Card.context.js +8 -0
- package/esm/components/Card/Card.context.js.map +1 -0
- package/esm/components/Card/Card.js +80 -0
- package/esm/components/Card/Card.js.map +1 -0
- package/esm/components/Card/Card.module.css.js +4 -0
- package/esm/components/Card/Card.module.css.js.map +1 -0
- package/esm/components/Card/CardSection/CardSection.js +71 -0
- package/esm/components/Card/CardSection/CardSection.js.map +1 -0
- package/esm/components/Collapse/Collapse.js +1 -1
- package/esm/components/FileInput/FileInput.js +148 -0
- package/esm/components/FileInput/FileInput.js.map +1 -0
- package/esm/components/Grid/GridVariables.js.map +1 -1
- package/esm/components/Group/Group.js +15 -4
- package/esm/components/Group/Group.js.map +1 -1
- package/esm/components/Image/Image.js +121 -0
- package/esm/components/Image/Image.js.map +1 -0
- package/esm/components/Image/Image.module.css.js +4 -0
- package/esm/components/Image/Image.module.css.js.map +1 -0
- package/esm/components/Indicator/Indicator.js +126 -0
- package/esm/components/Indicator/Indicator.js.map +1 -0
- package/esm/components/Indicator/Indicator.module.css.js +4 -0
- package/esm/components/Indicator/Indicator.module.css.js.map +1 -0
- package/esm/components/Indicator/get-position-variables/get-position-variables.js +42 -0
- package/esm/components/Indicator/get-position-variables/get-position-variables.js.map +1 -0
- package/esm/components/Input/InputLabel/InputLabel.js +1 -1
- package/esm/components/JsonInput/JsonInput.js +109 -0
- package/esm/components/JsonInput/JsonInput.js.map +1 -0
- package/esm/components/JsonInput/validate-json/validate-json.js +14 -0
- package/esm/components/JsonInput/validate-json/validate-json.js.map +1 -0
- package/esm/components/Modal/Modal.js +5 -3
- package/esm/components/Modal/Modal.js.map +1 -1
- package/esm/components/Modal/ModalRoot.js +1 -1
- package/esm/components/Modal/ModalRoot.js.map +1 -1
- package/esm/components/ModalBase/ModalBaseContent.js.map +1 -1
- package/esm/components/Overlay/Overlay.js +1 -1
- package/esm/components/Paper/Paper.js +1 -1
- package/esm/components/PasswordInput/PasswordInput.js +244 -0
- package/esm/components/PasswordInput/PasswordInput.js.map +1 -0
- package/esm/components/PasswordInput/PasswordInput.module.css.js +4 -0
- package/esm/components/PasswordInput/PasswordInput.module.css.js.map +1 -0
- package/esm/components/PasswordInput/PasswordToggleIcon.js +25 -0
- package/esm/components/PasswordInput/PasswordToggleIcon.js.map +1 -0
- package/esm/components/PinInput/PinInput.js +284 -0
- package/esm/components/PinInput/PinInput.js.map +1 -0
- package/esm/components/PinInput/PinInput.module.css.js +4 -0
- package/esm/components/PinInput/PinInput.module.css.js.map +1 -0
- package/esm/components/PinInput/create-pin-array/create-pin-array.js +16 -0
- package/esm/components/PinInput/create-pin-array/create-pin-array.js.map +1 -0
- package/esm/components/Popover/Popover.js +6 -6
- package/esm/components/Popover/Popover.js.map +1 -1
- package/esm/components/Popover/PopoverTarget/PopoverTarget.js +1 -1
- package/esm/components/ScrollArea/ScrollArea.js +2 -2
- package/esm/components/ScrollArea/ScrollAreaScrollbar/ScrollAreaScrollbarVisible.js +1 -1
- package/esm/components/Textarea/Textarea.js +64 -0
- package/esm/components/Textarea/Textarea.js.map +1 -0
- package/esm/components/Tooltip/TooltipFloating/use-floating-tooltip.js +5 -5
- package/esm/components/Tooltip/TooltipFloating/use-floating-tooltip.js.map +1 -1
- package/esm/components/Tooltip/use-tooltip.js +2 -4
- package/esm/components/Tooltip/use-tooltip.js.map +1 -1
- package/esm/core/Box/Box.js.map +1 -1
- package/esm/core/factory/create-polymorphic-component.js.map +1 -1
- package/esm/core/factory/factory.js.map +1 -1
- package/esm/core/styles-api/use-styles/use-styles.js.map +1 -1
- package/esm/core/utils/get-size/get-size.js +3 -0
- package/esm/core/utils/get-size/get-size.js.map +1 -1
- package/esm/index.css +1281 -1067
- package/esm/index.js +36 -27
- package/esm/index.js.map +1 -1
- package/esm/styles/Card.css +1 -0
- package/esm/styles/Image.css +1 -0
- package/esm/styles/Indicator.css +1 -0
- package/esm/styles/Input.css +1 -1
- package/esm/styles/Modal.css +1 -1
- package/esm/styles/PasswordInput.css +1 -0
- package/esm/styles/PinInput.css +1 -0
- package/lib/components/Accordion/Accordion.context.d.ts +1 -1
- package/lib/components/Accordion/Accordion.d.ts +1 -1
- package/lib/components/Accordion/AccordionChevron.d.ts +1 -1
- package/lib/components/Accordion/AccordionItem.context.d.ts +1 -1
- package/lib/components/AppShell/AppShell.context.d.ts +1 -1
- package/lib/components/AppShell/AppShellMediaStyles/AppShellMediaStyles.d.ts +1 -2
- package/lib/components/AppShell/AppShellMediaStyles/get-padding-value/get-padding-value.d.ts +1 -1
- package/lib/components/AppShell/AppShellMediaStyles/get-variables/get-variables.d.ts +3 -3
- package/lib/components/Avatar/AvatarPlaceholderIcon.d.ts +1 -1
- package/lib/components/Button/Button.d.ts +3 -0
- package/lib/components/Card/Card.context.d.ts +11 -0
- package/lib/components/Card/Card.d.ts +56 -0
- package/lib/components/Card/CardSection/CardSection.d.ts +35 -0
- package/lib/components/Card/index.d.ts +4 -0
- package/lib/components/Checkbox/CheckIcon.d.ts +2 -2
- package/lib/components/Chip/ChipGroup/ChipGroup.d.ts +1 -1
- package/lib/components/Chip/ChipGroup.context.d.ts +1 -1
- package/lib/components/ColorPicker/ColorPicker.context.d.ts +1 -1
- package/lib/components/ColorPicker/Saturation/Saturation.d.ts +1 -2
- package/lib/components/Combobox/Combobox.context.d.ts +1 -1
- package/lib/components/Combobox/Combobox.d.ts +1 -1
- package/lib/components/Combobox/OptionsDropdown/OptionsDropdown.d.ts +1 -1
- package/lib/components/CopyButton/CopyButton.d.ts +1 -1
- package/lib/components/Drawer/Drawer.context.d.ts +1 -1
- package/lib/components/FileInput/FileInput.d.ts +45 -0
- package/lib/components/FileInput/index.d.ts +2 -0
- package/lib/components/Grid/Grid.context.d.ts +1 -1
- package/lib/components/Grid/GridCol/GridColVariables.d.ts +1 -2
- package/lib/components/Grid/GridVariables.d.ts +1 -2
- package/lib/components/Group/Group.d.ts +1 -0
- package/lib/components/HoverCard/HoverCard.context.d.ts +1 -1
- package/lib/components/HoverCard/HoverCard.d.ts +1 -1
- package/lib/components/HoverCard/HoverCardDropdown/HoverCardDropdown.d.ts +1 -1
- package/lib/components/Image/Image.d.ts +44 -0
- package/lib/components/Image/index.d.ts +2 -0
- package/lib/components/Indicator/Indicator.d.ts +44 -0
- package/lib/components/Indicator/Indicator.types.d.ts +4 -0
- package/lib/components/Indicator/get-position-variables/get-position-variables.d.ts +3 -0
- package/lib/components/Indicator/index.d.ts +2 -0
- package/lib/components/Input/InputWrapper.context.d.ts +1 -1
- package/lib/components/Input/use-input-props.d.ts +50 -40
- package/lib/components/JsonInput/JsonInput.d.ts +30 -0
- package/lib/components/JsonInput/index.d.ts +2 -0
- package/lib/components/JsonInput/validate-json/validate-json.d.ts +1 -0
- package/lib/components/Menu/Menu.context.d.ts +1 -1
- package/lib/components/Menu/Menu.d.ts +2 -2
- package/lib/components/Menu/MenuItem/MenuItem.d.ts +1 -1
- package/lib/components/Modal/Modal.context.d.ts +1 -1
- package/lib/components/Modal/ModalRoot.d.ts +1 -1
- package/lib/components/ModalBase/ModalBase.context.d.ts +1 -1
- package/lib/components/ModalBase/ModalBaseContent.d.ts +5 -1
- package/lib/components/ModalBase/NativeScrollArea.d.ts +1 -1
- package/lib/components/NativeSelect/NativeSelectOption.d.ts +1 -2
- package/lib/components/Pagination/Pagination.context.d.ts +1 -1
- package/lib/components/Pagination/Pagination.icons.d.ts +5 -5
- package/lib/components/Pagination/PaginationItems/PaginationItems.d.ts +1 -2
- package/lib/components/PasswordInput/PasswordInput.d.ts +36 -0
- package/lib/components/PasswordInput/PasswordToggleIcon.d.ts +6 -0
- package/lib/components/PasswordInput/index.d.ts +2 -0
- package/lib/components/Pill/PillGroup.context.d.ts +1 -1
- package/lib/components/PillsInput/PillsInput.context.d.ts +1 -1
- package/lib/components/PinInput/PinInput.d.ts +66 -0
- package/lib/components/PinInput/create-pin-array/create-pin-array.d.ts +1 -0
- package/lib/components/PinInput/index.d.ts +2 -0
- package/lib/components/Popover/Popover.context.d.ts +1 -1
- package/lib/components/Popover/Popover.d.ts +1 -1
- package/lib/components/Popover/use-popover.d.ts +38 -1
- package/lib/components/Portal/OptionalPortal.d.ts +1 -2
- package/lib/components/Progress/Progress.context.d.ts +1 -1
- package/lib/components/Rating/Rating.context.d.ts +1 -1
- package/lib/components/Rating/RatingItem/RatingItem.d.ts +1 -1
- package/lib/components/Rating/StarSymbol/StarIcon.d.ts +1 -1
- package/lib/components/Rating/StarSymbol/StarSymbol.d.ts +1 -2
- package/lib/components/RingProgress/Curve/Curve.d.ts +1 -1
- package/lib/components/ScrollArea/ScrollArea.context.d.ts +1 -1
- package/lib/components/ScrollArea/ScrollAreaScrollbar/Scrollbar.context.d.ts +1 -1
- package/lib/components/SimpleGrid/SimpleGridVariables.d.ts +1 -2
- package/lib/components/Slider/Marks/Marks.d.ts +1 -1
- package/lib/components/Slider/Slider.context.d.ts +1 -1
- package/lib/components/Slider/Track/Track.d.ts +1 -1
- package/lib/components/Table/Table.context.d.ts +1 -1
- package/lib/components/Tabs/Tabs.context.d.ts +1 -1
- package/lib/components/Textarea/Textarea.d.ts +21 -0
- package/lib/components/Textarea/index.d.ts +2 -0
- package/lib/components/Tooltip/TooltipFloating/use-floating-tooltip.d.ts +3 -3
- package/lib/components/Tooltip/TooltipGroup/TooltipGroup.d.ts +1 -1
- package/lib/components/Tooltip/use-tooltip.d.ts +4 -4
- package/lib/components/Transition/Transition.d.ts +1 -1
- package/lib/components/VisuallyHidden/VisuallyHidden.d.ts +1 -1
- package/lib/components/index.d.ts +19 -11
- package/lib/core/DirectionProvider/DirectionProvider.d.ts +1 -1
- package/lib/core/InlineStyles/InlineStyles.d.ts +1 -1
- package/lib/core/MantineProvider/ColorSchemeScript/ColorSchemeScript.d.ts +1 -1
- package/lib/core/MantineProvider/MantineClasses/MantineClasses.d.ts +1 -2
- package/lib/core/MantineProvider/MantineCssVariables/MantineCssVariables.d.ts +1 -2
- package/lib/core/MantineProvider/MantineProvider.d.ts +1 -1
- package/lib/core/MantineProvider/MantineThemeProvider/MantineThemeProvider.d.ts +1 -1
- package/lib/core/factory/factory.d.ts +1 -1
- package/lib/core/styles-api/use-styles/use-styles.d.ts +1 -1
- package/lib/core/utils/create-optional-context/create-optional-context.d.ts +1 -1
- package/lib/core/utils/create-safe-context/create-safe-context.d.ts +1 -1
- package/lib/core/utils/get-size/get-size.d.ts +6 -6
- package/package.json +9 -9
package/esm/index.css
CHANGED
|
@@ -530,6 +530,182 @@ body {
|
|
|
530
530
|
--mantine-color-orange-outline-hover: rgba(253, 126, 20, 0.05);
|
|
531
531
|
}
|
|
532
532
|
|
|
533
|
+
.m-d57069b5 {
|
|
534
|
+
position: relative;
|
|
535
|
+
overflow: hidden;
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
.m-c0783ff9 {
|
|
539
|
+
scrollbar-width: none;
|
|
540
|
+
-ms-overflow-style: none;
|
|
541
|
+
-webkit-overflow-scrolling: touch;
|
|
542
|
+
width: 100%;
|
|
543
|
+
height: 100%;
|
|
544
|
+
padding-right: var(--_viewport-padding-right, 0rem);
|
|
545
|
+
padding-left: var(--_viewport-padding-left, 0rem);
|
|
546
|
+
padding-bottom: var(--_viewport-padding-bottom, 0rem);
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
.m-c0783ff9::-webkit-scrollbar {
|
|
550
|
+
display: none;
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
.m-c0783ff9[data-offset-scrollbars='xy'],
|
|
554
|
+
.m-c0783ff9[data-offset-scrollbars='y'] {
|
|
555
|
+
--_viewport-padding-right: var(--scrollarea-scrollbar-size);
|
|
556
|
+
--_viewport-padding-left: unset;
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
[dir="rtl"] .m-c0783ff9[data-offset-scrollbars='xy'], [dir="rtl"] .m-c0783ff9[data-offset-scrollbars='y'] {
|
|
560
|
+
--_viewport-padding-right: unset;
|
|
561
|
+
--_viewport-padding-left: var(--scrollarea-scrollbar-size);
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
.m-c0783ff9[data-offset-scrollbars='xy'],
|
|
565
|
+
.m-c0783ff9[data-offset-scrollbars='x'] {
|
|
566
|
+
--_viewport-padding-bottom: var(--scrollarea-scrollbar-size);
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
.m-f8f631dd {
|
|
570
|
+
min-width: 100%;
|
|
571
|
+
display: table;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.m-c44ba933 {
|
|
575
|
+
user-select: none;
|
|
576
|
+
touch-action: none;
|
|
577
|
+
box-sizing: border-box;
|
|
578
|
+
transition: background-color 150ms ease, opacity 150ms ease;
|
|
579
|
+
|
|
580
|
+
padding: calc(var(--scrollarea-scrollbar-size) / 5);
|
|
581
|
+
display: var(--_scrollbar-display, flex);
|
|
582
|
+
background-color: var(--_scrollbar-bg, transparent);
|
|
583
|
+
width: var(--_scrollbar-width);
|
|
584
|
+
height: var(--_scrollbar-height);
|
|
585
|
+
flex-direction: var(--_scrollbar-direction, row);
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
.m-c44ba933 > .m-d8b5e363 {
|
|
589
|
+
background-color: var(--_thumb-bg);
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
@media (hover: hover) {
|
|
593
|
+
[data-mantine-color-scheme='light'] .m-c44ba933:hover {
|
|
594
|
+
--_scrollbar-bg: var(--mantine-color-gray-0);
|
|
595
|
+
--_thumb-bg: rgba(0, 0, 0, 0.5);
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
[data-mantine-color-scheme='dark'] .m-c44ba933:hover {
|
|
599
|
+
--_scrollbar-bg: var(--mantine-color-dark-8);
|
|
600
|
+
--_thumb-bg: rgba(255, 255, 255, 0.5);
|
|
601
|
+
}
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
@media (hover: none) {
|
|
605
|
+
[data-mantine-color-scheme='light'] .m-c44ba933:active {
|
|
606
|
+
--_scrollbar-bg: var(--mantine-color-gray-0);
|
|
607
|
+
--_thumb-bg: rgba(0, 0, 0, 0.5);
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
[data-mantine-color-scheme='dark'] .m-c44ba933:active {
|
|
611
|
+
--_scrollbar-bg: var(--mantine-color-dark-8);
|
|
612
|
+
--_thumb-bg: rgba(255, 255, 255, 0.5);
|
|
613
|
+
}
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
.m-c44ba933[data-hidden],
|
|
617
|
+
.m-c44ba933[data-state='hidden'] {
|
|
618
|
+
--_scrollbar-display: none;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
.m-c44ba933[data-orientation='vertical'] {
|
|
622
|
+
--_scrollbar-width: var(--scrollarea-scrollbar-size);
|
|
623
|
+
|
|
624
|
+
top: 0;
|
|
625
|
+
bottom: var(--sa-corner-width);
|
|
626
|
+
right: 0;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
[dir="rtl"] .m-c44ba933[data-orientation='vertical'] {
|
|
630
|
+
right: unset;
|
|
631
|
+
left: 0;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.m-c44ba933[data-orientation='horizontal'] {
|
|
635
|
+
--_scrollbar-height: var(--scrollarea-scrollbar-size);
|
|
636
|
+
--_scrollbar-direction: column;
|
|
637
|
+
|
|
638
|
+
bottom: 0;
|
|
639
|
+
left: 0;
|
|
640
|
+
right: var(--sa-corner-height);
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
[dir="rtl"] .m-c44ba933[data-orientation='horizontal'] {
|
|
644
|
+
right: 0;
|
|
645
|
+
left: var(--sa-corner-height);
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
.m-d8b5e363 {
|
|
649
|
+
flex: 1 1;
|
|
650
|
+
border-radius: var(--scrollarea-scrollbar-size);
|
|
651
|
+
position: relative;
|
|
652
|
+
transition: background-color 150ms ease;
|
|
653
|
+
overflow: hidden;
|
|
654
|
+
background-color: var(--_thumb-bg);
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.m-d8b5e363::before {
|
|
658
|
+
content: '""';
|
|
659
|
+
position: absolute;
|
|
660
|
+
top: 50%;
|
|
661
|
+
left: 50%;
|
|
662
|
+
transform: translate(-50%, -50%);
|
|
663
|
+
width: 100%;
|
|
664
|
+
height: 100%;
|
|
665
|
+
min-width: calc(2.75rem * var(--mantine-scale));
|
|
666
|
+
min-height: calc(2.75rem * var(--mantine-scale));
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
[data-mantine-color-scheme='light'] .m-d8b5e363 {
|
|
670
|
+
--_thumb-bg: rgba(0, 0, 0, 0.4);
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
[data-mantine-color-scheme='dark'] .m-d8b5e363 {
|
|
674
|
+
--_thumb-bg: rgba(255, 255, 255, 0.4);
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.m-21657268 {
|
|
678
|
+
position: absolute;
|
|
679
|
+
opacity: var(--_corner-opacity, 0);
|
|
680
|
+
transition: opacity 150ms ease;
|
|
681
|
+
background-color: var(--_corner-bg);
|
|
682
|
+
display: var(--_corner-display, block);
|
|
683
|
+
right: 0;
|
|
684
|
+
bottom: 0;
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
[dir="rtl"] .m-21657268 {
|
|
688
|
+
right: unset;
|
|
689
|
+
left: 0;
|
|
690
|
+
bottom: 0;
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
[data-mantine-color-scheme='light'] .m-21657268 {
|
|
694
|
+
--_corner-bg: var(--mantine-color-gray-0);
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
[data-mantine-color-scheme='dark'] .m-21657268 {
|
|
698
|
+
--_corner-bg: var(--mantine-color-dark-8);
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
.m-21657268[data-hovered] {
|
|
702
|
+
--_corner-opacity: 1;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.m-21657268[data-hidden] {
|
|
706
|
+
--_corner-display: none;
|
|
707
|
+
}
|
|
708
|
+
|
|
533
709
|
.m-87cf2631 {
|
|
534
710
|
background-color: transparent;
|
|
535
711
|
cursor: pointer;
|
|
@@ -556,6 +732,30 @@ body {
|
|
|
556
732
|
white-space: nowrap;
|
|
557
733
|
}
|
|
558
734
|
|
|
735
|
+
.m-1b7284a3 {
|
|
736
|
+
outline: 0;
|
|
737
|
+
-webkit-tap-highlight-color: transparent;
|
|
738
|
+
display: block;
|
|
739
|
+
touch-action: manipulation;
|
|
740
|
+
text-decoration: none;
|
|
741
|
+
border-radius: var(--paper-radius);
|
|
742
|
+
box-shadow: var(--paper-shadow);
|
|
743
|
+
background-color: var(--mantine-color-body);
|
|
744
|
+
border: var(--_paper-border-width, 0) solid var(--_paper-border-color, transparent);
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
.m-1b7284a3[data-with-border] {
|
|
748
|
+
--_paper-border-width: 1px;
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
[data-mantine-color-scheme='light'] .m-1b7284a3[data-with-border] {
|
|
752
|
+
--_paper-border-color: var(--mantine-color-gray-3);
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
[data-mantine-color-scheme='dark'] .m-1b7284a3[data-with-border] {
|
|
756
|
+
--_paper-border-color: var(--mantine-color-dark-4);
|
|
757
|
+
}
|
|
758
|
+
|
|
559
759
|
.m-38a85659 {
|
|
560
760
|
position: absolute;
|
|
561
761
|
background-color: var(--_popover-bg);
|
|
@@ -585,266 +785,44 @@ body {
|
|
|
585
785
|
z-index: 1;
|
|
586
786
|
}
|
|
587
787
|
|
|
588
|
-
.m-
|
|
589
|
-
|
|
788
|
+
.m-5ae2e3c {
|
|
789
|
+
--loader-size-xs: calc(1.125rem * var(--mantine-scale));
|
|
790
|
+
--loader-size-sm: calc(1.375rem * var(--mantine-scale));
|
|
791
|
+
--loader-size-md: calc(2.25rem * var(--mantine-scale));
|
|
792
|
+
--loader-size-lg: calc(2.75rem * var(--mantine-scale));
|
|
793
|
+
--loader-size-xl: calc(3.625rem * var(--mantine-scale));
|
|
590
794
|
}
|
|
591
795
|
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
796
|
+
/* ----- Bars loader ----- */
|
|
797
|
+
@keyframes m-5d2b3b9d {
|
|
798
|
+
0% {
|
|
799
|
+
transform: scale(0.6);
|
|
800
|
+
opacity: 0;
|
|
801
|
+
}
|
|
596
802
|
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
803
|
+
50%,
|
|
804
|
+
100% {
|
|
805
|
+
transform: scale(1);
|
|
806
|
+
}
|
|
600
807
|
}
|
|
601
808
|
|
|
602
|
-
.m-
|
|
603
|
-
|
|
809
|
+
.m-7a2bd4cd {
|
|
810
|
+
position: relative;
|
|
811
|
+
width: var(--loader-size);
|
|
812
|
+
height: var(--loader-size);
|
|
604
813
|
display: flex;
|
|
605
|
-
|
|
606
|
-
flex-direction: var(--_control-flex-direction, row-reverse);
|
|
607
|
-
padding-right: var(--_control-padding-right, var(--mantine-spacing-md));
|
|
608
|
-
padding-left: var(--_control-padding-left, var(--mantine-spacing-md));
|
|
609
|
-
text-align: left;
|
|
610
|
-
color: var(--_control-color);
|
|
611
|
-
opacity: var(--_control-opacity, 1);
|
|
612
|
-
cursor: var(--_control-cursor, pointer);
|
|
613
|
-
background-color: var(--_control-background-color, transparent);
|
|
814
|
+
gap: calc(var(--loader-size) / 5);
|
|
614
815
|
}
|
|
615
816
|
|
|
616
|
-
.m-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
[data-mantine-color-scheme='light'] .m-4ba585b8 {
|
|
626
|
-
--_control-color: var(--mantine-color-black);
|
|
627
|
-
}
|
|
628
|
-
|
|
629
|
-
[data-mantine-color-scheme='dark'] .m-4ba585b8 {
|
|
630
|
-
--_control-color: var(--mantine-color-dark-0);
|
|
631
|
-
}
|
|
632
|
-
|
|
633
|
-
.m-4ba585b8:disabled,
|
|
634
|
-
.m-4ba585b8[data-disabled] {
|
|
635
|
-
--_control-opacity: 0.4;
|
|
636
|
-
--_control-cursor: not-allowed;
|
|
637
|
-
}
|
|
638
|
-
|
|
639
|
-
@media (hover: hover) {
|
|
640
|
-
[data-mantine-color-scheme='light'] .m-6939a5e9:not(:disabled, [data-disabled]):hover, [data-mantine-color-scheme='light'] .m-4271d21b:not(:disabled, [data-disabled]):hover {
|
|
641
|
-
--_control-background-color: var(--mantine-color-gray-0);
|
|
642
|
-
}
|
|
643
|
-
|
|
644
|
-
[data-mantine-color-scheme='dark'] .m-6939a5e9:not(:disabled, [data-disabled]):hover, [data-mantine-color-scheme='dark'] .m-4271d21b:not(:disabled, [data-disabled]):hover {
|
|
645
|
-
--_control-background-color: var(--mantine-color-dark-6);
|
|
646
|
-
}
|
|
647
|
-
}
|
|
648
|
-
|
|
649
|
-
@media (hover: none) {
|
|
650
|
-
[data-mantine-color-scheme='light'] .m-6939a5e9:not(:disabled, [data-disabled]):active, [data-mantine-color-scheme='light'] .m-4271d21b:not(:disabled, [data-disabled]):active {
|
|
651
|
-
--_control-background-color: var(--mantine-color-gray-0);
|
|
652
|
-
}
|
|
653
|
-
|
|
654
|
-
[data-mantine-color-scheme='dark'] .m-6939a5e9:not(:disabled, [data-disabled]):active, [data-mantine-color-scheme='dark'] .m-4271d21b:not(:disabled, [data-disabled]):active {
|
|
655
|
-
--_control-background-color: var(--mantine-color-dark-6);
|
|
656
|
-
}
|
|
657
|
-
}
|
|
658
|
-
|
|
659
|
-
.m-df3ffa0f {
|
|
660
|
-
color: inherit;
|
|
661
|
-
font-weight: 400;
|
|
662
|
-
flex: 1 1;
|
|
663
|
-
overflow: hidden;
|
|
664
|
-
text-overflow: ellipsis;
|
|
665
|
-
padding-top: var(--mantine-spacing-sm);
|
|
666
|
-
padding-bottom: var(--mantine-spacing-sm);
|
|
667
|
-
}
|
|
668
|
-
|
|
669
|
-
.m-3f35ae96 {
|
|
670
|
-
display: flex;
|
|
671
|
-
align-items: center;
|
|
672
|
-
justify-content: flex-start;
|
|
673
|
-
transition: transform var(--accordion-transition-duration) ease;
|
|
674
|
-
margin-right: var(--_chevron-margin-right);
|
|
675
|
-
margin-left: var(--_chevron-margin-left);
|
|
676
|
-
width: var(--accordion-chevron-size);
|
|
677
|
-
min-width: var(--accordion-chevron-size);
|
|
678
|
-
transform: var(--_chevron-transform, rotate(0deg));
|
|
679
|
-
}
|
|
680
|
-
|
|
681
|
-
.m-3f35ae96[data-rotate] {
|
|
682
|
-
--_chevron-transform: rotate(180deg);
|
|
683
|
-
}
|
|
684
|
-
|
|
685
|
-
.m-3f35ae96[data-position='left'] {
|
|
686
|
-
--_chevron-margin-right: var(--mantine-spacing-md);
|
|
687
|
-
--_chevron-margin-left: var(--mantine-spacing-md);
|
|
688
|
-
}
|
|
689
|
-
|
|
690
|
-
.m-3f35ae96[data-position='right'] {
|
|
691
|
-
--_chevron-margin-left: 0;
|
|
692
|
-
}
|
|
693
|
-
|
|
694
|
-
[dir="rtl"] .m-3f35ae96[data-position='left'] {
|
|
695
|
-
--_chevron-margin-right: 0;
|
|
696
|
-
--_chevron-margin-left: var(--mantine-spacing-md);
|
|
697
|
-
}
|
|
698
|
-
|
|
699
|
-
[dir="rtl"] .m-3f35ae96[data-position='right'] {
|
|
700
|
-
--_chevron-margin-right: var(--mantine-spacing-md);
|
|
701
|
-
--_chevron-margin-left: 0;
|
|
702
|
-
}
|
|
703
|
-
|
|
704
|
-
.m-9bd771fe {
|
|
705
|
-
display: flex;
|
|
706
|
-
align-items: center;
|
|
707
|
-
justify-content: center;
|
|
708
|
-
margin-right: var(--_icon-margin-right, var(--mantine-spacing-sm));
|
|
709
|
-
margin-left: var(--_icon-margin-left, 0);
|
|
710
|
-
}
|
|
711
|
-
|
|
712
|
-
.m-9bd771fe[data-chevron-position='left'] {
|
|
713
|
-
--_icon-margin-right: 0;
|
|
714
|
-
--_icon-margin-left: var(--mantine-spacing-lg);
|
|
715
|
-
}
|
|
716
|
-
|
|
717
|
-
[dir="rtl"] .m-9bd771fe[data-chevron-position='left'] {
|
|
718
|
-
--_icon-margin-right: var(--mantine-spacing-lg);
|
|
719
|
-
--_icon-margin-left: 0;
|
|
720
|
-
}
|
|
721
|
-
|
|
722
|
-
[dir="rtl"] .m-9bd771fe[data-chevron-position='right'] {
|
|
723
|
-
--_icon-margin-right: 0;
|
|
724
|
-
--_icon-margin-left: var(--mantine-spacing-sm);
|
|
725
|
-
}
|
|
726
|
-
|
|
727
|
-
.m-9bd7b098 {
|
|
728
|
-
background-color: var(--_item-bg);
|
|
729
|
-
}
|
|
730
|
-
|
|
731
|
-
[data-mantine-color-scheme='light'] .m-9bd7b098 {
|
|
732
|
-
--_item-border-color: var(--mantine-color-gray-3);
|
|
733
|
-
--_item-filled-color: var(--mantine-color-gray-0);
|
|
734
|
-
}
|
|
735
|
-
|
|
736
|
-
[data-mantine-color-scheme='dark'] .m-9bd7b098 {
|
|
737
|
-
--_item-border-color: var(--mantine-color-dark-4);
|
|
738
|
-
--_item-filled-color: var(--mantine-color-dark-6);
|
|
739
|
-
}
|
|
740
|
-
|
|
741
|
-
.m-fe19b709 {
|
|
742
|
-
border-bottom: calc(0.0625rem * var(--mantine-scale)) solid var(--_item-border-color);
|
|
743
|
-
}
|
|
744
|
-
|
|
745
|
-
.m-1f921b3b {
|
|
746
|
-
border: calc(0.0625rem * var(--mantine-scale)) solid var(--_item-border-color);
|
|
747
|
-
transition: background-color 150ms ease;
|
|
748
|
-
}
|
|
749
|
-
|
|
750
|
-
.m-1f921b3b[data-active] {
|
|
751
|
-
--_item-bg: var(--_item-filled-color);
|
|
752
|
-
}
|
|
753
|
-
|
|
754
|
-
.m-1f921b3b:first-of-type {
|
|
755
|
-
border-top-left-radius: var(--accordion-radius);
|
|
756
|
-
border-top-right-radius: var(--accordion-radius);
|
|
757
|
-
}
|
|
758
|
-
|
|
759
|
-
.m-1f921b3b:first-of-type > [data-accordion-control] {
|
|
760
|
-
border-top-left-radius: var(--accordion-radius);
|
|
761
|
-
border-top-right-radius: var(--accordion-radius);
|
|
762
|
-
}
|
|
763
|
-
|
|
764
|
-
.m-1f921b3b:last-of-type {
|
|
765
|
-
border-bottom-left-radius: var(--accordion-radius);
|
|
766
|
-
border-bottom-right-radius: var(--accordion-radius);
|
|
767
|
-
}
|
|
768
|
-
|
|
769
|
-
.m-1f921b3b:last-of-type > [data-accordion-control] {
|
|
770
|
-
border-bottom-left-radius: var(--accordion-radius);
|
|
771
|
-
border-bottom-right-radius: var(--accordion-radius);
|
|
772
|
-
}
|
|
773
|
-
|
|
774
|
-
.m-1f921b3b + .m-1f921b3b {
|
|
775
|
-
border-top: 0;
|
|
776
|
-
}
|
|
777
|
-
|
|
778
|
-
.m-2cdf939a {
|
|
779
|
-
border-radius: var(--accordion-radius);
|
|
780
|
-
}
|
|
781
|
-
|
|
782
|
-
.m-2cdf939a[data-active] {
|
|
783
|
-
--_item-bg: var(--_item-filled-color);
|
|
784
|
-
}
|
|
785
|
-
|
|
786
|
-
.m-9f59b069 {
|
|
787
|
-
--_item-bg: var(--_item-filled-color);
|
|
788
|
-
|
|
789
|
-
border-radius: var(--accordion-radius);
|
|
790
|
-
border: calc(0.0625rem * var(--mantine-scale)) solid var(--__item-border-color, transparent);
|
|
791
|
-
transition: background-color 150ms ease;
|
|
792
|
-
}
|
|
793
|
-
|
|
794
|
-
.m-9f59b069[data-active] {
|
|
795
|
-
--__item-border-color: var(--_item-border-color);
|
|
796
|
-
}
|
|
797
|
-
|
|
798
|
-
[data-mantine-color-scheme='light'] .m-9f59b069[data-active] {
|
|
799
|
-
--_item-bg: var(--mantine-color-white);
|
|
800
|
-
}
|
|
801
|
-
|
|
802
|
-
[data-mantine-color-scheme='dark'] .m-9f59b069[data-active] {
|
|
803
|
-
--_item-bg: var(--mantine-color-dark-7);
|
|
804
|
-
}
|
|
805
|
-
|
|
806
|
-
.m-9f59b069 + .m-9f59b069 {
|
|
807
|
-
margin-top: var(--mantine-spacing-md);
|
|
808
|
-
}
|
|
809
|
-
|
|
810
|
-
.m-5ae2e3c {
|
|
811
|
-
--loader-size-xs: calc(1.125rem * var(--mantine-scale));
|
|
812
|
-
--loader-size-sm: calc(1.375rem * var(--mantine-scale));
|
|
813
|
-
--loader-size-md: calc(2.25rem * var(--mantine-scale));
|
|
814
|
-
--loader-size-lg: calc(2.75rem * var(--mantine-scale));
|
|
815
|
-
--loader-size-xl: calc(3.625rem * var(--mantine-scale));
|
|
816
|
-
}
|
|
817
|
-
|
|
818
|
-
/* ----- Bars loader ----- */
|
|
819
|
-
@keyframes m-5d2b3b9d {
|
|
820
|
-
0% {
|
|
821
|
-
transform: scale(0.6);
|
|
822
|
-
opacity: 0;
|
|
823
|
-
}
|
|
824
|
-
|
|
825
|
-
50%,
|
|
826
|
-
100% {
|
|
827
|
-
transform: scale(1);
|
|
828
|
-
}
|
|
829
|
-
}
|
|
830
|
-
|
|
831
|
-
.m-7a2bd4cd {
|
|
832
|
-
position: relative;
|
|
833
|
-
width: var(--loader-size);
|
|
834
|
-
height: var(--loader-size);
|
|
835
|
-
display: flex;
|
|
836
|
-
gap: calc(var(--loader-size) / 5);
|
|
837
|
-
}
|
|
838
|
-
|
|
839
|
-
.m-870bb79 {
|
|
840
|
-
flex: 1 1;
|
|
841
|
-
background: var(--loader-color);
|
|
842
|
-
animation: m-5d2b3b9d 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
|
|
843
|
-
border-radius: calc(0.125rem * var(--mantine-scale));
|
|
844
|
-
}
|
|
845
|
-
|
|
846
|
-
.m-870bb79:nth-of-type(1) {
|
|
847
|
-
animation-delay: -240ms;
|
|
817
|
+
.m-870bb79 {
|
|
818
|
+
flex: 1 1;
|
|
819
|
+
background: var(--loader-color);
|
|
820
|
+
animation: m-5d2b3b9d 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
|
|
821
|
+
border-radius: calc(0.125rem * var(--mantine-scale));
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
.m-870bb79:nth-of-type(1) {
|
|
825
|
+
animation-delay: -240ms;
|
|
848
826
|
}
|
|
849
827
|
|
|
850
828
|
.m-870bb79:nth-of-type(2) {
|
|
@@ -1060,651 +1038,986 @@ body {
|
|
|
1060
1038
|
border-top-width: calc(var(--ai-border-width) / 2);
|
|
1061
1039
|
}
|
|
1062
1040
|
|
|
1063
|
-
.m-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1041
|
+
.m-4081bf90 {
|
|
1042
|
+
display: flex;
|
|
1043
|
+
flex-direction: row;
|
|
1044
|
+
flex-wrap: var(--group-wrap, wrap);
|
|
1045
|
+
justify-content: var(--group-justify);
|
|
1046
|
+
align-items: var(--group-align);
|
|
1047
|
+
gap: var(--group-gap);
|
|
1070
1048
|
}
|
|
1071
1049
|
|
|
1072
|
-
.m-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
position: relative;
|
|
1077
|
-
overflow: hidden;
|
|
1078
|
-
border: var(--alert-bd);
|
|
1079
|
-
color: var(--alert-color);
|
|
1080
|
-
}
|
|
1050
|
+
.m-4081bf90[data-grow] > * {
|
|
1051
|
+
flex-grow: 1;
|
|
1052
|
+
max-width: var(--group-child-width);
|
|
1053
|
+
}
|
|
1081
1054
|
|
|
1082
|
-
.m-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
.m-a5d60502 {
|
|
1091
|
-
display: flex;
|
|
1092
|
-
}
|
|
1093
|
-
|
|
1094
|
-
.m-667c2793 {
|
|
1095
|
-
flex: 1 1;
|
|
1055
|
+
.m-9814e45f {
|
|
1056
|
+
inset: 0;
|
|
1057
|
+
position: var(--_overlay-position, absolute);
|
|
1058
|
+
background: var(--overlay-bg);
|
|
1059
|
+
backdrop-filter: var(--overlay-filter);
|
|
1060
|
+
border-radius: var(--overlay-radius);
|
|
1061
|
+
z-index: var(--overlay-z-index);
|
|
1096
1062
|
}
|
|
1097
1063
|
|
|
1098
|
-
.m-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
align-items: center;
|
|
1102
|
-
justify-content: space-between;
|
|
1103
|
-
font-size: var(--mantine-font-size-sm);
|
|
1104
|
-
font-weight: 700;
|
|
1105
|
-
}
|
|
1064
|
+
.m-9814e45f[data-fixed] {
|
|
1065
|
+
--_overlay-position: fixed;
|
|
1066
|
+
}
|
|
1106
1067
|
|
|
1107
|
-
.m-
|
|
1108
|
-
|
|
1068
|
+
.m-9814e45f[data-center] {
|
|
1069
|
+
display: flex;
|
|
1070
|
+
align-items: center;
|
|
1071
|
+
justify-content: center;
|
|
1109
1072
|
}
|
|
1110
1073
|
|
|
1111
|
-
.m-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1074
|
+
.m-615af6c9 {
|
|
1075
|
+
line-height: 1;
|
|
1076
|
+
padding: 0;
|
|
1077
|
+
margin: 0;
|
|
1078
|
+
font-weight: 400;
|
|
1079
|
+
font-size: var(--mantine-font-size-md);
|
|
1115
1080
|
}
|
|
1116
1081
|
|
|
1117
|
-
.m-
|
|
1118
|
-
line-height: 1;
|
|
1119
|
-
width: calc(1.25rem * var(--mantine-scale));
|
|
1120
|
-
height: calc(1.25rem * var(--mantine-scale));
|
|
1082
|
+
.m-b5489c3c {
|
|
1121
1083
|
display: flex;
|
|
1084
|
+
justify-content: space-between;
|
|
1122
1085
|
align-items: center;
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1086
|
+
padding: var(--mb-padding);
|
|
1087
|
+
padding-right: var(--_pr, calc(var(--mb-padding) - calc(0.3125rem * var(--mantine-scale))));
|
|
1088
|
+
padding-left: var(--_pl, var(--mb-padding));
|
|
1089
|
+
position: sticky;
|
|
1090
|
+
top: 0;
|
|
1091
|
+
background-color: var(--mantine-color-body);
|
|
1092
|
+
z-index: 1000;
|
|
1126
1093
|
}
|
|
1127
1094
|
|
|
1128
|
-
.m-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
font-size: var(--mantine-font-size-sm);
|
|
1132
|
-
color: var(--_message-color, var(--__message-color));
|
|
1095
|
+
[dir="rtl"] .m-b5489c3c {
|
|
1096
|
+
--_pr: var(--mb-padding);
|
|
1097
|
+
--_pl: calc(var(--mb-padding) - calc(0.3125rem * var(--mantine-scale)));
|
|
1133
1098
|
}
|
|
1134
1099
|
|
|
1135
|
-
|
|
1136
|
-
|
|
1100
|
+
.m-60c222c7 {
|
|
1101
|
+
position: fixed;
|
|
1102
|
+
width: 100%;
|
|
1103
|
+
top: 0;
|
|
1104
|
+
bottom: 0;
|
|
1105
|
+
z-index: calc(var(--mb-z-index) + 1);
|
|
1106
|
+
pointer-events: none;
|
|
1137
1107
|
}
|
|
1138
1108
|
|
|
1139
|
-
|
|
1140
|
-
|
|
1109
|
+
.m-fd1ab0aa {
|
|
1110
|
+
pointer-events: all;
|
|
1111
|
+
box-shadow: var(--mb-shadow);
|
|
1141
1112
|
}
|
|
1142
1113
|
|
|
1143
|
-
.m-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
margin-right: calc(var(--mantine-spacing-md) * -1);
|
|
1147
|
-
margin-top: calc(var(--mantine-spacing-sm) * -0.5);
|
|
1148
|
-
color: var(--alert-color);
|
|
1114
|
+
.m-606cb269 {
|
|
1115
|
+
margin-left: var(--_close-ml, auto);
|
|
1116
|
+
margin-right: var(--_close-mr, 0);
|
|
1149
1117
|
}
|
|
1150
1118
|
|
|
1151
|
-
.m-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
font-size: var(--text-fz);
|
|
1155
|
-
line-height: var(--text-lh);
|
|
1156
|
-
font-weight: normal;
|
|
1157
|
-
margin: 0;
|
|
1158
|
-
padding: 0;
|
|
1119
|
+
[dir="rtl"] .m-606cb269 {
|
|
1120
|
+
--_close-ml: 0;
|
|
1121
|
+
--_close-mr: auto;
|
|
1159
1122
|
}
|
|
1160
1123
|
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
}
|
|
1124
|
+
.m-5df29311 {
|
|
1125
|
+
padding: var(--mb-padding);
|
|
1126
|
+
padding-top: var(--_pt, var(--mb-padding));
|
|
1127
|
+
}
|
|
1166
1128
|
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
text-align: right;
|
|
1129
|
+
.m-5df29311:not(:only-child) {
|
|
1130
|
+
--_pt: 0;
|
|
1170
1131
|
}
|
|
1171
1132
|
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1133
|
+
.m-6c018570 {
|
|
1134
|
+
position: relative;
|
|
1135
|
+
margin-top: var(--input-margin-top, 0rem);
|
|
1136
|
+
margin-bottom: var(--input-margin-bottom, 0rem);
|
|
1137
|
+
|
|
1138
|
+
--input-height-xs: calc(1.875rem * var(--mantine-scale));
|
|
1139
|
+
--input-height-sm: calc(2.25rem * var(--mantine-scale));
|
|
1140
|
+
--input-height-md: calc(2.625rem * var(--mantine-scale));
|
|
1141
|
+
--input-height-lg: calc(3.125rem * var(--mantine-scale));
|
|
1142
|
+
--input-height-xl: calc(3.75rem * var(--mantine-scale));
|
|
1143
|
+
|
|
1144
|
+
--input-padding-y-xs: calc(0.3125rem * var(--mantine-scale));
|
|
1145
|
+
--input-padding-y-sm: calc(0.375rem * var(--mantine-scale));
|
|
1146
|
+
--input-padding-y-md: calc(0.5rem * var(--mantine-scale));
|
|
1147
|
+
--input-padding-y-lg: calc(0.625rem * var(--mantine-scale));
|
|
1148
|
+
--input-padding-y-xl: calc(0.8125rem * var(--mantine-scale));
|
|
1149
|
+
|
|
1150
|
+
--_input-cursor: text;
|
|
1151
|
+
--_input-text-align: left;
|
|
1152
|
+
--_input-line-height: calc(var(--input-height) - calc(0.125rem * var(--mantine-scale)));
|
|
1153
|
+
--_input-padding: calc(var(--input-height) / 3);
|
|
1154
|
+
--_input-padding-left: var(--_input-padding);
|
|
1155
|
+
--_input-padding-right: var(--_input-padding);
|
|
1156
|
+
--_input-placeholder-color: var(--mantine-color-placeholder);
|
|
1157
|
+
--_input-color: inherit;
|
|
1158
|
+
--_input-left-section-size: var(--input-left-section-width, calc(var(--input-height) - calc(0.125rem * var(--mantine-scale))));
|
|
1159
|
+
--_input-right-section-size: var(
|
|
1160
|
+
--input-right-section-width,
|
|
1161
|
+
calc(var(--input-height) - calc(0.125rem * var(--mantine-scale)))
|
|
1162
|
+
);
|
|
1163
|
+
--_input-size: var(--input-height);
|
|
1164
|
+
|
|
1165
|
+
--_section-y: calc(0.0625rem * var(--mantine-scale));
|
|
1166
|
+
--_left-section-left: calc(0.0625rem * var(--mantine-scale));
|
|
1167
|
+
--_left-section-right: unset;
|
|
1168
|
+
--_left-section-border-radius: var(--input-radius) 0 0 var(--input-radius);
|
|
1169
|
+
|
|
1170
|
+
--_right-section-left: unset;
|
|
1171
|
+
--_right-section-right: calc(0.0625rem * var(--mantine-scale));
|
|
1172
|
+
--_right-section-border-radius: 0 var(--input-radius) var(--input-radius) 0;
|
|
1175
1173
|
}
|
|
1176
1174
|
|
|
1177
|
-
.m-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
-
|
|
1181
|
-
-
|
|
1175
|
+
.m-6c018570[data-variant='unstyled'] {
|
|
1176
|
+
--input-padding: 0;
|
|
1177
|
+
--input-padding-y: 0;
|
|
1178
|
+
--_input-padding-left: 0;
|
|
1179
|
+
--_input-padding-right: 0;
|
|
1182
1180
|
}
|
|
1183
1181
|
|
|
1184
|
-
.m-
|
|
1185
|
-
|
|
1186
|
-
text-overflow: ellipsis;
|
|
1187
|
-
display: -webkit-box;
|
|
1188
|
-
-webkit-line-clamp: var(--text-line-clamp);
|
|
1189
|
-
-webkit-box-orient: vertical;
|
|
1182
|
+
.m-6c018570[data-pointer] {
|
|
1183
|
+
--_input-cursor: pointer;
|
|
1190
1184
|
}
|
|
1191
1185
|
|
|
1192
|
-
.m-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
font-size: inherit;
|
|
1186
|
+
.m-6c018570[data-multiline] {
|
|
1187
|
+
--_input-size: auto;
|
|
1188
|
+
--_input-line-height: var(--mantine-line-height);
|
|
1196
1189
|
}
|
|
1197
1190
|
|
|
1198
|
-
.m-
|
|
1199
|
-
--
|
|
1191
|
+
.m-6c018570[data-with-left-section] {
|
|
1192
|
+
--_input-padding-left: var(--_input-left-section-size);
|
|
1200
1193
|
}
|
|
1201
1194
|
|
|
1202
|
-
.m-
|
|
1203
|
-
|
|
1204
|
-
text-decoration: var(--_text-decoration, none);
|
|
1205
|
-
appearance: none;
|
|
1206
|
-
border: none;
|
|
1207
|
-
display: inline;
|
|
1208
|
-
padding: 0;
|
|
1209
|
-
margin: 0;
|
|
1210
|
-
background-color: transparent;
|
|
1211
|
-
cursor: pointer;
|
|
1195
|
+
[dir="rtl"] .m-6c018570[data-with-left-section] {
|
|
1196
|
+
--_input-padding-right: var(--_input-left-section-size);
|
|
1212
1197
|
}
|
|
1213
1198
|
|
|
1214
|
-
|
|
1199
|
+
[dir="rtl"] .m-6c018570[data-with-left-section]:not([data-with-right-section]) {
|
|
1200
|
+
--_input-padding-left: var(--_input-padding);
|
|
1201
|
+
}
|
|
1215
1202
|
|
|
1216
|
-
.m-
|
|
1217
|
-
|
|
1203
|
+
.m-6c018570[data-with-right-section] {
|
|
1204
|
+
--_input-padding-right: var(--_input-right-section-size);
|
|
1218
1205
|
}
|
|
1219
|
-
}
|
|
1220
|
-
|
|
1221
|
-
@media (hover: none) {
|
|
1222
1206
|
|
|
1223
|
-
.m-
|
|
1224
|
-
--
|
|
1225
|
-
}
|
|
1207
|
+
[dir="rtl"] .m-6c018570[data-with-right-section] {
|
|
1208
|
+
--_input-padding-left: var(--_input-right-section-size);
|
|
1226
1209
|
}
|
|
1227
1210
|
|
|
1228
|
-
.m-
|
|
1229
|
-
|
|
1230
|
-
|
|
1211
|
+
[dir="rtl"] .m-6c018570[data-with-right-section]:not([data-with-left-section]) {
|
|
1212
|
+
--_input-padding-right: var(--_input-padding);
|
|
1213
|
+
}
|
|
1231
1214
|
|
|
1232
|
-
|
|
1233
|
-
--
|
|
1234
|
-
|
|
1235
|
-
.m-89ab340[data-disabled] {
|
|
1236
|
-
--app-shell-header-offset: 0px !important;
|
|
1237
|
-
--app-shell-navbar-offset: 0px !important;
|
|
1238
|
-
}
|
|
1239
|
-
[data-mantine-color-scheme='light'] .m-89ab340 {
|
|
1240
|
-
--_app-shell-border-color: var(--mantine-color-gray-3);
|
|
1241
|
-
}
|
|
1242
|
-
[data-mantine-color-scheme='dark'] .m-89ab340 {
|
|
1243
|
-
--_app-shell-border-color: var(--mantine-color-dark-4);
|
|
1215
|
+
[data-mantine-color-scheme='light'] .m-6c018570 {
|
|
1216
|
+
--_input-disabled-bg: var(--mantine-color-gray-1);
|
|
1217
|
+
--_input-disabled-color: var(--mantine-color-gray-6);
|
|
1244
1218
|
}
|
|
1245
1219
|
|
|
1246
|
-
.m-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
transition-duration: var(--app-shell-transition-duration);
|
|
1252
|
-
transition-timing-function: var(--app-shell-transition-timing-function);
|
|
1253
|
-
}
|
|
1220
|
+
[data-mantine-color-scheme='light'] .m-6c018570[data-variant='default'] {
|
|
1221
|
+
--_input-bd: var(--mantine-color-gray-4);
|
|
1222
|
+
--_input-bg: var(--mantine-color-white);
|
|
1223
|
+
--_input-bd-focus: var(--mantine-color-primary);
|
|
1224
|
+
}
|
|
1254
1225
|
|
|
1255
|
-
.m-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
top: var(--_section-top, var(--app-shell-header-offset, 0px));
|
|
1261
|
-
height: var(
|
|
1262
|
-
--_section-height,
|
|
1263
|
-
calc(100dvh - var(--app-shell-header-offset, 0px) - var(--app-shell-footer-offset, 0px))
|
|
1264
|
-
);
|
|
1265
|
-
background-color: var(--mantine-color-body);
|
|
1266
|
-
transition-property: transform, top, height;
|
|
1267
|
-
}
|
|
1226
|
+
[data-mantine-color-scheme='light'] .m-6c018570[data-variant='filled'] {
|
|
1227
|
+
--_input-bd: transparent;
|
|
1228
|
+
--_input-bg: var(--mantine-color-gray-1);
|
|
1229
|
+
--_input-bd-focus: var(--mantine-color-primary);
|
|
1230
|
+
}
|
|
1268
1231
|
|
|
1269
|
-
[data-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1232
|
+
[data-mantine-color-scheme='light'] .m-6c018570[data-variant='unstyled'] {
|
|
1233
|
+
--_input-bd: transparent;
|
|
1234
|
+
--_input-bg: transparent;
|
|
1235
|
+
--_input-bd-focus: transparent;
|
|
1236
|
+
}
|
|
1273
1237
|
|
|
1274
|
-
.m-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
width: var(--app-shell-navbar-width);
|
|
1278
|
-
border-right: var(--_navbar-border-right);
|
|
1279
|
-
border-left: var(--_navbar-border-left);
|
|
1280
|
-
transition-property: transform, top, height;
|
|
1281
|
-
transform: var(--_navbar-transform, var(--app-shell-navbar-transform));
|
|
1282
|
-
z-index: var(--app-shell-navbar-z-index);
|
|
1238
|
+
[data-mantine-color-scheme='dark'] .m-6c018570 {
|
|
1239
|
+
--_input-disabled-bg: var(--mantine-color-dark-6);
|
|
1240
|
+
--_input-disabled-color: var(--mantine-color-dark-2);
|
|
1283
1241
|
}
|
|
1284
1242
|
|
|
1285
|
-
.m-
|
|
1286
|
-
|
|
1287
|
-
|
|
1243
|
+
[data-mantine-color-scheme='dark'] .m-6c018570[data-variant='default'] {
|
|
1244
|
+
--_input-bd: var(--mantine-color-dark-4);
|
|
1245
|
+
--_input-bg: var(--mantine-color-dark-6);
|
|
1246
|
+
--_input-bd-focus: var(--mantine-color-primary);
|
|
1247
|
+
}
|
|
1288
1248
|
|
|
1289
|
-
[
|
|
1290
|
-
--
|
|
1291
|
-
--
|
|
1292
|
-
|
|
1249
|
+
[data-mantine-color-scheme='dark'] .m-6c018570[data-variant='filled'] {
|
|
1250
|
+
--_input-bd: transparent;
|
|
1251
|
+
--_input-bg: var(--mantine-color-dark-5);
|
|
1252
|
+
--_input-bd-focus: var(--mantine-color-primary);
|
|
1253
|
+
}
|
|
1293
1254
|
|
|
1294
|
-
[
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
}
|
|
1255
|
+
[data-mantine-color-scheme='dark'] .m-6c018570[data-variant='unstyled'] {
|
|
1256
|
+
--_input-bd: transparent;
|
|
1257
|
+
--_input-bg: transparent;
|
|
1258
|
+
--_input-bd-focus: transparent;
|
|
1259
|
+
}
|
|
1299
1260
|
|
|
1300
|
-
.m-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
width: var(--app-shell-aside-width);
|
|
1304
|
-
border-right: var(--_aside-border-right);
|
|
1305
|
-
border-left: var(--_aside-border-left);
|
|
1306
|
-
transform: var(--_aside-transform, var(--app-shell-aside-transform));
|
|
1307
|
-
z-index: var(--app-shell-aside-z-index);
|
|
1308
|
-
}
|
|
1261
|
+
[data-mantine-color-scheme] .m-6c018570[data-error]:not([data-variant='unstyled']) {
|
|
1262
|
+
--_input-bd: var(--mantine-color-error);
|
|
1263
|
+
}
|
|
1309
1264
|
|
|
1310
|
-
.m-
|
|
1311
|
-
--_aside-border-left: calc(0.0625rem * var(--mantine-scale)) solid var(--_app-shell-border-color);
|
|
1312
|
-
}
|
|
1265
|
+
[data-mantine-color-scheme] .m-6c018570[data-error] {
|
|
1313
1266
|
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1267
|
+
--_input-color: var(--mantine-color-error);
|
|
1268
|
+
--_input-placeholder-color: var(--mantine-color-error);
|
|
1269
|
+
--_input-section-color: var(--mantine-color-error);
|
|
1317
1270
|
}
|
|
1318
1271
|
|
|
1319
|
-
[dir="rtl"] .m-
|
|
1320
|
-
--
|
|
1321
|
-
--
|
|
1322
|
-
--
|
|
1272
|
+
[dir="rtl"] .m-6c018570 {
|
|
1273
|
+
--_input-text-align: right;
|
|
1274
|
+
--_left-section-left: unset;
|
|
1275
|
+
--_left-section-right: calc(0.0625rem * var(--mantine-scale));
|
|
1276
|
+
--_left-section-border-radius: 0 var(--input-radius) var(--input-radius) 0;
|
|
1277
|
+
--_right-section-left: calc(0.0625rem * var(--mantine-scale));
|
|
1278
|
+
--_right-section-right: unset;
|
|
1279
|
+
--_right-section-border-radius: var(--input-radius) 0 0 var(--input-radius);
|
|
1323
1280
|
}
|
|
1324
1281
|
|
|
1325
|
-
.m-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
calc(var(--app-shell-aside-offset, 0px) + var(--app-shell-padding))
|
|
1333
|
-
);
|
|
1334
|
-
padding-top: calc(var(--app-shell-header-offset, 0px) + var(--app-shell-padding));
|
|
1335
|
-
padding-bottom: calc(var(--app-shell-footer-offset, 0px) + var(--app-shell-padding));
|
|
1336
|
-
min-height: calc(
|
|
1337
|
-
100dvh - var(--app-shell-header-offset, 0px) - var(--app-shell-footer-offset, 0px)
|
|
1338
|
-
);
|
|
1339
|
-
transition-property: padding;
|
|
1340
|
-
}
|
|
1282
|
+
.m-8fb7ebe7 {
|
|
1283
|
+
-webkit-tap-highlight-color: transparent;
|
|
1284
|
+
appearance: none;
|
|
1285
|
+
resize: none;
|
|
1286
|
+
display: block;
|
|
1287
|
+
width: 100%;
|
|
1288
|
+
transition: border-color 100ms ease;
|
|
1341
1289
|
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1290
|
+
text-align: var(--_input-text-align);
|
|
1291
|
+
color: var(--_input-color);
|
|
1292
|
+
border: calc(0.0625rem * var(--mantine-scale)) solid var(--_input-bd);
|
|
1293
|
+
background-color: var(--_input-bg);
|
|
1294
|
+
font-family: var(--_input-font-family, var(--mantine-font-family));
|
|
1295
|
+
height: var(--_input-size);
|
|
1296
|
+
min-height: var(--input-height);
|
|
1297
|
+
line-height: var(--_input-line-height);
|
|
1298
|
+
font-size: var(--_input-fz, var(--input-fz));
|
|
1299
|
+
border-radius: var(--input-radius);
|
|
1300
|
+
padding-left: var(--_input-padding-left);
|
|
1301
|
+
padding-right: var(--_input-padding-right);
|
|
1302
|
+
padding-top: var(--input-padding-y, 0rem);
|
|
1303
|
+
padding-bottom: var(--input-padding-y, 0rem);
|
|
1304
|
+
cursor: var(--_input-cursor);
|
|
1305
|
+
overflow: var(--_input-overflow);
|
|
1345
1306
|
}
|
|
1346
1307
|
|
|
1347
|
-
|
|
1348
|
-
.m-3840c879 {
|
|
1349
|
-
position: fixed;
|
|
1350
|
-
left: var(--_section-left, 0px);
|
|
1351
|
-
right: var(--_section-right, 0px);
|
|
1352
|
-
transition-property: transform, left, right;
|
|
1353
|
-
background-color: var(--mantine-color-body);
|
|
1354
|
-
}
|
|
1308
|
+
/* Used as data attribute in Textarea component, does not have associated prop on the Input component */
|
|
1355
1309
|
|
|
1356
|
-
|
|
1357
|
-
--
|
|
1310
|
+
.m-8fb7ebe7[data-no-overflow] {
|
|
1311
|
+
--_input-overflow: hidden;
|
|
1358
1312
|
}
|
|
1359
1313
|
|
|
1360
|
-
|
|
1361
|
-
--_section-right: var(--app-shell-navbar-offset, 0px);
|
|
1362
|
-
--_section-left: 0px;
|
|
1363
|
-
}
|
|
1314
|
+
/* Used as data attribute in JsonInput component, does not have associated prop on the Input component */
|
|
1364
1315
|
|
|
1365
|
-
.m-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
border-bottom: var(--_header-border-bottom);
|
|
1370
|
-
transform: var(--app-shell-header-transform);
|
|
1371
|
-
z-index: var(--app-shell-header-z-index);
|
|
1372
|
-
}
|
|
1316
|
+
.m-8fb7ebe7[data-monospace] {
|
|
1317
|
+
--_input-font-family: var(--mantine-font-family-monospace);
|
|
1318
|
+
--_input-fz: calc(var(--input-fz) - calc(0.125rem * var(--mantine-scale)));
|
|
1319
|
+
}
|
|
1373
1320
|
|
|
1374
|
-
.m-
|
|
1375
|
-
|
|
1321
|
+
.m-8fb7ebe7:focus,
|
|
1322
|
+
.m-8fb7ebe7:focus-within {
|
|
1323
|
+
outline: none;
|
|
1324
|
+
border-color: var(--_input-bd-focus);
|
|
1376
1325
|
}
|
|
1377
1326
|
|
|
1378
|
-
.m-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
transform: var(--app-shell-footer-transform);
|
|
1383
|
-
z-index: var(--app-shell-footer-z-index);
|
|
1384
|
-
}
|
|
1327
|
+
.m-8fb7ebe7::placeholder {
|
|
1328
|
+
color: var(--_input-placeholder-color);
|
|
1329
|
+
opacity: 1;
|
|
1330
|
+
}
|
|
1385
1331
|
|
|
1386
|
-
.m-
|
|
1387
|
-
|
|
1332
|
+
.m-8fb7ebe7::-webkit-inner-spin-button,
|
|
1333
|
+
.m-8fb7ebe7::-webkit-outer-spin-button,
|
|
1334
|
+
.m-8fb7ebe7::-webkit-search-decoration,
|
|
1335
|
+
.m-8fb7ebe7::-webkit-search-cancel-button,
|
|
1336
|
+
.m-8fb7ebe7::-webkit-search-results-button,
|
|
1337
|
+
.m-8fb7ebe7::-webkit-search-results-decoration {
|
|
1338
|
+
appearance: none;
|
|
1388
1339
|
}
|
|
1389
1340
|
|
|
1390
|
-
.m-
|
|
1391
|
-
|
|
1392
|
-
}
|
|
1341
|
+
.m-8fb7ebe7[type='number'] {
|
|
1342
|
+
-moz-appearance: textfield;
|
|
1343
|
+
}
|
|
1393
1344
|
|
|
1394
|
-
.m-
|
|
1395
|
-
|
|
1345
|
+
.m-8fb7ebe7:has(input:disabled),
|
|
1346
|
+
.m-8fb7ebe7:disabled,
|
|
1347
|
+
.m-8fb7ebe7[data-disabled] {
|
|
1348
|
+
cursor: not-allowed;
|
|
1349
|
+
opacity: 0.6;
|
|
1350
|
+
background-color: var(--_input-disabled-bg);
|
|
1351
|
+
color: var(--_input-disabled-color);
|
|
1396
1352
|
}
|
|
1397
1353
|
|
|
1398
|
-
.m-
|
|
1399
|
-
|
|
1400
|
-
|
|
1354
|
+
.m-82577fc2 {
|
|
1355
|
+
pointer-events: var(--_section-pointer-events);
|
|
1356
|
+
position: absolute;
|
|
1357
|
+
z-index: 1;
|
|
1358
|
+
left: var(--_section-left);
|
|
1359
|
+
right: var(--_section-right);
|
|
1360
|
+
bottom: var(--_section-y);
|
|
1361
|
+
top: var(--_section-y);
|
|
1362
|
+
display: flex;
|
|
1363
|
+
align-items: center;
|
|
1364
|
+
justify-content: center;
|
|
1365
|
+
width: var(--_section-size);
|
|
1366
|
+
border-radius: var(--_section-border-radius);
|
|
1367
|
+
color: var(--mantine-color-placeholder);
|
|
1401
1368
|
}
|
|
1402
1369
|
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1370
|
+
.m-82577fc2[data-position='right'] {
|
|
1371
|
+
--_section-pointer-events: var(--input-right-section-pointer-events);
|
|
1372
|
+
--_section-left: var(--_right-section-left);
|
|
1373
|
+
--_section-right: var(--_right-section-right);
|
|
1374
|
+
--_section-size: var(--_input-right-section-size);
|
|
1375
|
+
--_section-border-radius: var(--_right-section-border-radius);
|
|
1408
1376
|
}
|
|
1409
1377
|
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1378
|
+
.m-82577fc2[data-position='left'] {
|
|
1379
|
+
--_section-pointer-events: var(--input-left-section-pointer-events);
|
|
1380
|
+
--_section-left: var(--_left-section-left);
|
|
1381
|
+
--_section-right: var(--_left-section-right);
|
|
1382
|
+
--_section-size: var(--_input-left-section-size);
|
|
1383
|
+
--_section-border-radius: var(--_left-section-border-radius);
|
|
1414
1384
|
}
|
|
1415
1385
|
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
align-items: center;
|
|
1423
|
-
justify-content: center;
|
|
1386
|
+
/* ----- Input.Placeholder ----- */
|
|
1387
|
+
.m-88bacfd0 {
|
|
1388
|
+
color: var(--_input-placeholder-color, var(--mantine-color-placeholder));
|
|
1389
|
+
}
|
|
1390
|
+
[data-error] .m-88bacfd0 {
|
|
1391
|
+
--_input-placeholder-color: var(--_input-color, var(--mantine-color-placeholder));
|
|
1424
1392
|
}
|
|
1425
1393
|
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1394
|
+
/* ----- Input.Wrapper ----- */
|
|
1395
|
+
.m-46b77525 {
|
|
1396
|
+
line-height: var(--mantine-line-height);
|
|
1397
|
+
}
|
|
1430
1398
|
|
|
1431
|
-
.m-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1399
|
+
.m-8fdc1311 {
|
|
1400
|
+
display: inline-block;
|
|
1401
|
+
font-weight: 500;
|
|
1402
|
+
word-break: break-word;
|
|
1403
|
+
cursor: default;
|
|
1404
|
+
-webkit-tap-highlight-color: transparent;
|
|
1435
1405
|
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
--input-height-md: calc(2.625rem * var(--mantine-scale));
|
|
1439
|
-
--input-height-lg: calc(3.125rem * var(--mantine-scale));
|
|
1440
|
-
--input-height-xl: calc(3.75rem * var(--mantine-scale));
|
|
1406
|
+
font-size: var(--input-label-size);
|
|
1407
|
+
}
|
|
1441
1408
|
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
--input-padding-y-lg: calc(0.625rem * var(--mantine-scale));
|
|
1446
|
-
--input-padding-y-xl: calc(0.8125rem * var(--mantine-scale));
|
|
1409
|
+
.m-78a94662 {
|
|
1410
|
+
color: var(--input-asterisk-color);
|
|
1411
|
+
}
|
|
1447
1412
|
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
--_input-left-section-size: var(--input-left-section-width, calc(var(--input-height) - calc(0.125rem * var(--mantine-scale))));
|
|
1457
|
-
--_input-right-section-size: var(
|
|
1458
|
-
--input-right-section-width,
|
|
1459
|
-
calc(var(--input-height) - calc(0.125rem * var(--mantine-scale)))
|
|
1460
|
-
);
|
|
1461
|
-
--_input-size: var(--input-height);
|
|
1413
|
+
.m-8f816625,
|
|
1414
|
+
.m-fe47ce59 {
|
|
1415
|
+
word-wrap: break-word;
|
|
1416
|
+
line-height: 1.2;
|
|
1417
|
+
display: block;
|
|
1418
|
+
margin: 0;
|
|
1419
|
+
padding: 0;
|
|
1420
|
+
}
|
|
1462
1421
|
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
--
|
|
1466
|
-
|
|
1422
|
+
.m-8f816625 {
|
|
1423
|
+
color: var(--mantine-color-error);
|
|
1424
|
+
font-size: var(--input-error-size);
|
|
1425
|
+
}
|
|
1467
1426
|
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1427
|
+
.m-fe47ce59 {
|
|
1428
|
+
color: var(--mantine-color-dimmed);
|
|
1429
|
+
font-size: var(--input-description-size);
|
|
1471
1430
|
}
|
|
1472
1431
|
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
--_input-padding-left: 0;
|
|
1477
|
-
--_input-padding-right: 0;
|
|
1478
|
-
}
|
|
1432
|
+
.m-df78851f {
|
|
1433
|
+
word-break: break-word;
|
|
1434
|
+
}
|
|
1479
1435
|
|
|
1480
|
-
|
|
1481
|
-
|
|
1436
|
+
.m-4ba554d4 {
|
|
1437
|
+
padding: var(--mantine-spacing-md);
|
|
1438
|
+
padding-top: calc(var(--mantine-spacing-xs) / 2);
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
.m-8fa820a0 {
|
|
1442
|
+
margin: 0;
|
|
1443
|
+
padding: 0;
|
|
1444
|
+
}
|
|
1445
|
+
|
|
1446
|
+
.m-4ba585b8 {
|
|
1447
|
+
width: 100%;
|
|
1448
|
+
display: flex;
|
|
1449
|
+
align-items: center;
|
|
1450
|
+
flex-direction: var(--_control-flex-direction, row-reverse);
|
|
1451
|
+
padding-right: var(--_control-padding-right, var(--mantine-spacing-md));
|
|
1452
|
+
padding-left: var(--_control-padding-left, var(--mantine-spacing-md));
|
|
1453
|
+
text-align: left;
|
|
1454
|
+
color: var(--_control-color);
|
|
1455
|
+
opacity: var(--_control-opacity, 1);
|
|
1456
|
+
cursor: var(--_control-cursor, pointer);
|
|
1457
|
+
background-color: var(--_control-background-color, transparent);
|
|
1458
|
+
}
|
|
1459
|
+
|
|
1460
|
+
.m-4ba585b8[data-chevron-position='left'] {
|
|
1461
|
+
--_control-flex-direction: row;
|
|
1462
|
+
--_control-padding-left: 0;
|
|
1482
1463
|
}
|
|
1483
1464
|
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1465
|
+
[dir="rtl"] .m-4ba585b8[data-chevron-position='left'] {
|
|
1466
|
+
--_control-padding-left: var(--mantine-spacing-md);
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1469
|
+
[data-mantine-color-scheme='light'] .m-4ba585b8 {
|
|
1470
|
+
--_control-color: var(--mantine-color-black);
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1473
|
+
[data-mantine-color-scheme='dark'] .m-4ba585b8 {
|
|
1474
|
+
--_control-color: var(--mantine-color-dark-0);
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
.m-4ba585b8:disabled,
|
|
1478
|
+
.m-4ba585b8[data-disabled] {
|
|
1479
|
+
--_control-opacity: 0.4;
|
|
1480
|
+
--_control-cursor: not-allowed;
|
|
1487
1481
|
}
|
|
1488
1482
|
|
|
1489
|
-
|
|
1490
|
-
|
|
1483
|
+
@media (hover: hover) {
|
|
1484
|
+
[data-mantine-color-scheme='light'] .m-6939a5e9:not(:disabled, [data-disabled]):hover, [data-mantine-color-scheme='light'] .m-4271d21b:not(:disabled, [data-disabled]):hover {
|
|
1485
|
+
--_control-background-color: var(--mantine-color-gray-0);
|
|
1491
1486
|
}
|
|
1492
1487
|
|
|
1493
|
-
|
|
1494
|
-
|
|
1488
|
+
[data-mantine-color-scheme='dark'] .m-6939a5e9:not(:disabled, [data-disabled]):hover, [data-mantine-color-scheme='dark'] .m-4271d21b:not(:disabled, [data-disabled]):hover {
|
|
1489
|
+
--_control-background-color: var(--mantine-color-dark-6);
|
|
1490
|
+
}
|
|
1495
1491
|
}
|
|
1496
1492
|
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
.m-6c018570[data-with-right-section] {
|
|
1502
|
-
--_input-padding-right: var(--_input-right-section-size);
|
|
1493
|
+
@media (hover: none) {
|
|
1494
|
+
[data-mantine-color-scheme='light'] .m-6939a5e9:not(:disabled, [data-disabled]):active, [data-mantine-color-scheme='light'] .m-4271d21b:not(:disabled, [data-disabled]):active {
|
|
1495
|
+
--_control-background-color: var(--mantine-color-gray-0);
|
|
1503
1496
|
}
|
|
1504
1497
|
|
|
1505
|
-
|
|
1506
|
-
|
|
1498
|
+
[data-mantine-color-scheme='dark'] .m-6939a5e9:not(:disabled, [data-disabled]):active, [data-mantine-color-scheme='dark'] .m-4271d21b:not(:disabled, [data-disabled]):active {
|
|
1499
|
+
--_control-background-color: var(--mantine-color-dark-6);
|
|
1500
|
+
}
|
|
1507
1501
|
}
|
|
1508
1502
|
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1503
|
+
.m-df3ffa0f {
|
|
1504
|
+
color: inherit;
|
|
1505
|
+
font-weight: 400;
|
|
1506
|
+
flex: 1 1;
|
|
1507
|
+
overflow: hidden;
|
|
1508
|
+
text-overflow: ellipsis;
|
|
1509
|
+
padding-top: var(--mantine-spacing-sm);
|
|
1510
|
+
padding-bottom: var(--mantine-spacing-sm);
|
|
1511
|
+
}
|
|
1512
1512
|
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1513
|
+
.m-3f35ae96 {
|
|
1514
|
+
display: flex;
|
|
1515
|
+
align-items: center;
|
|
1516
|
+
justify-content: flex-start;
|
|
1517
|
+
transition: transform var(--accordion-transition-duration) ease;
|
|
1518
|
+
margin-right: var(--_chevron-margin-right);
|
|
1519
|
+
margin-left: var(--_chevron-margin-left);
|
|
1520
|
+
width: var(--accordion-chevron-size);
|
|
1521
|
+
min-width: var(--accordion-chevron-size);
|
|
1522
|
+
transform: var(--_chevron-transform, rotate(0deg));
|
|
1516
1523
|
}
|
|
1517
1524
|
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
--_input-bd-focus: var(--mantine-color-primary);
|
|
1522
|
-
}
|
|
1525
|
+
.m-3f35ae96[data-rotate] {
|
|
1526
|
+
--_chevron-transform: rotate(180deg);
|
|
1527
|
+
}
|
|
1523
1528
|
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1529
|
+
.m-3f35ae96[data-position='left'] {
|
|
1530
|
+
--_chevron-margin-right: var(--mantine-spacing-md);
|
|
1531
|
+
--_chevron-margin-left: var(--mantine-spacing-md);
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
.m-3f35ae96[data-position='right'] {
|
|
1535
|
+
--_chevron-margin-left: 0;
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1538
|
+
[dir="rtl"] .m-3f35ae96[data-position='left'] {
|
|
1539
|
+
--_chevron-margin-right: 0;
|
|
1540
|
+
--_chevron-margin-left: var(--mantine-spacing-md);
|
|
1528
1541
|
}
|
|
1529
1542
|
|
|
1530
|
-
|
|
1531
|
-
--
|
|
1532
|
-
--
|
|
1533
|
-
--_input-bd-focus: transparent;
|
|
1543
|
+
[dir="rtl"] .m-3f35ae96[data-position='right'] {
|
|
1544
|
+
--_chevron-margin-right: var(--mantine-spacing-md);
|
|
1545
|
+
--_chevron-margin-left: 0;
|
|
1534
1546
|
}
|
|
1535
1547
|
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1548
|
+
.m-9bd771fe {
|
|
1549
|
+
display: flex;
|
|
1550
|
+
align-items: center;
|
|
1551
|
+
justify-content: center;
|
|
1552
|
+
margin-right: var(--_icon-margin-right, var(--mantine-spacing-sm));
|
|
1553
|
+
margin-left: var(--_icon-margin-left, 0);
|
|
1539
1554
|
}
|
|
1540
1555
|
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
}
|
|
1556
|
+
.m-9bd771fe[data-chevron-position='left'] {
|
|
1557
|
+
--_icon-margin-right: 0;
|
|
1558
|
+
--_icon-margin-left: var(--mantine-spacing-lg);
|
|
1559
|
+
}
|
|
1546
1560
|
|
|
1547
|
-
|
|
1548
|
-
--
|
|
1549
|
-
--
|
|
1550
|
-
--_input-bd-focus: var(--mantine-color-primary);
|
|
1561
|
+
[dir="rtl"] .m-9bd771fe[data-chevron-position='left'] {
|
|
1562
|
+
--_icon-margin-right: var(--mantine-spacing-lg);
|
|
1563
|
+
--_icon-margin-left: 0;
|
|
1551
1564
|
}
|
|
1552
1565
|
|
|
1553
|
-
|
|
1554
|
-
--
|
|
1555
|
-
--
|
|
1556
|
-
--_input-bd-focus: transparent;
|
|
1566
|
+
[dir="rtl"] .m-9bd771fe[data-chevron-position='right'] {
|
|
1567
|
+
--_icon-margin-right: 0;
|
|
1568
|
+
--_icon-margin-left: var(--mantine-spacing-sm);
|
|
1557
1569
|
}
|
|
1558
1570
|
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
--_input-color: var(--mantine-color-error);
|
|
1562
|
-
--_input-placeholder-color: var(--mantine-color-error);
|
|
1563
|
-
--_input-section-color: var(--mantine-color-error);
|
|
1564
|
-
}
|
|
1565
|
-
|
|
1566
|
-
[dir="rtl"] .m-6c018570 {
|
|
1567
|
-
--_input-text-align: right;
|
|
1568
|
-
--_left-section-left: unset;
|
|
1569
|
-
--_left-section-right: calc(0.0625rem * var(--mantine-scale));
|
|
1570
|
-
--_left-section-border-radius: 0 var(--input-radius) var(--input-radius) 0;
|
|
1571
|
-
--_right-section-left: calc(0.0625rem * var(--mantine-scale));
|
|
1572
|
-
--_right-section-right: unset;
|
|
1573
|
-
--_right-section-border-radius: var(--input-radius) 0 0 var(--input-radius);
|
|
1571
|
+
.m-9bd7b098 {
|
|
1572
|
+
background-color: var(--_item-bg);
|
|
1574
1573
|
}
|
|
1575
1574
|
|
|
1576
|
-
.m-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
display: block;
|
|
1581
|
-
width: 100%;
|
|
1582
|
-
transition: border-color 100ms ease;
|
|
1575
|
+
[data-mantine-color-scheme='light'] .m-9bd7b098 {
|
|
1576
|
+
--_item-border-color: var(--mantine-color-gray-3);
|
|
1577
|
+
--_item-filled-color: var(--mantine-color-gray-0);
|
|
1578
|
+
}
|
|
1583
1579
|
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
background-color: var(--_input-bg);
|
|
1588
|
-
font-family: var(--mantine-font-family);
|
|
1589
|
-
height: var(--_input-size);
|
|
1590
|
-
min-height: var(--input-height);
|
|
1591
|
-
line-height: var(--_input-line-height);
|
|
1592
|
-
font-size: var(--input-fz);
|
|
1593
|
-
border-radius: var(--input-radius);
|
|
1594
|
-
padding-left: var(--_input-padding-left);
|
|
1595
|
-
padding-right: var(--_input-padding-right);
|
|
1596
|
-
padding-top: var(--input-padding-y, 0rem);
|
|
1597
|
-
padding-bottom: var(--input-padding-y, 0rem);
|
|
1598
|
-
cursor: var(--_input-cursor);
|
|
1580
|
+
[data-mantine-color-scheme='dark'] .m-9bd7b098 {
|
|
1581
|
+
--_item-border-color: var(--mantine-color-dark-4);
|
|
1582
|
+
--_item-filled-color: var(--mantine-color-dark-6);
|
|
1599
1583
|
}
|
|
1600
1584
|
|
|
1601
|
-
.m-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1585
|
+
.m-fe19b709 {
|
|
1586
|
+
border-bottom: calc(0.0625rem * var(--mantine-scale)) solid var(--_item-border-color);
|
|
1587
|
+
}
|
|
1588
|
+
|
|
1589
|
+
.m-1f921b3b {
|
|
1590
|
+
border: calc(0.0625rem * var(--mantine-scale)) solid var(--_item-border-color);
|
|
1591
|
+
transition: background-color 150ms ease;
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1594
|
+
.m-1f921b3b[data-active] {
|
|
1595
|
+
--_item-bg: var(--_item-filled-color);
|
|
1605
1596
|
}
|
|
1606
1597
|
|
|
1607
|
-
.m-
|
|
1608
|
-
|
|
1609
|
-
|
|
1598
|
+
.m-1f921b3b:first-of-type {
|
|
1599
|
+
border-top-left-radius: var(--accordion-radius);
|
|
1600
|
+
border-top-right-radius: var(--accordion-radius);
|
|
1610
1601
|
}
|
|
1611
1602
|
|
|
1612
|
-
.m-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1603
|
+
.m-1f921b3b:first-of-type > [data-accordion-control] {
|
|
1604
|
+
border-top-left-radius: var(--accordion-radius);
|
|
1605
|
+
border-top-right-radius: var(--accordion-radius);
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1608
|
+
.m-1f921b3b:last-of-type {
|
|
1609
|
+
border-bottom-left-radius: var(--accordion-radius);
|
|
1610
|
+
border-bottom-right-radius: var(--accordion-radius);
|
|
1619
1611
|
}
|
|
1620
1612
|
|
|
1621
|
-
.m-
|
|
1622
|
-
|
|
1613
|
+
.m-1f921b3b:last-of-type > [data-accordion-control] {
|
|
1614
|
+
border-bottom-left-radius: var(--accordion-radius);
|
|
1615
|
+
border-bottom-right-radius: var(--accordion-radius);
|
|
1616
|
+
}
|
|
1617
|
+
|
|
1618
|
+
.m-1f921b3b + .m-1f921b3b {
|
|
1619
|
+
border-top: 0;
|
|
1623
1620
|
}
|
|
1624
1621
|
|
|
1625
|
-
.m-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
color: var(--_input-disabled-color);
|
|
1622
|
+
.m-2cdf939a {
|
|
1623
|
+
border-radius: var(--accordion-radius);
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1626
|
+
.m-2cdf939a[data-active] {
|
|
1627
|
+
--_item-bg: var(--_item-filled-color);
|
|
1632
1628
|
}
|
|
1633
1629
|
|
|
1634
|
-
.m-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1630
|
+
.m-9f59b069 {
|
|
1631
|
+
--_item-bg: var(--_item-filled-color);
|
|
1632
|
+
|
|
1633
|
+
border-radius: var(--accordion-radius);
|
|
1634
|
+
border: calc(0.0625rem * var(--mantine-scale)) solid var(--__item-border-color, transparent);
|
|
1635
|
+
transition: background-color 150ms ease;
|
|
1636
|
+
}
|
|
1637
|
+
|
|
1638
|
+
.m-9f59b069[data-active] {
|
|
1639
|
+
--__item-border-color: var(--_item-border-color);
|
|
1640
|
+
}
|
|
1641
|
+
|
|
1642
|
+
[data-mantine-color-scheme='light'] .m-9f59b069[data-active] {
|
|
1643
|
+
--_item-bg: var(--mantine-color-white);
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1646
|
+
[data-mantine-color-scheme='dark'] .m-9f59b069[data-active] {
|
|
1647
|
+
--_item-bg: var(--mantine-color-dark-7);
|
|
1648
|
+
}
|
|
1649
|
+
|
|
1650
|
+
.m-9f59b069 + .m-9f59b069 {
|
|
1651
|
+
margin-top: var(--mantine-spacing-md);
|
|
1652
|
+
}
|
|
1653
|
+
|
|
1654
|
+
.m-7f854edf {
|
|
1655
|
+
position: fixed;
|
|
1656
|
+
z-index: var(--affix-z-index);
|
|
1657
|
+
top: var(--affix-top);
|
|
1658
|
+
left: var(--affix-left);
|
|
1659
|
+
right: var(--affix-right);
|
|
1660
|
+
bottom: var(--affix-bottom);
|
|
1661
|
+
}
|
|
1662
|
+
|
|
1663
|
+
.m-66836ed3 {
|
|
1664
|
+
background-color: var(--alert-bg);
|
|
1665
|
+
padding: var(--mantine-spacing-md) var(--mantine-spacing-xl);
|
|
1666
|
+
border-radius: var(--alert-radius);
|
|
1667
|
+
position: relative;
|
|
1668
|
+
overflow: hidden;
|
|
1669
|
+
border: var(--alert-bd);
|
|
1670
|
+
color: var(--alert-color);
|
|
1671
|
+
}
|
|
1672
|
+
|
|
1673
|
+
.m-12b2e6d5 {
|
|
1674
|
+
--_message-color: var(--alert-color);
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
.m-cffd1856 {
|
|
1678
|
+
--_message-color: var(--mantine-color-black);
|
|
1679
|
+
}
|
|
1680
|
+
|
|
1681
|
+
.m-a5d60502 {
|
|
1682
|
+
display: flex;
|
|
1683
|
+
}
|
|
1684
|
+
|
|
1685
|
+
.m-667c2793 {
|
|
1686
|
+
flex: 1 1;
|
|
1687
|
+
}
|
|
1688
|
+
|
|
1689
|
+
.m-6a03f287 {
|
|
1690
|
+
margin-bottom: var(--mantine-spacing-xs);
|
|
1642
1691
|
display: flex;
|
|
1643
1692
|
align-items: center;
|
|
1644
|
-
justify-content:
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
color: var(--mantine-color-placeholder);
|
|
1693
|
+
justify-content: space-between;
|
|
1694
|
+
font-size: var(--mantine-font-size-sm);
|
|
1695
|
+
font-weight: 700;
|
|
1648
1696
|
}
|
|
1649
1697
|
|
|
1650
|
-
.m-
|
|
1651
|
-
|
|
1652
|
-
--_section-left: var(--_right-section-left);
|
|
1653
|
-
--_section-right: var(--_right-section-right);
|
|
1654
|
-
--_section-size: var(--_input-right-section-size);
|
|
1655
|
-
--_section-border-radius: var(--_right-section-border-radius);
|
|
1698
|
+
.m-6a03f287[data-with-clos-button] {
|
|
1699
|
+
padding-right: var(--mantine-spacing-md);
|
|
1656
1700
|
}
|
|
1657
1701
|
|
|
1658
|
-
.m-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1702
|
+
.m-698f4f23 {
|
|
1703
|
+
display: block;
|
|
1704
|
+
overflow: hidden;
|
|
1705
|
+
text-overflow: ellipsis;
|
|
1706
|
+
}
|
|
1707
|
+
|
|
1708
|
+
.m-667f2a6a {
|
|
1709
|
+
line-height: 1;
|
|
1710
|
+
width: calc(1.25rem * var(--mantine-scale));
|
|
1711
|
+
height: calc(1.25rem * var(--mantine-scale));
|
|
1712
|
+
display: flex;
|
|
1713
|
+
align-items: center;
|
|
1714
|
+
justify-content: flex-start;
|
|
1715
|
+
margin-right: var(--mantine-spacing-md);
|
|
1716
|
+
margin-top: calc(0.0625rem * var(--mantine-scale));
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1719
|
+
.m-7fa78076 {
|
|
1720
|
+
text-overflow: ellipsis;
|
|
1721
|
+
overflow: hidden;
|
|
1722
|
+
font-size: var(--mantine-font-size-sm);
|
|
1723
|
+
color: var(--_message-color, var(--__message-color));
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1726
|
+
[data-mantine-color-scheme='light'] .m-7fa78076 {
|
|
1727
|
+
--__message-color: var(--mantine-color-black);
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1730
|
+
[data-mantine-color-scheme='dark'] .m-7fa78076 {
|
|
1731
|
+
--__message-color: var(--mantine-color-white);
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
.m-87f54839 {
|
|
1735
|
+
width: calc(1.25rem * var(--mantine-scale));
|
|
1736
|
+
height: calc(1.25rem * var(--mantine-scale));
|
|
1737
|
+
margin-right: calc(var(--mantine-spacing-md) * -1);
|
|
1738
|
+
margin-top: calc(var(--mantine-spacing-sm) * -0.5);
|
|
1739
|
+
color: var(--alert-color);
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1742
|
+
.m-b6d8b162 {
|
|
1743
|
+
-webkit-tap-highlight-color: transparent;
|
|
1744
|
+
text-decoration: none;
|
|
1745
|
+
font-size: var(--text-fz);
|
|
1746
|
+
line-height: var(--text-lh);
|
|
1747
|
+
font-weight: normal;
|
|
1748
|
+
margin: 0;
|
|
1749
|
+
padding: 0;
|
|
1750
|
+
}
|
|
1751
|
+
|
|
1752
|
+
.m-b6d8b162[data-truncate] {
|
|
1753
|
+
overflow: hidden;
|
|
1754
|
+
text-overflow: ellipsis;
|
|
1755
|
+
white-space: nowrap;
|
|
1664
1756
|
}
|
|
1665
1757
|
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1758
|
+
.m-b6d8b162[data-truncate='start'] {
|
|
1759
|
+
direction: rtl;
|
|
1760
|
+
text-align: right;
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
[dir="rtl"] .m-b6d8b162[data-truncate='start'] {
|
|
1764
|
+
direction: ltr;
|
|
1765
|
+
text-align: left;
|
|
1669
1766
|
}
|
|
1670
1767
|
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1768
|
+
.m-b6d8b162[data-variant='gradient'] {
|
|
1769
|
+
background-image: var(--text-gradient);
|
|
1770
|
+
background-clip: text;
|
|
1771
|
+
-webkit-background-clip: text;
|
|
1772
|
+
-webkit-text-fill-color: transparent;
|
|
1773
|
+
}
|
|
1774
|
+
|
|
1775
|
+
.m-b6d8b162[data-line-clamp] {
|
|
1776
|
+
overflow: hidden;
|
|
1777
|
+
text-overflow: ellipsis;
|
|
1778
|
+
display: -webkit-box;
|
|
1779
|
+
-webkit-line-clamp: var(--text-line-clamp);
|
|
1780
|
+
-webkit-box-orient: vertical;
|
|
1781
|
+
}
|
|
1782
|
+
|
|
1783
|
+
.m-b6d8b162[data-inherit] {
|
|
1784
|
+
line-height: inherit;
|
|
1785
|
+
font-weight: inherit;
|
|
1786
|
+
font-size: inherit;
|
|
1787
|
+
}
|
|
1788
|
+
|
|
1789
|
+
.m-b6d8b162[data-inline] {
|
|
1790
|
+
--_text-line-height: 1;
|
|
1791
|
+
}
|
|
1792
|
+
|
|
1793
|
+
.m-849cf0da {
|
|
1794
|
+
color: var(--mantine-color-anchor);
|
|
1795
|
+
text-decoration: var(--_text-decoration, none);
|
|
1796
|
+
appearance: none;
|
|
1797
|
+
border: none;
|
|
1798
|
+
display: inline;
|
|
1799
|
+
padding: 0;
|
|
1800
|
+
margin: 0;
|
|
1801
|
+
background-color: transparent;
|
|
1802
|
+
cursor: pointer;
|
|
1803
|
+
}
|
|
1804
|
+
|
|
1805
|
+
@media (hover: hover) {
|
|
1806
|
+
|
|
1807
|
+
.m-849cf0da[data-underline='hover']:hover {
|
|
1808
|
+
--_text-decoration: underline;
|
|
1809
|
+
}
|
|
1810
|
+
}
|
|
1811
|
+
|
|
1812
|
+
@media (hover: none) {
|
|
1813
|
+
|
|
1814
|
+
.m-849cf0da[data-underline='hover']:active {
|
|
1815
|
+
--_text-decoration: underline;
|
|
1816
|
+
}
|
|
1817
|
+
}
|
|
1818
|
+
|
|
1819
|
+
.m-849cf0da[data-underline='always'] {
|
|
1820
|
+
--_text-decoration: underline;
|
|
1821
|
+
}
|
|
1822
|
+
|
|
1823
|
+
.m-89ab340[data-resizing] {
|
|
1824
|
+
--app-shell-transition-duration: 0ms !important;
|
|
1825
|
+
}
|
|
1826
|
+
.m-89ab340[data-disabled] {
|
|
1827
|
+
--app-shell-header-offset: 0px !important;
|
|
1828
|
+
--app-shell-navbar-offset: 0px !important;
|
|
1829
|
+
}
|
|
1830
|
+
[data-mantine-color-scheme='light'] .m-89ab340 {
|
|
1831
|
+
--_app-shell-border-color: var(--mantine-color-gray-3);
|
|
1832
|
+
}
|
|
1833
|
+
[data-mantine-color-scheme='dark'] .m-89ab340 {
|
|
1834
|
+
--_app-shell-border-color: var(--mantine-color-dark-4);
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1837
|
+
.m-45252eee,
|
|
1838
|
+
.m-9cdde9a,
|
|
1839
|
+
.m-3b16f56b,
|
|
1840
|
+
.m-8983817,
|
|
1841
|
+
.m-3840c879 {
|
|
1842
|
+
transition-duration: var(--app-shell-transition-duration);
|
|
1843
|
+
transition-timing-function: var(--app-shell-transition-timing-function);
|
|
1844
|
+
}
|
|
1845
|
+
|
|
1846
|
+
.m-45252eee,
|
|
1847
|
+
.m-9cdde9a {
|
|
1848
|
+
position: fixed;
|
|
1849
|
+
display: flex;
|
|
1850
|
+
flex-direction: column;
|
|
1851
|
+
top: var(--_section-top, var(--app-shell-header-offset, 0px));
|
|
1852
|
+
height: var(
|
|
1853
|
+
--_section-height,
|
|
1854
|
+
calc(100dvh - var(--app-shell-header-offset, 0px) - var(--app-shell-footer-offset, 0px))
|
|
1855
|
+
);
|
|
1856
|
+
background-color: var(--mantine-color-body);
|
|
1857
|
+
transition-property: transform, top, height;
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
[data-layout='alt'] .m-45252eee, [data-layout='alt'] .m-9cdde9a {
|
|
1861
|
+
--_section-top: 0px;
|
|
1862
|
+
--_section-height: 100dvh;
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1865
|
+
.m-45252eee {
|
|
1866
|
+
left: var(--_navbar-left, 0px);
|
|
1867
|
+
right: var(--_navbar-right);
|
|
1868
|
+
width: var(--app-shell-navbar-width);
|
|
1869
|
+
border-right: var(--_navbar-border-right);
|
|
1870
|
+
border-left: var(--_navbar-border-left);
|
|
1871
|
+
transition-property: transform, top, height;
|
|
1872
|
+
transform: var(--_navbar-transform, var(--app-shell-navbar-transform));
|
|
1873
|
+
z-index: var(--app-shell-navbar-z-index);
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1876
|
+
.m-45252eee[data-with-border] {
|
|
1877
|
+
--_navbar-border-right: calc(0.0625rem * var(--mantine-scale)) solid var(--_app-shell-border-color);
|
|
1878
|
+
}
|
|
1879
|
+
|
|
1880
|
+
[dir="rtl"] .m-45252eee[data-with-border] {
|
|
1881
|
+
--_navbar-border-right: none;
|
|
1882
|
+
--_navbar-border-left: calc(0.0625rem * var(--mantine-scale)) solid var(--_app-shell-border-color);
|
|
1883
|
+
}
|
|
1884
|
+
|
|
1885
|
+
[dir="rtl"] .m-45252eee {
|
|
1886
|
+
--_navbar-left: auto;
|
|
1887
|
+
--_navbar-right: 0px;
|
|
1888
|
+
--_navbar-transform: var(--app-shell-navbar-transform-rtl);
|
|
1889
|
+
}
|
|
1890
|
+
|
|
1891
|
+
.m-9cdde9a {
|
|
1892
|
+
left: var(--_aside-left);
|
|
1893
|
+
right: var(--_aside-right, 0px);
|
|
1894
|
+
width: var(--app-shell-aside-width);
|
|
1895
|
+
border-right: var(--_aside-border-right);
|
|
1896
|
+
border-left: var(--_aside-border-left);
|
|
1897
|
+
transform: var(--_aside-transform, var(--app-shell-aside-transform));
|
|
1898
|
+
z-index: var(--app-shell-aside-z-index);
|
|
1899
|
+
}
|
|
1900
|
+
|
|
1901
|
+
.m-9cdde9a[data-with-border] {
|
|
1902
|
+
--_aside-border-left: calc(0.0625rem * var(--mantine-scale)) solid var(--_app-shell-border-color);
|
|
1903
|
+
}
|
|
1904
|
+
|
|
1905
|
+
[dir="rtl"] .m-9cdde9a[data-with-border] {
|
|
1906
|
+
--_aside-border-left: none;
|
|
1907
|
+
--_aside-border-right: calc(0.0625rem * var(--mantine-scale)) solid var(--_app-shell-border-color);
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1910
|
+
[dir="rtl"] .m-9cdde9a {
|
|
1911
|
+
--_aside-left: 0px;
|
|
1912
|
+
--_aside-right: auto;
|
|
1913
|
+
--_aside-transform: var(--app-shell-aside-transform-rtl);
|
|
1914
|
+
}
|
|
1915
|
+
|
|
1916
|
+
.m-8983817 {
|
|
1917
|
+
padding-left: var(
|
|
1918
|
+
--_main-padding-left,
|
|
1919
|
+
calc(var(--app-shell-navbar-offset, 0px) + var(--app-shell-padding))
|
|
1920
|
+
);
|
|
1921
|
+
padding-right: var(
|
|
1922
|
+
--_main-padding-right,
|
|
1923
|
+
calc(var(--app-shell-aside-offset, 0px) + var(--app-shell-padding))
|
|
1924
|
+
);
|
|
1925
|
+
padding-top: calc(var(--app-shell-header-offset, 0px) + var(--app-shell-padding));
|
|
1926
|
+
padding-bottom: calc(var(--app-shell-footer-offset, 0px) + var(--app-shell-padding));
|
|
1927
|
+
min-height: calc(
|
|
1928
|
+
100dvh - var(--app-shell-header-offset, 0px) - var(--app-shell-footer-offset, 0px)
|
|
1929
|
+
);
|
|
1930
|
+
transition-property: padding;
|
|
1931
|
+
}
|
|
1932
|
+
|
|
1933
|
+
[dir="rtl"] .m-8983817 {
|
|
1934
|
+
--_main-padding-left: calc(var(--app-shell-aside-offset, 0px) + var(--app-shell-padding));
|
|
1935
|
+
--_main-padding-right: calc(var(--app-shell-navbar-offset, 0px) + var(--app-shell-padding));
|
|
1936
|
+
}
|
|
1937
|
+
|
|
1938
|
+
.m-3b16f56b,
|
|
1939
|
+
.m-3840c879 {
|
|
1940
|
+
position: fixed;
|
|
1941
|
+
left: var(--_section-left, 0px);
|
|
1942
|
+
right: var(--_section-right, 0px);
|
|
1943
|
+
transition-property: transform, left, right;
|
|
1944
|
+
background-color: var(--mantine-color-body);
|
|
1945
|
+
}
|
|
1946
|
+
|
|
1947
|
+
[data-layout='alt'] .m-3b16f56b, [data-layout='alt'] .m-3840c879 {
|
|
1948
|
+
--_section-left: var(--app-shell-navbar-offset, 0px);
|
|
1949
|
+
}
|
|
1950
|
+
|
|
1951
|
+
[dir="rtl"] [data-layout='alt'] .m-3b16f56b, [dir="rtl"] [data-layout='alt'] .m-3840c879 {
|
|
1952
|
+
--_section-right: var(--app-shell-navbar-offset, 0px);
|
|
1953
|
+
--_section-left: 0px;
|
|
1954
|
+
}
|
|
1955
|
+
|
|
1956
|
+
.m-3b16f56b {
|
|
1957
|
+
top: 0;
|
|
1958
|
+
height: var(--app-shell-header-height);
|
|
1959
|
+
background-color: var(--mantine-color-body);
|
|
1960
|
+
border-bottom: var(--_header-border-bottom);
|
|
1961
|
+
transform: var(--app-shell-header-transform);
|
|
1962
|
+
z-index: var(--app-shell-header-z-index);
|
|
1963
|
+
}
|
|
1964
|
+
|
|
1965
|
+
.m-3b16f56b[data-with-border] {
|
|
1966
|
+
--_header-border-bottom: calc(0.0625rem * var(--mantine-scale)) solid var(--_app-shell-border-color);
|
|
1967
|
+
}
|
|
1968
|
+
|
|
1969
|
+
.m-3840c879 {
|
|
1970
|
+
bottom: 0;
|
|
1971
|
+
height: var(--app-shell-footer-height);
|
|
1972
|
+
border-top: var(--_footer-border-top);
|
|
1973
|
+
transform: var(--app-shell-footer-transform);
|
|
1974
|
+
z-index: var(--app-shell-footer-z-index);
|
|
1674
1975
|
}
|
|
1675
1976
|
|
|
1676
|
-
.m-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
word-break: break-word;
|
|
1680
|
-
cursor: default;
|
|
1681
|
-
-webkit-tap-highlight-color: transparent;
|
|
1977
|
+
.m-3840c879[data-with-border] {
|
|
1978
|
+
--_footer-border-top: calc(0.0625rem * var(--mantine-scale)) solid var(--_app-shell-border-color);
|
|
1979
|
+
}
|
|
1682
1980
|
|
|
1683
|
-
|
|
1981
|
+
.m-6dcfc7c7 {
|
|
1982
|
+
flex-grow: var(--_section-grow, 0);
|
|
1684
1983
|
}
|
|
1685
1984
|
|
|
1686
|
-
.m-
|
|
1687
|
-
|
|
1688
|
-
}
|
|
1985
|
+
.m-6dcfc7c7[data-grow] {
|
|
1986
|
+
--_section-grow: 1;
|
|
1987
|
+
}
|
|
1689
1988
|
|
|
1690
|
-
.m-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
line-height: 1.2;
|
|
1694
|
-
display: block;
|
|
1695
|
-
margin: 0;
|
|
1696
|
-
padding: 0;
|
|
1989
|
+
.m-71ac47fc {
|
|
1990
|
+
position: relative;
|
|
1991
|
+
max-width: 100%;
|
|
1697
1992
|
}
|
|
1698
1993
|
|
|
1699
|
-
.m-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1994
|
+
.m-71ac47fc::before {
|
|
1995
|
+
content: '';
|
|
1996
|
+
height: 0;
|
|
1997
|
+
display: block;
|
|
1998
|
+
padding-bottom: calc((1 / var(--ar-ratio)) * 100%);
|
|
1999
|
+
}
|
|
1703
2000
|
|
|
1704
|
-
.m-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
2001
|
+
.m-71ac47fc::after {
|
|
2002
|
+
content: '';
|
|
2003
|
+
display: table;
|
|
2004
|
+
clear: both;
|
|
2005
|
+
}
|
|
2006
|
+
|
|
2007
|
+
.m-71ac47fc > *:not(style) {
|
|
2008
|
+
position: absolute;
|
|
2009
|
+
inset: 0;
|
|
2010
|
+
width: 100%;
|
|
2011
|
+
height: 100%;
|
|
2012
|
+
display: flex;
|
|
2013
|
+
align-items: center;
|
|
2014
|
+
justify-content: center;
|
|
2015
|
+
}
|
|
2016
|
+
|
|
2017
|
+
.m-71ac47fc > img,
|
|
2018
|
+
.m-71ac47fc > video {
|
|
2019
|
+
object-fit: cover;
|
|
2020
|
+
}
|
|
1708
2021
|
|
|
1709
2022
|
.m-88b62a41 {
|
|
1710
2023
|
padding: var(--combobox-padding);
|
|
@@ -1878,222 +2191,46 @@ body {
|
|
|
1878
2191
|
|
|
1879
2192
|
width: var(--combobox-chevron-size);
|
|
1880
2193
|
height: var(--combobox-chevron-size);
|
|
1881
|
-
color: var(--_color);
|
|
1882
|
-
}
|
|
1883
|
-
[data-mantine-color-scheme='light'] .m-2943220b {
|
|
1884
|
-
--_color: var(--mantine-color-gray-6);
|
|
1885
|
-
}
|
|
1886
|
-
[data-mantine-color-scheme='dark'] .m-2943220b {
|
|
1887
|
-
--_color: var(--mantine-color-dark-3);
|
|
1888
|
-
}
|
|
1889
|
-
.m-2943220b[data-error] {
|
|
1890
|
-
--_color: var(--mantine-color-error);
|
|
1891
|
-
}
|
|
1892
|
-
|
|
1893
|
-
/* ------- OptionsDropdown ------- */
|
|
1894
|
-
.m-71d052f9 {
|
|
1895
|
-
margin-right: calc(var(--combobox-padding) * -1);
|
|
1896
|
-
}
|
|
1897
|
-
[dir="rtl"] .m-71d052f9 {
|
|
1898
|
-
margin-left: calc(var(--combobox-padding) * -1);
|
|
1899
|
-
margin-right: 0;
|
|
1900
|
-
}
|
|
1901
|
-
|
|
1902
|
-
.m-390b5f4 {
|
|
1903
|
-
display: flex;
|
|
1904
|
-
align-items: center;
|
|
1905
|
-
flex-direction: var(--_flex-direction, row);
|
|
1906
|
-
gap: calc(0.5rem * var(--mantine-scale));
|
|
1907
|
-
}
|
|
1908
|
-
|
|
1909
|
-
.m-390b5f4[data-reverse] {
|
|
1910
|
-
justify-content: space-between;
|
|
1911
|
-
}
|
|
1912
|
-
|
|
1913
|
-
.m-8ee53fc2 {
|
|
1914
|
-
opacity: 0.4;
|
|
1915
|
-
width: 0.8em;
|
|
1916
|
-
height: 0.8em;
|
|
1917
|
-
}
|
|
1918
|
-
|
|
1919
|
-
[data-combobox-selected] .m-8ee53fc2 {
|
|
1920
|
-
opacity: 1;
|
|
1921
|
-
}
|
|
1922
|
-
|
|
1923
|
-
.m-d57069b5 {
|
|
1924
|
-
position: relative;
|
|
1925
|
-
overflow: hidden;
|
|
1926
|
-
}
|
|
1927
|
-
|
|
1928
|
-
.m-c0783ff9 {
|
|
1929
|
-
scrollbar-width: none;
|
|
1930
|
-
-ms-overflow-style: none;
|
|
1931
|
-
-webkit-overflow-scrolling: touch;
|
|
1932
|
-
width: 100%;
|
|
1933
|
-
height: 100%;
|
|
1934
|
-
padding-right: var(--_viewport-padding-right, 0rem);
|
|
1935
|
-
padding-left: var(--_viewport-padding-left, 0rem);
|
|
1936
|
-
padding-bottom: var(--_viewport-padding-bottom, 0rem);
|
|
1937
|
-
}
|
|
1938
|
-
|
|
1939
|
-
.m-c0783ff9::-webkit-scrollbar {
|
|
1940
|
-
display: none;
|
|
1941
|
-
}
|
|
1942
|
-
|
|
1943
|
-
.m-c0783ff9[data-offset-scrollbars='xy'],
|
|
1944
|
-
.m-c0783ff9[data-offset-scrollbars='y'] {
|
|
1945
|
-
--_viewport-padding-right: var(--scrollarea-scrollbar-size);
|
|
1946
|
-
--_viewport-padding-left: unset;
|
|
1947
|
-
}
|
|
1948
|
-
|
|
1949
|
-
[dir="rtl"] .m-c0783ff9[data-offset-scrollbars='xy'], [dir="rtl"] .m-c0783ff9[data-offset-scrollbars='y'] {
|
|
1950
|
-
--_viewport-padding-right: unset;
|
|
1951
|
-
--_viewport-padding-left: var(--scrollarea-scrollbar-size);
|
|
1952
|
-
}
|
|
1953
|
-
|
|
1954
|
-
.m-c0783ff9[data-offset-scrollbars='xy'],
|
|
1955
|
-
.m-c0783ff9[data-offset-scrollbars='x'] {
|
|
1956
|
-
--_viewport-padding-bottom: var(--scrollarea-scrollbar-size);
|
|
1957
|
-
}
|
|
1958
|
-
|
|
1959
|
-
.m-f8f631dd {
|
|
1960
|
-
min-width: 100%;
|
|
1961
|
-
display: table;
|
|
1962
|
-
}
|
|
1963
|
-
|
|
1964
|
-
.m-c44ba933 {
|
|
1965
|
-
user-select: none;
|
|
1966
|
-
touch-action: none;
|
|
1967
|
-
box-sizing: border-box;
|
|
1968
|
-
transition: background-color 150ms ease, opacity 150ms ease;
|
|
1969
|
-
|
|
1970
|
-
padding: calc(var(--scrollarea-scrollbar-size) / 5);
|
|
1971
|
-
display: var(--_scrollbar-display, flex);
|
|
1972
|
-
background-color: var(--_scrollbar-bg, transparent);
|
|
1973
|
-
width: var(--_scrollbar-width);
|
|
1974
|
-
height: var(--_scrollbar-height);
|
|
1975
|
-
flex-direction: var(--_scrollbar-direction, row);
|
|
1976
|
-
}
|
|
1977
|
-
|
|
1978
|
-
.m-c44ba933 > .m-d8b5e363 {
|
|
1979
|
-
background-color: var(--_thumb-bg);
|
|
1980
|
-
}
|
|
1981
|
-
|
|
1982
|
-
@media (hover: hover) {
|
|
1983
|
-
[data-mantine-color-scheme='light'] .m-c44ba933:hover {
|
|
1984
|
-
--_scrollbar-bg: var(--mantine-color-gray-0);
|
|
1985
|
-
--_thumb-bg: rgba(0, 0, 0, 0.5);
|
|
1986
|
-
}
|
|
1987
|
-
|
|
1988
|
-
[data-mantine-color-scheme='dark'] .m-c44ba933:hover {
|
|
1989
|
-
--_scrollbar-bg: var(--mantine-color-dark-8);
|
|
1990
|
-
--_thumb-bg: rgba(255, 255, 255, 0.5);
|
|
1991
|
-
}
|
|
1992
|
-
}
|
|
1993
|
-
|
|
1994
|
-
@media (hover: none) {
|
|
1995
|
-
[data-mantine-color-scheme='light'] .m-c44ba933:active {
|
|
1996
|
-
--_scrollbar-bg: var(--mantine-color-gray-0);
|
|
1997
|
-
--_thumb-bg: rgba(0, 0, 0, 0.5);
|
|
1998
|
-
}
|
|
1999
|
-
|
|
2000
|
-
[data-mantine-color-scheme='dark'] .m-c44ba933:active {
|
|
2001
|
-
--_scrollbar-bg: var(--mantine-color-dark-8);
|
|
2002
|
-
--_thumb-bg: rgba(255, 255, 255, 0.5);
|
|
2003
|
-
}
|
|
2004
|
-
}
|
|
2005
|
-
|
|
2006
|
-
.m-c44ba933[data-hidden],
|
|
2007
|
-
.m-c44ba933[data-state='hidden'] {
|
|
2008
|
-
--_scrollbar-display: none;
|
|
2009
|
-
}
|
|
2010
|
-
|
|
2011
|
-
.m-c44ba933[data-orientation='vertical'] {
|
|
2012
|
-
--_scrollbar-width: var(--scrollarea-scrollbar-size);
|
|
2013
|
-
|
|
2014
|
-
top: 0;
|
|
2015
|
-
bottom: var(--sa-corner-width);
|
|
2016
|
-
right: 0;
|
|
2017
|
-
}
|
|
2018
|
-
|
|
2019
|
-
[dir="rtl"] .m-c44ba933[data-orientation='vertical'] {
|
|
2020
|
-
right: unset;
|
|
2021
|
-
left: 0;
|
|
2022
|
-
}
|
|
2023
|
-
|
|
2024
|
-
.m-c44ba933[data-orientation='horizontal'] {
|
|
2025
|
-
--_scrollbar-height: var(--scrollarea-scrollbar-size);
|
|
2026
|
-
--_scrollbar-direction: column;
|
|
2027
|
-
|
|
2028
|
-
bottom: 0;
|
|
2029
|
-
left: 0;
|
|
2030
|
-
right: var(--sa-corner-height);
|
|
2031
|
-
}
|
|
2032
|
-
|
|
2033
|
-
[dir="rtl"] .m-c44ba933[data-orientation='horizontal'] {
|
|
2034
|
-
right: 0;
|
|
2035
|
-
left: var(--sa-corner-height);
|
|
2036
|
-
}
|
|
2037
|
-
|
|
2038
|
-
.m-d8b5e363 {
|
|
2039
|
-
flex: 1 1;
|
|
2040
|
-
border-radius: var(--scrollarea-scrollbar-size);
|
|
2041
|
-
position: relative;
|
|
2042
|
-
transition: background-color 150ms ease;
|
|
2043
|
-
overflow: hidden;
|
|
2044
|
-
background-color: var(--_thumb-bg);
|
|
2045
|
-
}
|
|
2046
|
-
|
|
2047
|
-
.m-d8b5e363::before {
|
|
2048
|
-
content: '""';
|
|
2049
|
-
position: absolute;
|
|
2050
|
-
top: 50%;
|
|
2051
|
-
left: 50%;
|
|
2052
|
-
transform: translate(-50%, -50%);
|
|
2053
|
-
width: 100%;
|
|
2054
|
-
height: 100%;
|
|
2055
|
-
min-width: calc(2.75rem * var(--mantine-scale));
|
|
2056
|
-
min-height: calc(2.75rem * var(--mantine-scale));
|
|
2057
|
-
}
|
|
2058
|
-
|
|
2059
|
-
[data-mantine-color-scheme='light'] .m-d8b5e363 {
|
|
2060
|
-
--_thumb-bg: rgba(0, 0, 0, 0.4);
|
|
2061
|
-
}
|
|
2062
|
-
|
|
2063
|
-
[data-mantine-color-scheme='dark'] .m-d8b5e363 {
|
|
2064
|
-
--_thumb-bg: rgba(255, 255, 255, 0.4);
|
|
2065
|
-
}
|
|
2066
|
-
|
|
2067
|
-
.m-21657268 {
|
|
2068
|
-
position: absolute;
|
|
2069
|
-
opacity: var(--_corner-opacity, 0);
|
|
2070
|
-
transition: opacity 150ms ease;
|
|
2071
|
-
background-color: var(--_corner-bg);
|
|
2072
|
-
display: var(--_corner-display, block);
|
|
2073
|
-
right: 0;
|
|
2074
|
-
bottom: 0;
|
|
2194
|
+
color: var(--_color);
|
|
2075
2195
|
}
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
right: unset;
|
|
2079
|
-
left: 0;
|
|
2080
|
-
bottom: 0;
|
|
2196
|
+
[data-mantine-color-scheme='light'] .m-2943220b {
|
|
2197
|
+
--_color: var(--mantine-color-gray-6);
|
|
2081
2198
|
}
|
|
2199
|
+
[data-mantine-color-scheme='dark'] .m-2943220b {
|
|
2200
|
+
--_color: var(--mantine-color-dark-3);
|
|
2201
|
+
}
|
|
2202
|
+
.m-2943220b[data-error] {
|
|
2203
|
+
--_color: var(--mantine-color-error);
|
|
2204
|
+
}
|
|
2082
2205
|
|
|
2083
|
-
|
|
2084
|
-
|
|
2206
|
+
/* ------- OptionsDropdown ------- */
|
|
2207
|
+
.m-71d052f9 {
|
|
2208
|
+
margin-right: calc(var(--combobox-padding) * -1);
|
|
2209
|
+
}
|
|
2210
|
+
[dir="rtl"] .m-71d052f9 {
|
|
2211
|
+
margin-left: calc(var(--combobox-padding) * -1);
|
|
2212
|
+
margin-right: 0;
|
|
2085
2213
|
}
|
|
2086
2214
|
|
|
2087
|
-
|
|
2088
|
-
|
|
2215
|
+
.m-390b5f4 {
|
|
2216
|
+
display: flex;
|
|
2217
|
+
align-items: center;
|
|
2218
|
+
flex-direction: var(--_flex-direction, row);
|
|
2219
|
+
gap: calc(0.5rem * var(--mantine-scale));
|
|
2089
2220
|
}
|
|
2090
2221
|
|
|
2091
|
-
.m-
|
|
2092
|
-
|
|
2222
|
+
.m-390b5f4[data-reverse] {
|
|
2223
|
+
justify-content: space-between;
|
|
2093
2224
|
}
|
|
2094
2225
|
|
|
2095
|
-
.m-
|
|
2096
|
-
|
|
2226
|
+
.m-8ee53fc2 {
|
|
2227
|
+
opacity: 0.4;
|
|
2228
|
+
width: 0.8em;
|
|
2229
|
+
height: 0.8em;
|
|
2230
|
+
}
|
|
2231
|
+
|
|
2232
|
+
[data-combobox-selected] .m-8ee53fc2 {
|
|
2233
|
+
opacity: 1;
|
|
2097
2234
|
}
|
|
2098
2235
|
|
|
2099
2236
|
.m-5f75b09e {
|
|
@@ -2827,6 +2964,67 @@ body {
|
|
|
2827
2964
|
border-top-width: calc(var(--button-border-width) / 2);
|
|
2828
2965
|
}
|
|
2829
2966
|
|
|
2967
|
+
.m-e615b15f {
|
|
2968
|
+
position: relative;
|
|
2969
|
+
overflow: hidden;
|
|
2970
|
+
display: flex;
|
|
2971
|
+
flex-direction: column;
|
|
2972
|
+
background-color: var(--_card-bg);
|
|
2973
|
+
padding: var(--card-padding);
|
|
2974
|
+
color: var(--mantine-color-text);
|
|
2975
|
+
}
|
|
2976
|
+
|
|
2977
|
+
[data-mantine-color-scheme='light'] .m-e615b15f {
|
|
2978
|
+
--_card-bg: var(--mantine-color-white);
|
|
2979
|
+
}
|
|
2980
|
+
|
|
2981
|
+
[data-mantine-color-scheme='dark'] .m-e615b15f {
|
|
2982
|
+
--_card-bg: var(--mantine-color-dark-6);
|
|
2983
|
+
}
|
|
2984
|
+
|
|
2985
|
+
.m-599a2148 {
|
|
2986
|
+
display: block;
|
|
2987
|
+
margin-left: calc(var(--card-padding) * -1);
|
|
2988
|
+
margin-right: calc(var(--card-padding) * -1);
|
|
2989
|
+
padding-left: var(--_card-section-padding, 0);
|
|
2990
|
+
padding-right: var(--_card-section-padding, 0);
|
|
2991
|
+
border-top: var(--_card-section-border-top, unset);
|
|
2992
|
+
border-bottom: var(--_card-section-border-bottom, unset);
|
|
2993
|
+
margin-top: var(--_card-section-mt);
|
|
2994
|
+
margin-bottom: var(--_card-section-mb);
|
|
2995
|
+
}
|
|
2996
|
+
|
|
2997
|
+
.m-599a2148[data-first-section] {
|
|
2998
|
+
--_card-section-mt: calc(var(--card-padding) * -1);
|
|
2999
|
+
--_card-section-border-top: none !important;
|
|
3000
|
+
}
|
|
3001
|
+
|
|
3002
|
+
.m-599a2148[data-last-section] {
|
|
3003
|
+
--_card-section-mb: calc(var(--card-padding) * -1);
|
|
3004
|
+
--_card-section-border-bottom: none !important;
|
|
3005
|
+
}
|
|
3006
|
+
|
|
3007
|
+
.m-599a2148[data-inherit-padding] {
|
|
3008
|
+
--_card-section-padding: var(--card-padding);
|
|
3009
|
+
}
|
|
3010
|
+
|
|
3011
|
+
.m-599a2148[data-with-border] {
|
|
3012
|
+
--_card-section-border-top: calc(0.0625rem * var(--mantine-scale)) solid var(--_card-section-border-color);
|
|
3013
|
+
--_card-section-border-bottom: calc(0.0625rem * var(--mantine-scale)) solid var(--_card-section-border-color);
|
|
3014
|
+
}
|
|
3015
|
+
|
|
3016
|
+
.m-599a2148 + .m-599a2148 {
|
|
3017
|
+
--_card-section-border-top: none !important;
|
|
3018
|
+
}
|
|
3019
|
+
|
|
3020
|
+
[data-mantine-color-scheme='light'] .m-599a2148 {
|
|
3021
|
+
--_card-section-border-color: var(--mantine-color-gray-3);
|
|
3022
|
+
}
|
|
3023
|
+
|
|
3024
|
+
[data-mantine-color-scheme='dark'] .m-599a2148 {
|
|
3025
|
+
--_card-section-border-color: var(--mantine-color-dark-4);
|
|
3026
|
+
}
|
|
3027
|
+
|
|
2830
3028
|
.m-4451eb3a {
|
|
2831
3029
|
display: var(--center-display);
|
|
2832
3030
|
align-items: center;
|
|
@@ -3346,108 +3544,6 @@ body {
|
|
|
3346
3544
|
margin-right: var(--mantine-spacing-xs);
|
|
3347
3545
|
}
|
|
3348
3546
|
|
|
3349
|
-
.m-615af6c9 {
|
|
3350
|
-
line-height: 1;
|
|
3351
|
-
padding: 0;
|
|
3352
|
-
margin: 0;
|
|
3353
|
-
font-weight: 400;
|
|
3354
|
-
font-size: var(--mantine-font-size-md);
|
|
3355
|
-
}
|
|
3356
|
-
|
|
3357
|
-
.m-b5489c3c {
|
|
3358
|
-
display: flex;
|
|
3359
|
-
justify-content: space-between;
|
|
3360
|
-
align-items: center;
|
|
3361
|
-
padding: var(--mb-padding);
|
|
3362
|
-
padding-right: var(--_pr, calc(var(--mb-padding) - calc(0.3125rem * var(--mantine-scale))));
|
|
3363
|
-
padding-left: var(--_pl, var(--mb-padding));
|
|
3364
|
-
position: sticky;
|
|
3365
|
-
top: 0;
|
|
3366
|
-
background-color: var(--mantine-color-body);
|
|
3367
|
-
z-index: 1000;
|
|
3368
|
-
}
|
|
3369
|
-
|
|
3370
|
-
[dir="rtl"] .m-b5489c3c {
|
|
3371
|
-
--_pr: var(--mb-padding);
|
|
3372
|
-
--_pl: calc(var(--mb-padding) - calc(0.3125rem * var(--mantine-scale)));
|
|
3373
|
-
}
|
|
3374
|
-
|
|
3375
|
-
.m-60c222c7 {
|
|
3376
|
-
position: fixed;
|
|
3377
|
-
width: 100%;
|
|
3378
|
-
top: 0;
|
|
3379
|
-
bottom: 0;
|
|
3380
|
-
z-index: calc(var(--mb-z-index) + 1);
|
|
3381
|
-
pointer-events: none;
|
|
3382
|
-
}
|
|
3383
|
-
|
|
3384
|
-
.m-fd1ab0aa {
|
|
3385
|
-
pointer-events: all;
|
|
3386
|
-
box-shadow: var(--mb-shadow);
|
|
3387
|
-
}
|
|
3388
|
-
|
|
3389
|
-
.m-606cb269 {
|
|
3390
|
-
margin-left: var(--_close-ml, auto);
|
|
3391
|
-
margin-right: var(--_close-mr, 0);
|
|
3392
|
-
}
|
|
3393
|
-
|
|
3394
|
-
[dir="rtl"] .m-606cb269 {
|
|
3395
|
-
--_close-ml: 0;
|
|
3396
|
-
--_close-mr: auto;
|
|
3397
|
-
}
|
|
3398
|
-
|
|
3399
|
-
.m-5df29311 {
|
|
3400
|
-
padding: var(--mb-padding);
|
|
3401
|
-
padding-top: var(--_pt, var(--mb-padding));
|
|
3402
|
-
}
|
|
3403
|
-
|
|
3404
|
-
.m-5df29311:not(:only-child) {
|
|
3405
|
-
--_pt: 0;
|
|
3406
|
-
}
|
|
3407
|
-
|
|
3408
|
-
.m-1b7284a3 {
|
|
3409
|
-
outline: 0;
|
|
3410
|
-
-webkit-tap-highlight-color: transparent;
|
|
3411
|
-
display: block;
|
|
3412
|
-
touch-action: manipulation;
|
|
3413
|
-
text-decoration: none;
|
|
3414
|
-
border-radius: var(--paper-radius);
|
|
3415
|
-
box-shadow: var(--paper-shadow);
|
|
3416
|
-
background-color: var(--mantine-color-body);
|
|
3417
|
-
border: var(--_paper-border-width, 0) solid var(--_paper-border-color, transparent);
|
|
3418
|
-
}
|
|
3419
|
-
|
|
3420
|
-
.m-1b7284a3[data-with-border] {
|
|
3421
|
-
--_paper-border-width: 1px;
|
|
3422
|
-
}
|
|
3423
|
-
|
|
3424
|
-
[data-mantine-color-scheme='light'] .m-1b7284a3[data-with-border] {
|
|
3425
|
-
--_paper-border-color: var(--mantine-color-gray-3);
|
|
3426
|
-
}
|
|
3427
|
-
|
|
3428
|
-
[data-mantine-color-scheme='dark'] .m-1b7284a3[data-with-border] {
|
|
3429
|
-
--_paper-border-color: var(--mantine-color-dark-4);
|
|
3430
|
-
}
|
|
3431
|
-
|
|
3432
|
-
.m-9814e45f {
|
|
3433
|
-
inset: 0;
|
|
3434
|
-
position: var(--_overlay-position, absolute);
|
|
3435
|
-
background: var(--overlay-bg);
|
|
3436
|
-
backdrop-filter: var(--overlay-filter);
|
|
3437
|
-
border-radius: var(--overlay-radius);
|
|
3438
|
-
z-index: var(--overlay-z-index);
|
|
3439
|
-
}
|
|
3440
|
-
|
|
3441
|
-
.m-9814e45f[data-fixed] {
|
|
3442
|
-
--_overlay-position: fixed;
|
|
3443
|
-
}
|
|
3444
|
-
|
|
3445
|
-
.m-9814e45f[data-center] {
|
|
3446
|
-
display: flex;
|
|
3447
|
-
align-items: center;
|
|
3448
|
-
justify-content: center;
|
|
3449
|
-
}
|
|
3450
|
-
|
|
3451
3547
|
.m-f11b401e {
|
|
3452
3548
|
--drawer-size-xs: calc(20rem * var(--mantine-scale));
|
|
3453
3549
|
--drawer-size-sm: calc(23.75rem * var(--mantine-scale));
|
|
@@ -3557,20 +3653,6 @@ body {
|
|
|
3557
3653
|
--_col-mr: var(--col-offset, 0);
|
|
3558
3654
|
}
|
|
3559
3655
|
|
|
3560
|
-
.m-4081bf90 {
|
|
3561
|
-
display: flex;
|
|
3562
|
-
flex-direction: row;
|
|
3563
|
-
flex-wrap: var(--group-wrap, wrap);
|
|
3564
|
-
justify-content: var(--group-justify);
|
|
3565
|
-
align-items: var(--group-align);
|
|
3566
|
-
gap: var(--group-gap);
|
|
3567
|
-
}
|
|
3568
|
-
|
|
3569
|
-
.m-4081bf90[data-grow] > * {
|
|
3570
|
-
flex-grow: 1;
|
|
3571
|
-
max-width: var(--group-child-width);
|
|
3572
|
-
}
|
|
3573
|
-
|
|
3574
3656
|
.m-bcb3f3c2 {
|
|
3575
3657
|
background-color: var(--_mark-bg);
|
|
3576
3658
|
color: var(--mantine-color-black);
|
|
@@ -3584,6 +3666,78 @@ body {
|
|
|
3584
3666
|
--_mark-bg: var(--mark-bg-dark);
|
|
3585
3667
|
}
|
|
3586
3668
|
|
|
3669
|
+
.m-9e117634 {
|
|
3670
|
+
display: block;
|
|
3671
|
+
object-fit: var(--image-object-fit, cover);
|
|
3672
|
+
width: 100%;
|
|
3673
|
+
border-radius: var(--image-radius, 0);
|
|
3674
|
+
}
|
|
3675
|
+
|
|
3676
|
+
@keyframes m-885901b1 {
|
|
3677
|
+
0% {
|
|
3678
|
+
opacity: 0.6;
|
|
3679
|
+
box-shadow: 0 0 calc(0.03125rem * var(--mantine-scale)) 0 var(--indicator-color);
|
|
3680
|
+
}
|
|
3681
|
+
|
|
3682
|
+
100% {
|
|
3683
|
+
opacity: 0;
|
|
3684
|
+
box-shadow: 0 0 calc(0.03125rem * var(--mantine-scale)) calc(0.275rem * var(--mantine-scale)) var(--indicator-color);
|
|
3685
|
+
}
|
|
3686
|
+
}
|
|
3687
|
+
|
|
3688
|
+
.m-e5262200 {
|
|
3689
|
+
position: relative;
|
|
3690
|
+
display: var(--_indicator-display, block);
|
|
3691
|
+
}
|
|
3692
|
+
|
|
3693
|
+
.m-e5262200[data-inline] {
|
|
3694
|
+
--_indicator-display: inline-block;
|
|
3695
|
+
}
|
|
3696
|
+
|
|
3697
|
+
.m-760d1fb1 {
|
|
3698
|
+
position: absolute;
|
|
3699
|
+
top: var(--indicator-top);
|
|
3700
|
+
left: var(--indicator-left);
|
|
3701
|
+
right: var(--indicator-right);
|
|
3702
|
+
bottom: var(--indicator-bottom);
|
|
3703
|
+
transform: translate(var(--indicator-translate-x), var(--indicator-translate-y));
|
|
3704
|
+
min-width: var(--indicator-size);
|
|
3705
|
+
height: var(--indicator-size);
|
|
3706
|
+
border-radius: var(--indicator-radius, calc(62.5rem * var(--mantine-scale)));
|
|
3707
|
+
z-index: var(--indicator-z-index, 200);
|
|
3708
|
+
display: flex;
|
|
3709
|
+
align-items: center;
|
|
3710
|
+
justify-content: center;
|
|
3711
|
+
font-size: var(--mantine-font-size-xs);
|
|
3712
|
+
padding-left: var(--_indicator-padding, 0);
|
|
3713
|
+
padding-right: var(--_indicator-padding, 0);
|
|
3714
|
+
background-color: var(--indicator-color);
|
|
3715
|
+
border: var(--_indicator-border);
|
|
3716
|
+
color: var(--mantine-color-white);
|
|
3717
|
+
white-space: nowrap;
|
|
3718
|
+
}
|
|
3719
|
+
|
|
3720
|
+
.m-760d1fb1::before {
|
|
3721
|
+
content: '';
|
|
3722
|
+
position: absolute;
|
|
3723
|
+
inset: 0;
|
|
3724
|
+
background-color: var(--indicator-color);
|
|
3725
|
+
border-radius: var(--indicator-radius, calc(62.5rem * var(--mantine-scale)));
|
|
3726
|
+
z-index: -1;
|
|
3727
|
+
}
|
|
3728
|
+
|
|
3729
|
+
.m-760d1fb1[data-with-label] {
|
|
3730
|
+
--_indicator-padding: calc(var(--mantine-spacing-xs) / 2);
|
|
3731
|
+
}
|
|
3732
|
+
|
|
3733
|
+
.m-760d1fb1[data-with-border] {
|
|
3734
|
+
--_indicator-border: calc(0.125rem * var(--mantine-scale)) solid var(--mantine-color-body);
|
|
3735
|
+
}
|
|
3736
|
+
|
|
3737
|
+
.m-760d1fb1[data-processing]::before {
|
|
3738
|
+
animation: m-885901b1 1000ms linear infinite;
|
|
3739
|
+
}
|
|
3740
|
+
|
|
3587
3741
|
.m-dc6f14e2 {
|
|
3588
3742
|
--kbd-fz-xs: calc(0.625rem * var(--mantine-scale));
|
|
3589
3743
|
--kbd-fz-sm: calc(0.75rem * var(--mantine-scale));
|
|
@@ -3727,7 +3881,7 @@ body {
|
|
|
3727
3881
|
.m-9df02822[data-full-screen] .m-54c44539 {
|
|
3728
3882
|
--_content-flex: 0 0 100%;
|
|
3729
3883
|
--_content-max-height: auto;
|
|
3730
|
-
--_content-height:
|
|
3884
|
+
--_content-height: 100dvh;
|
|
3731
3885
|
}
|
|
3732
3886
|
|
|
3733
3887
|
.m-9df02822[data-full-screen] .m-1f958f16 {
|
|
@@ -3747,7 +3901,7 @@ body {
|
|
|
3747
3901
|
.m-54c44539 {
|
|
3748
3902
|
flex: var(--_content-flex, 0 0 var(--modal-size));
|
|
3749
3903
|
max-width: 100%;
|
|
3750
|
-
max-height: var(--_content-max-height, calc(
|
|
3904
|
+
max-height: var(--_content-max-height, calc(100dvh - var(--modal-y-offset) * 2));
|
|
3751
3905
|
height: var(--_content-height, auto);
|
|
3752
3906
|
overflow-y: auto;
|
|
3753
3907
|
}
|
|
@@ -4161,6 +4315,66 @@ body {
|
|
|
4161
4315
|
pointer-events: none;
|
|
4162
4316
|
}
|
|
4163
4317
|
|
|
4318
|
+
.m-f61ca620 {
|
|
4319
|
+
--psi-button-size-xs: calc(1.375rem * var(--mantine-scale));
|
|
4320
|
+
--psi-button-size-sm: calc(1.625rem * var(--mantine-scale));
|
|
4321
|
+
--psi-button-size-md: calc(1.75rem * var(--mantine-scale));
|
|
4322
|
+
--psi-button-size-lg: calc(2rem * var(--mantine-scale));
|
|
4323
|
+
--psi-button-size-xl: calc(2.5rem * var(--mantine-scale));
|
|
4324
|
+
|
|
4325
|
+
--psi-icon-size-xs: calc(0.75rem * var(--mantine-scale));
|
|
4326
|
+
--psi-icon-size-sm: calc(0.9375rem * var(--mantine-scale));
|
|
4327
|
+
--psi-icon-size-md: calc(1.0625rem * var(--mantine-scale));
|
|
4328
|
+
--psi-icon-size-lg: calc(1.1875rem * var(--mantine-scale));
|
|
4329
|
+
--psi-icon-size-xl: calc(1.3125rem * var(--mantine-scale));
|
|
4330
|
+
}
|
|
4331
|
+
|
|
4332
|
+
.m-ccf8da4c {
|
|
4333
|
+
position: relative;
|
|
4334
|
+
overflow: hidden;
|
|
4335
|
+
}
|
|
4336
|
+
|
|
4337
|
+
.m-f2d85dd2 {
|
|
4338
|
+
font-family: var(--mantine-font-family);
|
|
4339
|
+
background-color: transparent;
|
|
4340
|
+
border: 0;
|
|
4341
|
+
padding-right: var(--_input-padding-right);
|
|
4342
|
+
padding-left: var(--_input-padding-left);
|
|
4343
|
+
position: absolute;
|
|
4344
|
+
inset: 0;
|
|
4345
|
+
outline: 0;
|
|
4346
|
+
font-size: inherit;
|
|
4347
|
+
}
|
|
4348
|
+
|
|
4349
|
+
[data-disabled] .m-f2d85dd2,
|
|
4350
|
+
.m-f2d85dd2:disabled {
|
|
4351
|
+
cursor: not-allowed;
|
|
4352
|
+
}
|
|
4353
|
+
|
|
4354
|
+
.m-f2d85dd2::placeholder {
|
|
4355
|
+
color: var(--_input-placeholder-color);
|
|
4356
|
+
}
|
|
4357
|
+
|
|
4358
|
+
.m-b1072d44 {
|
|
4359
|
+
width: var(--psi-button-size);
|
|
4360
|
+
height: var(--psi-button-size);
|
|
4361
|
+
min-width: var(--psi-button-size);
|
|
4362
|
+
min-height: var(--psi-button-size);
|
|
4363
|
+
}
|
|
4364
|
+
|
|
4365
|
+
.m-f1cb205a {
|
|
4366
|
+
--pin-input-size-xs: calc(1.875rem * var(--mantine-scale));
|
|
4367
|
+
--pin-input-size-sm: calc(2.25rem * var(--mantine-scale));
|
|
4368
|
+
--pin-input-size-md: calc(2.625rem * var(--mantine-scale));
|
|
4369
|
+
--pin-input-size-lg: calc(3.125rem * var(--mantine-scale));
|
|
4370
|
+
--pin-input-size-xl: calc(3.75rem * var(--mantine-scale));
|
|
4371
|
+
}
|
|
4372
|
+
|
|
4373
|
+
.m-cb288ead {
|
|
4374
|
+
width: var(--pin-input-size);
|
|
4375
|
+
height: var(--pin-input-size);
|
|
4376
|
+
}
|
|
4377
|
+
|
|
4164
4378
|
@keyframes m-81a374bd {
|
|
4165
4379
|
0% {
|
|
4166
4380
|
background-position: 0 0;
|