@ng-matero/extensions 19.2.0 → 19.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/checkbox-group/checkbox-group.d.ts +3 -3
- package/colorpicker/colorpicker-animations.d.ts +3 -2
- package/colorpicker/colorpicker-content.scss +31 -0
- package/colorpicker/colorpicker.d.ts +21 -4
- package/core/tokens/m2/mtx/_select.scss +1 -0
- package/core/tokens/m3/mtx/_select.scss +4 -0
- package/datetimepicker/calendar.d.ts +0 -3
- package/datetimepicker/datetimepicker-animations.d.ts +5 -4
- package/datetimepicker/datetimepicker-content.scss +48 -1
- package/datetimepicker/datetimepicker.d.ts +22 -6
- package/datetimepicker/month-view.d.ts +0 -3
- package/drawer/drawer-animations.d.ts +6 -3
- package/drawer/drawer-container.d.ts +7 -4
- package/drawer/drawer-container.scss +55 -8
- package/fesm2022/mtxAlert.mjs +7 -7
- package/fesm2022/mtxButton.mjs +7 -7
- package/fesm2022/mtxCheckboxGroup.mjs +9 -7
- package/fesm2022/mtxCheckboxGroup.mjs.map +1 -1
- package/fesm2022/mtxColorpicker.mjs +137 -48
- package/fesm2022/mtxColorpicker.mjs.map +1 -1
- package/fesm2022/mtxColumnResize.mjs +40 -40
- package/fesm2022/mtxCore.mjs +21 -21
- package/fesm2022/mtxDatetimepicker.mjs +302 -156
- package/fesm2022/mtxDatetimepicker.mjs.map +1 -1
- package/fesm2022/mtxDialog.mjs +10 -10
- package/fesm2022/mtxDrawer.mjs +118 -46
- package/fesm2022/mtxDrawer.mjs.map +1 -1
- package/fesm2022/mtxGrid.mjs +87 -86
- package/fesm2022/mtxGrid.mjs.map +1 -1
- package/fesm2022/mtxLoader.mjs +7 -7
- package/fesm2022/mtxPhotoviewer.mjs +7 -7
- package/fesm2022/mtxPopover.mjs +220 -143
- package/fesm2022/mtxPopover.mjs.map +1 -1
- package/fesm2022/mtxProgress.mjs +7 -7
- package/fesm2022/mtxSelect.mjs +54 -54
- package/fesm2022/mtxSelect.mjs.map +1 -1
- package/fesm2022/mtxSplit.mjs +10 -10
- package/fesm2022/mtxTooltip.mjs +103 -54
- package/fesm2022/mtxTooltip.mjs.map +1 -1
- package/grid/column-menu.d.ts +3 -1
- package/grid/grid.d.ts +6 -1
- package/grid/grid.scss +18 -4
- package/grid/interfaces.d.ts +2 -0
- package/package.json +2 -3
- package/popover/popover-animations.d.ts +9 -12
- package/popover/popover-trigger.d.ts +11 -2
- package/popover/popover.d.ts +14 -9
- package/popover/popover.scss +40 -0
- package/prebuilt-themes/deeppurple-amber.css +1 -1
- package/prebuilt-themes/indigo-pink.css +1 -1
- package/prebuilt-themes/pink-bluegrey.css +1 -1
- package/prebuilt-themes/purple-green.css +1 -1
- package/select/select.scss +22 -33
- package/split/split.d.ts +3 -3
- package/tooltip/tooltip-animations.d.ts +3 -2
- package/tooltip/tooltip.d.ts +19 -11
- package/tooltip/tooltip.scss +1 -1
package/popover/popover.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { AnimationEvent } from '@angular/animations';
|
|
2
1
|
import { Direction } from '@angular/cdk/bidi';
|
|
3
2
|
import { EventEmitter, InjectionToken, OnDestroy, OnInit, TemplateRef } from '@angular/core';
|
|
4
3
|
import { Subject } from 'rxjs';
|
|
@@ -8,9 +7,14 @@ import { MtxPopoverPosition, MtxPopoverTriggerEvent, PopoverCloseReason } from '
|
|
|
8
7
|
import * as i0 from "@angular/core";
|
|
9
8
|
/** Injection token to be used to override the default options for `mtx-popover`. */
|
|
10
9
|
export declare const MTX_POPOVER_DEFAULT_OPTIONS: InjectionToken<MtxPopoverDefaultOptions>;
|
|
11
|
-
/**
|
|
10
|
+
/**
|
|
11
|
+
* @docs-private
|
|
12
|
+
* @deprecated No longer used, will be removed.
|
|
13
|
+
* @breaking-change 21.0.0
|
|
14
|
+
*/
|
|
12
15
|
export declare function MTX_POPOVER_DEFAULT_OPTIONS_FACTORY(): MtxPopoverDefaultOptions;
|
|
13
16
|
export declare class MtxPopover implements MtxPopoverPanel, OnInit, OnDestroy {
|
|
17
|
+
private _injector;
|
|
14
18
|
private _changeDetectorRef;
|
|
15
19
|
private _elementRef;
|
|
16
20
|
private _unusedNgZone;
|
|
@@ -18,6 +22,9 @@ export declare class MtxPopover implements MtxPopoverPanel, OnInit, OnDestroy {
|
|
|
18
22
|
private _previousElevation?;
|
|
19
23
|
private _elevationPrefix;
|
|
20
24
|
private _baseElevation;
|
|
25
|
+
private _exitFallbackTimeout;
|
|
26
|
+
/** Whether animations are currently disabled. */
|
|
27
|
+
protected _animationsDisabled: boolean;
|
|
21
28
|
/** Config object to be passed into the popover's class. */
|
|
22
29
|
_classList: {
|
|
23
30
|
[key: string]: boolean;
|
|
@@ -25,7 +32,7 @@ export declare class MtxPopover implements MtxPopoverPanel, OnInit, OnDestroy {
|
|
|
25
32
|
/** Current state of the panel animation. */
|
|
26
33
|
_panelAnimationState: 'void' | 'enter';
|
|
27
34
|
/** Emits whenever an animation on the popover completes. */
|
|
28
|
-
readonly _animationDone: Subject<
|
|
35
|
+
readonly _animationDone: Subject<"void" | "enter">;
|
|
29
36
|
/** Whether the popover is animating. */
|
|
30
37
|
_isAnimating: boolean;
|
|
31
38
|
/** Closing disabled on popover */
|
|
@@ -105,6 +112,7 @@ export declare class MtxPopover implements MtxPopoverPanel, OnInit, OnDestroy {
|
|
|
105
112
|
*/
|
|
106
113
|
lazyContent?: MtxPopoverContent;
|
|
107
114
|
readonly panelId: string;
|
|
115
|
+
constructor();
|
|
108
116
|
ngOnInit(): void;
|
|
109
117
|
ngOnDestroy(): void;
|
|
110
118
|
/** Handle a keyboard event from the popover, delegating to the appropriate action. */
|
|
@@ -124,13 +132,10 @@ export declare class MtxPopover implements MtxPopoverPanel, OnInit, OnDestroy {
|
|
|
124
132
|
setPositionClasses(pos?: MtxPopoverPosition): void;
|
|
125
133
|
/** Sets the popover-panel's elevation. */
|
|
126
134
|
setElevation(): void;
|
|
127
|
-
/** Starts the enter animation. */
|
|
128
|
-
_startAnimation(): void;
|
|
129
|
-
/** Resets the panel animation to its initial state. */
|
|
130
|
-
_resetAnimation(): void;
|
|
131
135
|
/** Callback that is invoked when the panel animation completes. */
|
|
132
|
-
_onAnimationDone(
|
|
133
|
-
_onAnimationStart(
|
|
136
|
+
protected _onAnimationDone(state: string): void;
|
|
137
|
+
protected _onAnimationStart(state: string): void;
|
|
138
|
+
_setIsOpen(isOpen: boolean): void;
|
|
134
139
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxPopover, never>;
|
|
135
140
|
static ɵcmp: i0.ɵɵComponentDeclaration<MtxPopover, "mtx-popover", ["mtxPopover"], { "backdropClass": { "alias": "backdropClass"; "required": false; }; "ariaLabel": { "alias": "aria-label"; "required": false; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; }; "ariaDescribedby": { "alias": "aria-describedby"; "required": false; }; "triggerEvent": { "alias": "triggerEvent"; "required": false; }; "enterDelay": { "alias": "enterDelay"; "required": false; }; "leaveDelay": { "alias": "leaveDelay"; "required": false; }; "position": { "alias": "position"; "required": false; }; "xOffset": { "alias": "xOffset"; "required": false; }; "yOffset": { "alias": "yOffset"; "required": false; }; "arrowWidth": { "alias": "arrowWidth"; "required": false; }; "arrowHeight": { "alias": "arrowHeight"; "required": false; }; "arrowOffsetX": { "alias": "arrowOffsetX"; "required": false; }; "arrowOffsetY": { "alias": "arrowOffsetY"; "required": false; }; "hideArrow": { "alias": "hideArrow"; "required": false; }; "closeOnPanelClick": { "alias": "closeOnPanelClick"; "required": false; }; "closeOnBackdropClick": { "alias": "closeOnBackdropClick"; "required": false; }; "focusTrapEnabled": { "alias": "focusTrapEnabled"; "required": false; }; "focusTrapAutoCaptureEnabled": { "alias": "focusTrapAutoCaptureEnabled"; "required": false; }; "hasBackdrop": { "alias": "hasBackdrop"; "required": false; }; "panelClass": { "alias": "class"; "required": false; }; "classList": { "alias": "classList"; "required": false; }; }, { "closed": "closed"; }, ["lazyContent"], ["*"], true, never>;
|
|
136
141
|
static ngAcceptInputType_hideArrow: unknown;
|
package/popover/popover.scss
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* stylelint-disable keyframes-name-pattern */
|
|
1
2
|
@use '../core/tokens/token-utils';
|
|
2
3
|
@use '../core/tokens/m2/mtx/popover' as tokens-mtx-popover;
|
|
3
4
|
|
|
@@ -5,12 +6,35 @@ $arrow-size: 1em; // 16px default
|
|
|
5
6
|
|
|
6
7
|
$_tokens: tokens-mtx-popover.$prefix, tokens-mtx-popover.get-token-slots();
|
|
7
8
|
|
|
9
|
+
@keyframes _mtx-popover-enter {
|
|
10
|
+
from {
|
|
11
|
+
opacity: 0;
|
|
12
|
+
transform: scale(0.8);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
to {
|
|
16
|
+
opacity: 1;
|
|
17
|
+
transform: none;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
@keyframes _mtx-popover-exit {
|
|
22
|
+
from {
|
|
23
|
+
opacity: 1;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
to {
|
|
27
|
+
opacity: 0;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
8
31
|
.mtx-popover-panel {
|
|
9
32
|
position: relative;
|
|
10
33
|
max-height: calc(100vh - 48px);
|
|
11
34
|
padding: 8px;
|
|
12
35
|
font-size: inherit; // It can change the arrow size
|
|
13
36
|
outline: 0;
|
|
37
|
+
animation: _mtx-popover-enter 120ms cubic-bezier(0, 0, 0.2, 1);
|
|
14
38
|
|
|
15
39
|
@include token-utils.use-tokens($_tokens...) {
|
|
16
40
|
@include token-utils.create-token-slot(border-radius, container-shape);
|
|
@@ -18,6 +42,22 @@ $_tokens: tokens-mtx-popover.$prefix, tokens-mtx-popover.get-token-slots();
|
|
|
18
42
|
@include token-utils.create-token-slot(color, text-color);
|
|
19
43
|
}
|
|
20
44
|
|
|
45
|
+
&.mtx-popover-panel-exit-animation {
|
|
46
|
+
animation: _mtx-popover-exit 100ms 25ms linear forwards;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&.mtx-popover-panel-animations-disabled {
|
|
50
|
+
animation: none;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
&.mtx-popover-panel-animating {
|
|
54
|
+
pointer-events: none;
|
|
55
|
+
|
|
56
|
+
// &:has(.mtx-popover-content:empty) {
|
|
57
|
+
// display: none;
|
|
58
|
+
// }
|
|
59
|
+
}
|
|
60
|
+
|
|
21
61
|
&[class*='mtx-popover-below'] {
|
|
22
62
|
margin-top: calc(#{$arrow-size * .5} + 2px);
|
|
23
63
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.mat-button-loading .mdc-button__label,.mat-button-loading .mat-icon{visibility:hidden}.mat-button-loading .mat-mdc-progress-spinner{position:absolute;top:calc(50% - 12px);left:calc(50% - 12px)}.mat-column-resize-table.cdk-column-resize-with-resized-column{table-layout:fixed}.mat-column-resize-flex .mat-mdc-header-cell,.mat-column-resize-flex .mat-mdc-cell{box-sizing:border-box;min-width:32px}.mat-mdc-header-cell{position:relative}.mat-resizable{box-sizing:border-box}.mat-mdc-header-cell:not(.mat-resizable)::after,.mat-resizable-handle{position:absolute;bottom:0;top:0;right:0;width:1px;background:rgba(0,0,0,0);transition:background 300ms cubic-bezier(0.55, 0, 0.55, 0.2)}.mat-mdc-header-cell:not(.mat-resizable)::after{content:""}[dir=rtl] .mat-mdc-header-cell:not(.mat-resizable)::after,[dir=rtl] .mat-resizable-handle{left:0;right:auto}[dir=rtl] .mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-header-cell,[dir=rtl] .mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell{border-left:none}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell{border-right:none}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell:not(.mat-resizable)::after{background-color:var(--mtx-grid-resizable-handle-disabled-background-color, var(--mat-sys-outline-variant))}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle{background-color:var(--mtx-grid-resizable-handle-hover-background-color, var(--mat-sys-primary))}.mat-resizable.cdk-resizable-overlay-thumb-active>.mat-resizable-handle{opacity:0;transition:none}.mat-resizable-handle:focus,.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle:focus{outline:none;background-color:var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary))}.mat-column-resize-overlay-thumb{background:rgba(0,0,0,0);cursor:col-resize;width:100%;height:100%;transition:background 300ms cubic-bezier(0.55, 0, 0.55, 0.2);-webkit-user-select:none;user-select:none}.mat-column-resize-overlay-thumb:active{will-change:transform;background:linear-gradient(90deg, transparent, transparent 7px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 7px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 9px, transparent 9px, transparent)}.mat-column-resize-overlay-thumb:active .mat-column-resize-overlay-thumb-top{background:linear-gradient(90deg, transparent, transparent 4px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 4px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 12px, transparent 12px, transparent)}.mat-column-resize-overlay-thumb-top{width:100%}html{--mtx-alert-container-shape:4px}html{--mtx-alert-outline-color:transparent;--mtx-alert-background-color:whitesmoke;--mtx-alert-text-color:rgba(0, 0, 0, 0.87);--mtx-alert-info-outline-color:transparent;--mtx-alert-info-background-color:#bbdefb;--mtx-alert-info-text-color:rgba(0, 0, 0, 0.87);--mtx-alert-success-outline-color:transparent;--mtx-alert-success-background-color:#c8e6c9;--mtx-alert-success-text-color:rgba(0, 0, 0, 0.87);--mtx-alert-warning-outline-color:transparent;--mtx-alert-warning-background-color:#ffecb3;--mtx-alert-warning-text-color:rgba(0, 0, 0, 0.87);--mtx-alert-danger-outline-color:transparent;--mtx-alert-danger-background-color:#ffcdd2;--mtx-alert-danger-text-color:rgba(0, 0, 0, 0.87)}html{--mtx-colorpicker-toggle-active-state-icon-color:#673ab7;--mtx-colorpicker-toggle-icon-color:rgba(0, 0, 0, 0.54)}.mtx-colorpicker-toggle-active.mat-accent{--mtx-colorpicker-toggle-active-state-icon-color:#ffd740}.mtx-colorpicker-toggle-active.mat-warn{--mtx-colorpicker-toggle-active-state-icon-color:#f44336}html{--mtx-datetimepicker-container-elevation-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);--mtx-datetimepicker-container-touch-elevation-shadow:0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);--mtx-datetimepicker-container-shape:4px;--mtx-datetimepicker-container-touch-shape:4px;--mtx-datetimepicker-selector-container-shape:4px}html{--mtx-datetimepicker-calendar-header-background-color:#673ab7;--mtx-datetimepicker-calendar-date-selected-state-text-color:white;--mtx-datetimepicker-calendar-date-selected-state-background-color:#673ab7;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(103, 58, 183, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:white;--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(103, 58, 183, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(103, 58, 183, 0.3);--mtx-datetimepicker-clock-hand-background-color:#673ab7;--mtx-datetimepicker-clock-cell-selected-state-background-color:#673ab7;--mtx-datetimepicker-time-input-active-state-text-color:#673ab7;--mtx-datetimepicker-time-input-active-state-background-color:rgba(103, 58, 183, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#673ab7;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(103, 58, 183, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(103, 58, 183, 0.2);--mtx-datetimepicker-toggle-active-state-icon-color:#673ab7;--mtx-datetimepicker-toggle-icon-color:rgba(0, 0, 0, 0.54);--mtx-datetimepicker-calendar-body-label-text-color:rgba(0, 0, 0, 0.54);--mtx-datetimepicker-calendar-body-week-number-text-color:rgba(0, 0, 0, 0.54);--mtx-datetimepicker-calendar-header-text-color:white;--mtx-datetimepicker-calendar-header-divider-color:transparent;--mtx-datetimepicker-calendar-table-header-text-color:rgba(0, 0, 0, 0.54);--mtx-datetimepicker-calendar-date-today-outline-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-calendar-date-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-calendar-date-outline-color:transparent;--mtx-datetimepicker-calendar-date-disabled-state-text-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-container-background-color:white;--mtx-datetimepicker-container-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-clock-dial-background-color:rgba(0, 0, 0, 0.12);--mtx-datetimepicker-clock-cell-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-clock-cell-hover-state-background-color:rgba(0, 0, 0, 0.04);--mtx-datetimepicker-clock-cell-disabled-state-text-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-time-input-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-time-input-background-color:rgba(0, 0, 0, 0.12);--mtx-datetimepicker-time-input-focus-state-background-color:#fafafa;--mtx-datetimepicker-time-input-warn-state-outline-color:#f44336;--mtx-datetimepicker-time-ampm-text-color:rgba(0, 0, 0, 0.75);--mtx-datetimepicker-time-ampm-outline-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-time-ampm-selected-state-text-color:rgba(0, 0, 0, 0.87)}.mtx-datetimepicker-content.mat-accent{--mtx-datetimepicker-calendar-header-background-color:#ffd740;--mtx-datetimepicker-calendar-date-selected-state-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-calendar-date-selected-state-background-color:#ffd740;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(255, 215, 64, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(255, 215, 64, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(255, 215, 64, 0.3);--mtx-datetimepicker-clock-hand-background-color:#ffd740;--mtx-datetimepicker-clock-cell-selected-state-background-color:#ffd740;--mtx-datetimepicker-time-input-active-state-text-color:#ffd740;--mtx-datetimepicker-time-input-active-state-background-color:rgba(255, 215, 64, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#ffd740;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(255, 215, 64, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(255, 215, 64, 0.2)}.mtx-datetimepicker-content.mat-warn{--mtx-datetimepicker-calendar-header-background-color:#f44336;--mtx-datetimepicker-calendar-date-selected-state-text-color:white;--mtx-datetimepicker-calendar-date-selected-state-background-color:#f44336;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(244, 67, 54, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:white;--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(244, 67, 54, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(244, 67, 54, 0.3);--mtx-datetimepicker-clock-hand-background-color:#f44336;--mtx-datetimepicker-clock-cell-selected-state-background-color:#f44336;--mtx-datetimepicker-time-input-active-state-text-color:#f44336;--mtx-datetimepicker-time-input-active-state-background-color:rgba(244, 67, 54, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#f44336;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(244, 67, 54, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(244, 67, 54, 0.2)}.mtx-datetimepicker-toggle-active.mat-accent{--mtx-datetimepicker-toggle-active-state-icon-color:#ffd740}.mtx-datetimepicker-toggle-active.mat-warn{--mtx-datetimepicker-toggle-active-state-icon-color:#f44336}html{--mtx-datetimepicker-calendar-text-font:Roboto, sans-serif;--mtx-datetimepicker-calendar-text-size:13px;--mtx-datetimepicker-calendar-body-label-text-size:14px;--mtx-datetimepicker-calendar-body-label-text-weight:500;--mtx-datetimepicker-calendar-period-button-text-size:14px;--mtx-datetimepicker-calendar-period-button-text-weight:500;--mtx-datetimepicker-calendar-table-header-text-size:11px;--mtx-datetimepicker-calendar-table-header-text-weight:400;--mtx-datetimepicker-clock-text-size:14px}html{--mtx-drawer-container-shape:0;--mtx-drawer-container-elevation-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12)}html{--mtx-drawer-container-background-color:white;--mtx-drawer-container-text-color:rgba(0, 0, 0, 0.87)}html{--mtx-grid-container-shape:0;--mtx-grid-table-cell-min-width:80px}html{--mtx-grid-outline-color:rgba(0, 0, 0, 0.2);--mtx-grid-column-menu-text-color:rgba(0, 0, 0, 0.87);--mtx-grid-column-menu-divider-color:rgba(0, 0, 0, 0.12);--mtx-grid-table-footer-background-color:whitesmoke;--mtx-grid-table-row-striped-background-color:#f5f5f5;--mtx-grid-table-row-hover-background-color:#eee;--mtx-grid-table-row-selected-background-color:#eee;--mtx-grid-table-row-selected-hover-background-color:#e0e0e0;--mtx-grid-table-cell-selected-outline-color:#ffd740;--mtx-grid-resizable-handle-active-background-color:#673ab7;--mtx-grid-resizable-handle-hover-background-color:#673ab7;--mtx-grid-resizable-handle-disabled-background-color:rgba(0, 0, 0, 0.12)}html{--mtx-grid-row-expand-button-size:48px}html{--mtx-loader-backdrop-background-color:rgba(250, 250, 250, 0.75)}html{--mtx-popover-container-shape:4px;--mtx-popover-base-elevation-level:8}html{--mtx-popover-outline-color:rgba(0, 0, 0, 0.12);--mtx-popover-background-color:white;--mtx-popover-text-color:rgba(0, 0, 0, 0.87)}html{--mtx-progress-container-shape:4px}html{--mtx-progress-track-color:rgba(0, 0, 0, 0.04);--mtx-progress-indicator-color:rgba(0, 0, 0, 0.12);--mtx-progress-text-color:rgba(0, 0, 0, 0.87);--mtx-progress-info-indicator-color:#2196f3;--mtx-progress-info-text-color:white;--mtx-progress-success-indicator-color:#4caf50;--mtx-progress-success-text-color:white;--mtx-progress-warning-indicator-color:#ff9800;--mtx-progress-warning-text-color:white;--mtx-progress-danger-indicator-color:#f44336;--mtx-progress-danger-text-color:white}html{--mtx-progress-text-size:12px}html{--mtx-select-container-shape:4px;--mtx-select-container-elevation-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12)}html{--mtx-select-option-selected-state-text-color:#673ab7;--mtx-select-container-text-color:rgba(0, 0, 0, 0.87);--mtx-select-placeholder-text-color:rgba(0, 0, 0, 0.38);--mtx-select-disabled-text-color:rgba(0, 0, 0, 0.38);--mtx-select-multiple-value-background-color:#e0e0e0;--mtx-select-multiple-value-outline-color:rgba(0, 0, 0, 0.12);--mtx-select-multiple-value-icon-hover-background-color:rgba(0, 0, 0, 0.12);--mtx-select-clear-icon-color:rgba(0, 0, 0, 0.54);--mtx-select-clear-icon-hover-color:#f44336;--mtx-select-enabled-arrow-color:rgba(0, 0, 0, 0.54);--mtx-select-disabled-arrow-color:rgba(0, 0, 0, 0.38);--mtx-select-invalid-arrow-color:#f44336;--mtx-select-panel-background-color:white;--mtx-select-panel-divider-color:rgba(0, 0, 0, 0.12);--mtx-select-optgroup-label-text-color:rgba(0, 0, 0, 0.54);--mtx-select-option-label-text-color:rgba(0, 0, 0, 0.87);--mtx-select-option-selected-state-background-color:rgba(0, 0, 0, 0.04);--mtx-select-option-hover-state-background-color:rgba(0, 0, 0, 0.04);--mtx-select-option-disabled-state-text-color:rgba(0, 0, 0, 0.38)}.ng-dropdown-panel.mat-accent{--mtx-select-option-selected-state-text-color:#ffd740}.ng-dropdown-panel.mat-warn{--mtx-select-option-selected-state-text-color:#f44336}html{--mtx-split-gutter-hover-state-background-color:#673ab7;--mtx-split-gutter-background-color:rgba(0, 0, 0, 0.12)}.mtx-split>.mtx-split-gutter.mat-accent:hover{--mtx-split-gutter-hover-state-background-color:#ffd740}.mtx-split>.mtx-split-gutter.mat-warn:hover{--mtx-split-gutter-hover-state-background-color:#f44336}html{--mdc-plain-tooltip-container-shape:4px;--mdc-plain-tooltip-supporting-text-line-height:16px}html{--mdc-plain-tooltip-container-color:#616161;--mdc-plain-tooltip-supporting-text-color:#fff}html{--mdc-plain-tooltip-supporting-text-font:Roboto, sans-serif;--mdc-plain-tooltip-supporting-text-size:12px;--mdc-plain-tooltip-supporting-text-weight:400;--mdc-plain-tooltip-supporting-text-tracking:0.0333333333em}
|
|
1
|
+
.mat-button-loading .mdc-button__label,.mat-button-loading .mat-icon{visibility:hidden}.mat-button-loading .mat-mdc-progress-spinner{position:absolute;top:calc(50% - 12px);left:calc(50% - 12px)}.mat-column-resize-table.cdk-column-resize-with-resized-column{table-layout:fixed}.mat-column-resize-flex .mat-mdc-header-cell,.mat-column-resize-flex .mat-mdc-cell{box-sizing:border-box;min-width:32px}.mat-mdc-header-cell{position:relative}.mat-resizable{box-sizing:border-box}.mat-mdc-header-cell:not(.mat-resizable)::after,.mat-resizable-handle{position:absolute;bottom:0;top:0;right:0;width:1px;background:rgba(0,0,0,0);transition:background 300ms cubic-bezier(0.55, 0, 0.55, 0.2)}.mat-mdc-header-cell:not(.mat-resizable)::after{content:""}[dir=rtl] .mat-mdc-header-cell:not(.mat-resizable)::after,[dir=rtl] .mat-resizable-handle{left:0;right:auto}[dir=rtl] .mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-header-cell,[dir=rtl] .mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell{border-left:none}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell{border-right:none}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell:not(.mat-resizable)::after{background-color:var(--mtx-grid-resizable-handle-disabled-background-color, var(--mat-sys-outline-variant))}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle{background-color:var(--mtx-grid-resizable-handle-hover-background-color, var(--mat-sys-primary))}.mat-resizable.cdk-resizable-overlay-thumb-active>.mat-resizable-handle{opacity:0;transition:none}.mat-resizable-handle:focus,.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle:focus{outline:none;background-color:var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary))}.mat-column-resize-overlay-thumb{background:rgba(0,0,0,0);cursor:col-resize;width:100%;height:100%;transition:background 300ms cubic-bezier(0.55, 0, 0.55, 0.2);-webkit-user-select:none;user-select:none}.mat-column-resize-overlay-thumb:active{will-change:transform;background:linear-gradient(90deg, transparent, transparent 7px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 7px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 9px, transparent 9px, transparent)}.mat-column-resize-overlay-thumb:active .mat-column-resize-overlay-thumb-top{background:linear-gradient(90deg, transparent, transparent 4px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 4px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 12px, transparent 12px, transparent)}.mat-column-resize-overlay-thumb-top{width:100%}html{--mtx-alert-container-shape:4px}html{--mtx-alert-outline-color:transparent;--mtx-alert-background-color:whitesmoke;--mtx-alert-text-color:rgba(0, 0, 0, 0.87);--mtx-alert-info-outline-color:transparent;--mtx-alert-info-background-color:#bbdefb;--mtx-alert-info-text-color:rgba(0, 0, 0, 0.87);--mtx-alert-success-outline-color:transparent;--mtx-alert-success-background-color:#c8e6c9;--mtx-alert-success-text-color:rgba(0, 0, 0, 0.87);--mtx-alert-warning-outline-color:transparent;--mtx-alert-warning-background-color:#ffecb3;--mtx-alert-warning-text-color:rgba(0, 0, 0, 0.87);--mtx-alert-danger-outline-color:transparent;--mtx-alert-danger-background-color:#ffcdd2;--mtx-alert-danger-text-color:rgba(0, 0, 0, 0.87)}html{--mtx-colorpicker-toggle-active-state-icon-color:#673ab7;--mtx-colorpicker-toggle-icon-color:rgba(0, 0, 0, 0.54)}.mtx-colorpicker-toggle-active.mat-accent{--mtx-colorpicker-toggle-active-state-icon-color:#ffd740}.mtx-colorpicker-toggle-active.mat-warn{--mtx-colorpicker-toggle-active-state-icon-color:#f44336}html{--mtx-datetimepicker-container-elevation-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);--mtx-datetimepicker-container-touch-elevation-shadow:0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);--mtx-datetimepicker-container-shape:4px;--mtx-datetimepicker-container-touch-shape:4px;--mtx-datetimepicker-selector-container-shape:4px}html{--mtx-datetimepicker-calendar-header-background-color:#673ab7;--mtx-datetimepicker-calendar-date-selected-state-text-color:white;--mtx-datetimepicker-calendar-date-selected-state-background-color:#673ab7;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(103, 58, 183, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:white;--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(103, 58, 183, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(103, 58, 183, 0.3);--mtx-datetimepicker-clock-hand-background-color:#673ab7;--mtx-datetimepicker-clock-cell-selected-state-background-color:#673ab7;--mtx-datetimepicker-time-input-active-state-text-color:#673ab7;--mtx-datetimepicker-time-input-active-state-background-color:rgba(103, 58, 183, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#673ab7;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(103, 58, 183, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(103, 58, 183, 0.2);--mtx-datetimepicker-toggle-active-state-icon-color:#673ab7;--mtx-datetimepicker-toggle-icon-color:rgba(0, 0, 0, 0.54);--mtx-datetimepicker-calendar-body-label-text-color:rgba(0, 0, 0, 0.54);--mtx-datetimepicker-calendar-body-week-number-text-color:rgba(0, 0, 0, 0.54);--mtx-datetimepicker-calendar-header-text-color:white;--mtx-datetimepicker-calendar-header-divider-color:transparent;--mtx-datetimepicker-calendar-table-header-text-color:rgba(0, 0, 0, 0.54);--mtx-datetimepicker-calendar-date-today-outline-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-calendar-date-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-calendar-date-outline-color:transparent;--mtx-datetimepicker-calendar-date-disabled-state-text-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-container-background-color:white;--mtx-datetimepicker-container-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-clock-dial-background-color:rgba(0, 0, 0, 0.12);--mtx-datetimepicker-clock-cell-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-clock-cell-hover-state-background-color:rgba(0, 0, 0, 0.04);--mtx-datetimepicker-clock-cell-disabled-state-text-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-time-input-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-time-input-background-color:rgba(0, 0, 0, 0.12);--mtx-datetimepicker-time-input-focus-state-background-color:#fafafa;--mtx-datetimepicker-time-input-warn-state-outline-color:#f44336;--mtx-datetimepicker-time-ampm-text-color:rgba(0, 0, 0, 0.75);--mtx-datetimepicker-time-ampm-outline-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-time-ampm-selected-state-text-color:rgba(0, 0, 0, 0.87)}.mtx-datetimepicker-content.mat-accent{--mtx-datetimepicker-calendar-header-background-color:#ffd740;--mtx-datetimepicker-calendar-date-selected-state-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-calendar-date-selected-state-background-color:#ffd740;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(255, 215, 64, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(255, 215, 64, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(255, 215, 64, 0.3);--mtx-datetimepicker-clock-hand-background-color:#ffd740;--mtx-datetimepicker-clock-cell-selected-state-background-color:#ffd740;--mtx-datetimepicker-time-input-active-state-text-color:#ffd740;--mtx-datetimepicker-time-input-active-state-background-color:rgba(255, 215, 64, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#ffd740;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(255, 215, 64, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(255, 215, 64, 0.2)}.mtx-datetimepicker-content.mat-warn{--mtx-datetimepicker-calendar-header-background-color:#f44336;--mtx-datetimepicker-calendar-date-selected-state-text-color:white;--mtx-datetimepicker-calendar-date-selected-state-background-color:#f44336;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(244, 67, 54, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:white;--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(244, 67, 54, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(244, 67, 54, 0.3);--mtx-datetimepicker-clock-hand-background-color:#f44336;--mtx-datetimepicker-clock-cell-selected-state-background-color:#f44336;--mtx-datetimepicker-time-input-active-state-text-color:#f44336;--mtx-datetimepicker-time-input-active-state-background-color:rgba(244, 67, 54, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#f44336;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(244, 67, 54, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(244, 67, 54, 0.2)}.mtx-datetimepicker-toggle-active.mat-accent{--mtx-datetimepicker-toggle-active-state-icon-color:#ffd740}.mtx-datetimepicker-toggle-active.mat-warn{--mtx-datetimepicker-toggle-active-state-icon-color:#f44336}html{--mtx-datetimepicker-calendar-text-font:Roboto, sans-serif;--mtx-datetimepicker-calendar-text-size:13px;--mtx-datetimepicker-calendar-body-label-text-size:14px;--mtx-datetimepicker-calendar-body-label-text-weight:500;--mtx-datetimepicker-calendar-period-button-text-size:14px;--mtx-datetimepicker-calendar-period-button-text-weight:500;--mtx-datetimepicker-calendar-table-header-text-size:11px;--mtx-datetimepicker-calendar-table-header-text-weight:400;--mtx-datetimepicker-clock-text-size:14px}html{--mtx-drawer-container-shape:0;--mtx-drawer-container-elevation-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12)}html{--mtx-drawer-container-background-color:white;--mtx-drawer-container-text-color:rgba(0, 0, 0, 0.87)}html{--mtx-grid-container-shape:0;--mtx-grid-table-cell-min-width:80px}html{--mtx-grid-outline-color:rgba(0, 0, 0, 0.2);--mtx-grid-column-menu-text-color:rgba(0, 0, 0, 0.87);--mtx-grid-column-menu-divider-color:rgba(0, 0, 0, 0.12);--mtx-grid-table-footer-background-color:whitesmoke;--mtx-grid-table-row-striped-background-color:#f5f5f5;--mtx-grid-table-row-hover-background-color:#eee;--mtx-grid-table-row-selected-background-color:#eee;--mtx-grid-table-row-selected-hover-background-color:#e0e0e0;--mtx-grid-table-cell-selected-outline-color:#ffd740;--mtx-grid-resizable-handle-active-background-color:#673ab7;--mtx-grid-resizable-handle-hover-background-color:#673ab7;--mtx-grid-resizable-handle-disabled-background-color:rgba(0, 0, 0, 0.12)}html{--mtx-grid-row-expand-button-size:48px}html{--mtx-loader-backdrop-background-color:rgba(250, 250, 250, 0.75)}html{--mtx-popover-container-shape:4px;--mtx-popover-base-elevation-level:8}html{--mtx-popover-outline-color:rgba(0, 0, 0, 0.12);--mtx-popover-background-color:white;--mtx-popover-text-color:rgba(0, 0, 0, 0.87)}html{--mtx-progress-container-shape:4px}html{--mtx-progress-track-color:rgba(0, 0, 0, 0.04);--mtx-progress-indicator-color:rgba(0, 0, 0, 0.12);--mtx-progress-text-color:rgba(0, 0, 0, 0.87);--mtx-progress-info-indicator-color:#2196f3;--mtx-progress-info-text-color:white;--mtx-progress-success-indicator-color:#4caf50;--mtx-progress-success-text-color:white;--mtx-progress-warning-indicator-color:#ff9800;--mtx-progress-warning-text-color:white;--mtx-progress-danger-indicator-color:#f44336;--mtx-progress-danger-text-color:white}html{--mtx-progress-text-size:12px}html{--mtx-select-container-shape:4px;--mtx-select-container-elevation-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12)}html{--mtx-select-option-selected-state-text-color:#673ab7;--mtx-select-container-text-color:rgba(0, 0, 0, 0.87);--mtx-select-placeholder-text-color:rgba(0, 0, 0, 0.38);--mtx-select-disabled-text-color:rgba(0, 0, 0, 0.38);--mtx-select-multiple-value-background-color:#e0e0e0;--mtx-select-multiple-value-outline-color:rgba(0, 0, 0, 0.12);--mtx-select-multiple-value-disabled-outline-color:rgba(0, 0, 0, 0.06);--mtx-select-multiple-value-icon-hover-background-color:rgba(0, 0, 0, 0.12);--mtx-select-clear-icon-color:rgba(0, 0, 0, 0.54);--mtx-select-clear-icon-hover-color:#f44336;--mtx-select-enabled-arrow-color:rgba(0, 0, 0, 0.54);--mtx-select-disabled-arrow-color:rgba(0, 0, 0, 0.38);--mtx-select-invalid-arrow-color:#f44336;--mtx-select-panel-background-color:white;--mtx-select-panel-divider-color:rgba(0, 0, 0, 0.12);--mtx-select-optgroup-label-text-color:rgba(0, 0, 0, 0.54);--mtx-select-option-label-text-color:rgba(0, 0, 0, 0.87);--mtx-select-option-selected-state-background-color:rgba(0, 0, 0, 0.04);--mtx-select-option-hover-state-background-color:rgba(0, 0, 0, 0.04);--mtx-select-option-disabled-state-text-color:rgba(0, 0, 0, 0.38)}.ng-dropdown-panel.mat-accent{--mtx-select-option-selected-state-text-color:#ffd740}.ng-dropdown-panel.mat-warn{--mtx-select-option-selected-state-text-color:#f44336}html{--mtx-split-gutter-hover-state-background-color:#673ab7;--mtx-split-gutter-background-color:rgba(0, 0, 0, 0.12)}.mtx-split>.mtx-split-gutter.mat-accent:hover{--mtx-split-gutter-hover-state-background-color:#ffd740}.mtx-split>.mtx-split-gutter.mat-warn:hover{--mtx-split-gutter-hover-state-background-color:#f44336}html{--mdc-plain-tooltip-container-shape:4px;--mdc-plain-tooltip-supporting-text-line-height:16px}html{--mdc-plain-tooltip-container-color:#616161;--mdc-plain-tooltip-supporting-text-color:#fff}html{--mdc-plain-tooltip-supporting-text-font:Roboto, sans-serif;--mdc-plain-tooltip-supporting-text-size:12px;--mdc-plain-tooltip-supporting-text-weight:400;--mdc-plain-tooltip-supporting-text-tracking:0.0333333333em}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.mat-button-loading .mdc-button__label,.mat-button-loading .mat-icon{visibility:hidden}.mat-button-loading .mat-mdc-progress-spinner{position:absolute;top:calc(50% - 12px);left:calc(50% - 12px)}.mat-column-resize-table.cdk-column-resize-with-resized-column{table-layout:fixed}.mat-column-resize-flex .mat-mdc-header-cell,.mat-column-resize-flex .mat-mdc-cell{box-sizing:border-box;min-width:32px}.mat-mdc-header-cell{position:relative}.mat-resizable{box-sizing:border-box}.mat-mdc-header-cell:not(.mat-resizable)::after,.mat-resizable-handle{position:absolute;bottom:0;top:0;right:0;width:1px;background:rgba(0,0,0,0);transition:background 300ms cubic-bezier(0.55, 0, 0.55, 0.2)}.mat-mdc-header-cell:not(.mat-resizable)::after{content:""}[dir=rtl] .mat-mdc-header-cell:not(.mat-resizable)::after,[dir=rtl] .mat-resizable-handle{left:0;right:auto}[dir=rtl] .mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-header-cell,[dir=rtl] .mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell{border-left:none}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell{border-right:none}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell:not(.mat-resizable)::after{background-color:var(--mtx-grid-resizable-handle-disabled-background-color, var(--mat-sys-outline-variant))}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle{background-color:var(--mtx-grid-resizable-handle-hover-background-color, var(--mat-sys-primary))}.mat-resizable.cdk-resizable-overlay-thumb-active>.mat-resizable-handle{opacity:0;transition:none}.mat-resizable-handle:focus,.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle:focus{outline:none;background-color:var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary))}.mat-column-resize-overlay-thumb{background:rgba(0,0,0,0);cursor:col-resize;width:100%;height:100%;transition:background 300ms cubic-bezier(0.55, 0, 0.55, 0.2);-webkit-user-select:none;user-select:none}.mat-column-resize-overlay-thumb:active{will-change:transform;background:linear-gradient(90deg, transparent, transparent 7px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 7px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 9px, transparent 9px, transparent)}.mat-column-resize-overlay-thumb:active .mat-column-resize-overlay-thumb-top{background:linear-gradient(90deg, transparent, transparent 4px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 4px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 12px, transparent 12px, transparent)}.mat-column-resize-overlay-thumb-top{width:100%}html{--mtx-alert-container-shape:4px}html{--mtx-alert-outline-color:transparent;--mtx-alert-background-color:whitesmoke;--mtx-alert-text-color:rgba(0, 0, 0, 0.87);--mtx-alert-info-outline-color:transparent;--mtx-alert-info-background-color:#bbdefb;--mtx-alert-info-text-color:rgba(0, 0, 0, 0.87);--mtx-alert-success-outline-color:transparent;--mtx-alert-success-background-color:#c8e6c9;--mtx-alert-success-text-color:rgba(0, 0, 0, 0.87);--mtx-alert-warning-outline-color:transparent;--mtx-alert-warning-background-color:#ffecb3;--mtx-alert-warning-text-color:rgba(0, 0, 0, 0.87);--mtx-alert-danger-outline-color:transparent;--mtx-alert-danger-background-color:#ffcdd2;--mtx-alert-danger-text-color:rgba(0, 0, 0, 0.87)}html{--mtx-colorpicker-toggle-active-state-icon-color:#3f51b5;--mtx-colorpicker-toggle-icon-color:rgba(0, 0, 0, 0.54)}.mtx-colorpicker-toggle-active.mat-accent{--mtx-colorpicker-toggle-active-state-icon-color:#ff4081}.mtx-colorpicker-toggle-active.mat-warn{--mtx-colorpicker-toggle-active-state-icon-color:#f44336}html{--mtx-datetimepicker-container-elevation-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);--mtx-datetimepicker-container-touch-elevation-shadow:0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);--mtx-datetimepicker-container-shape:4px;--mtx-datetimepicker-container-touch-shape:4px;--mtx-datetimepicker-selector-container-shape:4px}html{--mtx-datetimepicker-calendar-header-background-color:#3f51b5;--mtx-datetimepicker-calendar-date-selected-state-text-color:white;--mtx-datetimepicker-calendar-date-selected-state-background-color:#3f51b5;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(63, 81, 181, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:white;--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(63, 81, 181, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(63, 81, 181, 0.3);--mtx-datetimepicker-clock-hand-background-color:#3f51b5;--mtx-datetimepicker-clock-cell-selected-state-background-color:#3f51b5;--mtx-datetimepicker-time-input-active-state-text-color:#3f51b5;--mtx-datetimepicker-time-input-active-state-background-color:rgba(63, 81, 181, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#3f51b5;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(63, 81, 181, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(63, 81, 181, 0.2);--mtx-datetimepicker-toggle-active-state-icon-color:#3f51b5;--mtx-datetimepicker-toggle-icon-color:rgba(0, 0, 0, 0.54);--mtx-datetimepicker-calendar-body-label-text-color:rgba(0, 0, 0, 0.54);--mtx-datetimepicker-calendar-body-week-number-text-color:rgba(0, 0, 0, 0.54);--mtx-datetimepicker-calendar-header-text-color:white;--mtx-datetimepicker-calendar-header-divider-color:transparent;--mtx-datetimepicker-calendar-table-header-text-color:rgba(0, 0, 0, 0.54);--mtx-datetimepicker-calendar-date-today-outline-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-calendar-date-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-calendar-date-outline-color:transparent;--mtx-datetimepicker-calendar-date-disabled-state-text-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-container-background-color:white;--mtx-datetimepicker-container-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-clock-dial-background-color:rgba(0, 0, 0, 0.12);--mtx-datetimepicker-clock-cell-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-clock-cell-hover-state-background-color:rgba(0, 0, 0, 0.04);--mtx-datetimepicker-clock-cell-disabled-state-text-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-time-input-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-time-input-background-color:rgba(0, 0, 0, 0.12);--mtx-datetimepicker-time-input-focus-state-background-color:#fafafa;--mtx-datetimepicker-time-input-warn-state-outline-color:#f44336;--mtx-datetimepicker-time-ampm-text-color:rgba(0, 0, 0, 0.75);--mtx-datetimepicker-time-ampm-outline-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-time-ampm-selected-state-text-color:rgba(0, 0, 0, 0.87)}.mtx-datetimepicker-content.mat-accent{--mtx-datetimepicker-calendar-header-background-color:#ff4081;--mtx-datetimepicker-calendar-date-selected-state-text-color:white;--mtx-datetimepicker-calendar-date-selected-state-background-color:#ff4081;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(255, 64, 129, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:white;--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(255, 64, 129, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(255, 64, 129, 0.3);--mtx-datetimepicker-clock-hand-background-color:#ff4081;--mtx-datetimepicker-clock-cell-selected-state-background-color:#ff4081;--mtx-datetimepicker-time-input-active-state-text-color:#ff4081;--mtx-datetimepicker-time-input-active-state-background-color:rgba(255, 64, 129, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#ff4081;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(255, 64, 129, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(255, 64, 129, 0.2)}.mtx-datetimepicker-content.mat-warn{--mtx-datetimepicker-calendar-header-background-color:#f44336;--mtx-datetimepicker-calendar-date-selected-state-text-color:white;--mtx-datetimepicker-calendar-date-selected-state-background-color:#f44336;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(244, 67, 54, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:white;--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(244, 67, 54, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(244, 67, 54, 0.3);--mtx-datetimepicker-clock-hand-background-color:#f44336;--mtx-datetimepicker-clock-cell-selected-state-background-color:#f44336;--mtx-datetimepicker-time-input-active-state-text-color:#f44336;--mtx-datetimepicker-time-input-active-state-background-color:rgba(244, 67, 54, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#f44336;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(244, 67, 54, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(244, 67, 54, 0.2)}.mtx-datetimepicker-toggle-active.mat-accent{--mtx-datetimepicker-toggle-active-state-icon-color:#ff4081}.mtx-datetimepicker-toggle-active.mat-warn{--mtx-datetimepicker-toggle-active-state-icon-color:#f44336}html{--mtx-datetimepicker-calendar-text-font:Roboto, sans-serif;--mtx-datetimepicker-calendar-text-size:13px;--mtx-datetimepicker-calendar-body-label-text-size:14px;--mtx-datetimepicker-calendar-body-label-text-weight:500;--mtx-datetimepicker-calendar-period-button-text-size:14px;--mtx-datetimepicker-calendar-period-button-text-weight:500;--mtx-datetimepicker-calendar-table-header-text-size:11px;--mtx-datetimepicker-calendar-table-header-text-weight:400;--mtx-datetimepicker-clock-text-size:14px}html{--mtx-drawer-container-shape:0;--mtx-drawer-container-elevation-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12)}html{--mtx-drawer-container-background-color:white;--mtx-drawer-container-text-color:rgba(0, 0, 0, 0.87)}html{--mtx-grid-container-shape:0;--mtx-grid-table-cell-min-width:80px}html{--mtx-grid-outline-color:rgba(0, 0, 0, 0.2);--mtx-grid-column-menu-text-color:rgba(0, 0, 0, 0.87);--mtx-grid-column-menu-divider-color:rgba(0, 0, 0, 0.12);--mtx-grid-table-footer-background-color:whitesmoke;--mtx-grid-table-row-striped-background-color:#f5f5f5;--mtx-grid-table-row-hover-background-color:#eee;--mtx-grid-table-row-selected-background-color:#eee;--mtx-grid-table-row-selected-hover-background-color:#e0e0e0;--mtx-grid-table-cell-selected-outline-color:#ff4081;--mtx-grid-resizable-handle-active-background-color:#3f51b5;--mtx-grid-resizable-handle-hover-background-color:#3f51b5;--mtx-grid-resizable-handle-disabled-background-color:rgba(0, 0, 0, 0.12)}html{--mtx-grid-row-expand-button-size:48px}html{--mtx-loader-backdrop-background-color:rgba(250, 250, 250, 0.75)}html{--mtx-popover-container-shape:4px;--mtx-popover-base-elevation-level:8}html{--mtx-popover-outline-color:rgba(0, 0, 0, 0.12);--mtx-popover-background-color:white;--mtx-popover-text-color:rgba(0, 0, 0, 0.87)}html{--mtx-progress-container-shape:4px}html{--mtx-progress-track-color:rgba(0, 0, 0, 0.04);--mtx-progress-indicator-color:rgba(0, 0, 0, 0.12);--mtx-progress-text-color:rgba(0, 0, 0, 0.87);--mtx-progress-info-indicator-color:#2196f3;--mtx-progress-info-text-color:white;--mtx-progress-success-indicator-color:#4caf50;--mtx-progress-success-text-color:white;--mtx-progress-warning-indicator-color:#ff9800;--mtx-progress-warning-text-color:white;--mtx-progress-danger-indicator-color:#f44336;--mtx-progress-danger-text-color:white}html{--mtx-progress-text-size:12px}html{--mtx-select-container-shape:4px;--mtx-select-container-elevation-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12)}html{--mtx-select-option-selected-state-text-color:#3f51b5;--mtx-select-container-text-color:rgba(0, 0, 0, 0.87);--mtx-select-placeholder-text-color:rgba(0, 0, 0, 0.38);--mtx-select-disabled-text-color:rgba(0, 0, 0, 0.38);--mtx-select-multiple-value-background-color:#e0e0e0;--mtx-select-multiple-value-outline-color:rgba(0, 0, 0, 0.12);--mtx-select-multiple-value-icon-hover-background-color:rgba(0, 0, 0, 0.12);--mtx-select-clear-icon-color:rgba(0, 0, 0, 0.54);--mtx-select-clear-icon-hover-color:#f44336;--mtx-select-enabled-arrow-color:rgba(0, 0, 0, 0.54);--mtx-select-disabled-arrow-color:rgba(0, 0, 0, 0.38);--mtx-select-invalid-arrow-color:#f44336;--mtx-select-panel-background-color:white;--mtx-select-panel-divider-color:rgba(0, 0, 0, 0.12);--mtx-select-optgroup-label-text-color:rgba(0, 0, 0, 0.54);--mtx-select-option-label-text-color:rgba(0, 0, 0, 0.87);--mtx-select-option-selected-state-background-color:rgba(0, 0, 0, 0.04);--mtx-select-option-hover-state-background-color:rgba(0, 0, 0, 0.04);--mtx-select-option-disabled-state-text-color:rgba(0, 0, 0, 0.38)}.ng-dropdown-panel.mat-accent{--mtx-select-option-selected-state-text-color:#ff4081}.ng-dropdown-panel.mat-warn{--mtx-select-option-selected-state-text-color:#f44336}html{--mtx-split-gutter-hover-state-background-color:#3f51b5;--mtx-split-gutter-background-color:rgba(0, 0, 0, 0.12)}.mtx-split>.mtx-split-gutter.mat-accent:hover{--mtx-split-gutter-hover-state-background-color:#ff4081}.mtx-split>.mtx-split-gutter.mat-warn:hover{--mtx-split-gutter-hover-state-background-color:#f44336}html{--mdc-plain-tooltip-container-shape:4px;--mdc-plain-tooltip-supporting-text-line-height:16px}html{--mdc-plain-tooltip-container-color:#616161;--mdc-plain-tooltip-supporting-text-color:#fff}html{--mdc-plain-tooltip-supporting-text-font:Roboto, sans-serif;--mdc-plain-tooltip-supporting-text-size:12px;--mdc-plain-tooltip-supporting-text-weight:400;--mdc-plain-tooltip-supporting-text-tracking:0.0333333333em}
|
|
1
|
+
.mat-button-loading .mdc-button__label,.mat-button-loading .mat-icon{visibility:hidden}.mat-button-loading .mat-mdc-progress-spinner{position:absolute;top:calc(50% - 12px);left:calc(50% - 12px)}.mat-column-resize-table.cdk-column-resize-with-resized-column{table-layout:fixed}.mat-column-resize-flex .mat-mdc-header-cell,.mat-column-resize-flex .mat-mdc-cell{box-sizing:border-box;min-width:32px}.mat-mdc-header-cell{position:relative}.mat-resizable{box-sizing:border-box}.mat-mdc-header-cell:not(.mat-resizable)::after,.mat-resizable-handle{position:absolute;bottom:0;top:0;right:0;width:1px;background:rgba(0,0,0,0);transition:background 300ms cubic-bezier(0.55, 0, 0.55, 0.2)}.mat-mdc-header-cell:not(.mat-resizable)::after{content:""}[dir=rtl] .mat-mdc-header-cell:not(.mat-resizable)::after,[dir=rtl] .mat-resizable-handle{left:0;right:auto}[dir=rtl] .mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-header-cell,[dir=rtl] .mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell{border-left:none}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell{border-right:none}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell:not(.mat-resizable)::after{background-color:var(--mtx-grid-resizable-handle-disabled-background-color, var(--mat-sys-outline-variant))}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle{background-color:var(--mtx-grid-resizable-handle-hover-background-color, var(--mat-sys-primary))}.mat-resizable.cdk-resizable-overlay-thumb-active>.mat-resizable-handle{opacity:0;transition:none}.mat-resizable-handle:focus,.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle:focus{outline:none;background-color:var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary))}.mat-column-resize-overlay-thumb{background:rgba(0,0,0,0);cursor:col-resize;width:100%;height:100%;transition:background 300ms cubic-bezier(0.55, 0, 0.55, 0.2);-webkit-user-select:none;user-select:none}.mat-column-resize-overlay-thumb:active{will-change:transform;background:linear-gradient(90deg, transparent, transparent 7px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 7px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 9px, transparent 9px, transparent)}.mat-column-resize-overlay-thumb:active .mat-column-resize-overlay-thumb-top{background:linear-gradient(90deg, transparent, transparent 4px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 4px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 12px, transparent 12px, transparent)}.mat-column-resize-overlay-thumb-top{width:100%}html{--mtx-alert-container-shape:4px}html{--mtx-alert-outline-color:transparent;--mtx-alert-background-color:whitesmoke;--mtx-alert-text-color:rgba(0, 0, 0, 0.87);--mtx-alert-info-outline-color:transparent;--mtx-alert-info-background-color:#bbdefb;--mtx-alert-info-text-color:rgba(0, 0, 0, 0.87);--mtx-alert-success-outline-color:transparent;--mtx-alert-success-background-color:#c8e6c9;--mtx-alert-success-text-color:rgba(0, 0, 0, 0.87);--mtx-alert-warning-outline-color:transparent;--mtx-alert-warning-background-color:#ffecb3;--mtx-alert-warning-text-color:rgba(0, 0, 0, 0.87);--mtx-alert-danger-outline-color:transparent;--mtx-alert-danger-background-color:#ffcdd2;--mtx-alert-danger-text-color:rgba(0, 0, 0, 0.87)}html{--mtx-colorpicker-toggle-active-state-icon-color:#3f51b5;--mtx-colorpicker-toggle-icon-color:rgba(0, 0, 0, 0.54)}.mtx-colorpicker-toggle-active.mat-accent{--mtx-colorpicker-toggle-active-state-icon-color:#ff4081}.mtx-colorpicker-toggle-active.mat-warn{--mtx-colorpicker-toggle-active-state-icon-color:#f44336}html{--mtx-datetimepicker-container-elevation-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);--mtx-datetimepicker-container-touch-elevation-shadow:0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);--mtx-datetimepicker-container-shape:4px;--mtx-datetimepicker-container-touch-shape:4px;--mtx-datetimepicker-selector-container-shape:4px}html{--mtx-datetimepicker-calendar-header-background-color:#3f51b5;--mtx-datetimepicker-calendar-date-selected-state-text-color:white;--mtx-datetimepicker-calendar-date-selected-state-background-color:#3f51b5;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(63, 81, 181, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:white;--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(63, 81, 181, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(63, 81, 181, 0.3);--mtx-datetimepicker-clock-hand-background-color:#3f51b5;--mtx-datetimepicker-clock-cell-selected-state-background-color:#3f51b5;--mtx-datetimepicker-time-input-active-state-text-color:#3f51b5;--mtx-datetimepicker-time-input-active-state-background-color:rgba(63, 81, 181, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#3f51b5;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(63, 81, 181, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(63, 81, 181, 0.2);--mtx-datetimepicker-toggle-active-state-icon-color:#3f51b5;--mtx-datetimepicker-toggle-icon-color:rgba(0, 0, 0, 0.54);--mtx-datetimepicker-calendar-body-label-text-color:rgba(0, 0, 0, 0.54);--mtx-datetimepicker-calendar-body-week-number-text-color:rgba(0, 0, 0, 0.54);--mtx-datetimepicker-calendar-header-text-color:white;--mtx-datetimepicker-calendar-header-divider-color:transparent;--mtx-datetimepicker-calendar-table-header-text-color:rgba(0, 0, 0, 0.54);--mtx-datetimepicker-calendar-date-today-outline-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-calendar-date-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-calendar-date-outline-color:transparent;--mtx-datetimepicker-calendar-date-disabled-state-text-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-container-background-color:white;--mtx-datetimepicker-container-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-clock-dial-background-color:rgba(0, 0, 0, 0.12);--mtx-datetimepicker-clock-cell-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-clock-cell-hover-state-background-color:rgba(0, 0, 0, 0.04);--mtx-datetimepicker-clock-cell-disabled-state-text-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-time-input-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-time-input-background-color:rgba(0, 0, 0, 0.12);--mtx-datetimepicker-time-input-focus-state-background-color:#fafafa;--mtx-datetimepicker-time-input-warn-state-outline-color:#f44336;--mtx-datetimepicker-time-ampm-text-color:rgba(0, 0, 0, 0.75);--mtx-datetimepicker-time-ampm-outline-color:rgba(0, 0, 0, 0.38);--mtx-datetimepicker-time-ampm-selected-state-text-color:rgba(0, 0, 0, 0.87)}.mtx-datetimepicker-content.mat-accent{--mtx-datetimepicker-calendar-header-background-color:#ff4081;--mtx-datetimepicker-calendar-date-selected-state-text-color:white;--mtx-datetimepicker-calendar-date-selected-state-background-color:#ff4081;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(255, 64, 129, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:white;--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(255, 64, 129, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(255, 64, 129, 0.3);--mtx-datetimepicker-clock-hand-background-color:#ff4081;--mtx-datetimepicker-clock-cell-selected-state-background-color:#ff4081;--mtx-datetimepicker-time-input-active-state-text-color:#ff4081;--mtx-datetimepicker-time-input-active-state-background-color:rgba(255, 64, 129, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#ff4081;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(255, 64, 129, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(255, 64, 129, 0.2)}.mtx-datetimepicker-content.mat-warn{--mtx-datetimepicker-calendar-header-background-color:#f44336;--mtx-datetimepicker-calendar-date-selected-state-text-color:white;--mtx-datetimepicker-calendar-date-selected-state-background-color:#f44336;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(244, 67, 54, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:white;--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(244, 67, 54, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(244, 67, 54, 0.3);--mtx-datetimepicker-clock-hand-background-color:#f44336;--mtx-datetimepicker-clock-cell-selected-state-background-color:#f44336;--mtx-datetimepicker-time-input-active-state-text-color:#f44336;--mtx-datetimepicker-time-input-active-state-background-color:rgba(244, 67, 54, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#f44336;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(244, 67, 54, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(244, 67, 54, 0.2)}.mtx-datetimepicker-toggle-active.mat-accent{--mtx-datetimepicker-toggle-active-state-icon-color:#ff4081}.mtx-datetimepicker-toggle-active.mat-warn{--mtx-datetimepicker-toggle-active-state-icon-color:#f44336}html{--mtx-datetimepicker-calendar-text-font:Roboto, sans-serif;--mtx-datetimepicker-calendar-text-size:13px;--mtx-datetimepicker-calendar-body-label-text-size:14px;--mtx-datetimepicker-calendar-body-label-text-weight:500;--mtx-datetimepicker-calendar-period-button-text-size:14px;--mtx-datetimepicker-calendar-period-button-text-weight:500;--mtx-datetimepicker-calendar-table-header-text-size:11px;--mtx-datetimepicker-calendar-table-header-text-weight:400;--mtx-datetimepicker-clock-text-size:14px}html{--mtx-drawer-container-shape:0;--mtx-drawer-container-elevation-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12)}html{--mtx-drawer-container-background-color:white;--mtx-drawer-container-text-color:rgba(0, 0, 0, 0.87)}html{--mtx-grid-container-shape:0;--mtx-grid-table-cell-min-width:80px}html{--mtx-grid-outline-color:rgba(0, 0, 0, 0.2);--mtx-grid-column-menu-text-color:rgba(0, 0, 0, 0.87);--mtx-grid-column-menu-divider-color:rgba(0, 0, 0, 0.12);--mtx-grid-table-footer-background-color:whitesmoke;--mtx-grid-table-row-striped-background-color:#f5f5f5;--mtx-grid-table-row-hover-background-color:#eee;--mtx-grid-table-row-selected-background-color:#eee;--mtx-grid-table-row-selected-hover-background-color:#e0e0e0;--mtx-grid-table-cell-selected-outline-color:#ff4081;--mtx-grid-resizable-handle-active-background-color:#3f51b5;--mtx-grid-resizable-handle-hover-background-color:#3f51b5;--mtx-grid-resizable-handle-disabled-background-color:rgba(0, 0, 0, 0.12)}html{--mtx-grid-row-expand-button-size:48px}html{--mtx-loader-backdrop-background-color:rgba(250, 250, 250, 0.75)}html{--mtx-popover-container-shape:4px;--mtx-popover-base-elevation-level:8}html{--mtx-popover-outline-color:rgba(0, 0, 0, 0.12);--mtx-popover-background-color:white;--mtx-popover-text-color:rgba(0, 0, 0, 0.87)}html{--mtx-progress-container-shape:4px}html{--mtx-progress-track-color:rgba(0, 0, 0, 0.04);--mtx-progress-indicator-color:rgba(0, 0, 0, 0.12);--mtx-progress-text-color:rgba(0, 0, 0, 0.87);--mtx-progress-info-indicator-color:#2196f3;--mtx-progress-info-text-color:white;--mtx-progress-success-indicator-color:#4caf50;--mtx-progress-success-text-color:white;--mtx-progress-warning-indicator-color:#ff9800;--mtx-progress-warning-text-color:white;--mtx-progress-danger-indicator-color:#f44336;--mtx-progress-danger-text-color:white}html{--mtx-progress-text-size:12px}html{--mtx-select-container-shape:4px;--mtx-select-container-elevation-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12)}html{--mtx-select-option-selected-state-text-color:#3f51b5;--mtx-select-container-text-color:rgba(0, 0, 0, 0.87);--mtx-select-placeholder-text-color:rgba(0, 0, 0, 0.38);--mtx-select-disabled-text-color:rgba(0, 0, 0, 0.38);--mtx-select-multiple-value-background-color:#e0e0e0;--mtx-select-multiple-value-outline-color:rgba(0, 0, 0, 0.12);--mtx-select-multiple-value-disabled-outline-color:rgba(0, 0, 0, 0.06);--mtx-select-multiple-value-icon-hover-background-color:rgba(0, 0, 0, 0.12);--mtx-select-clear-icon-color:rgba(0, 0, 0, 0.54);--mtx-select-clear-icon-hover-color:#f44336;--mtx-select-enabled-arrow-color:rgba(0, 0, 0, 0.54);--mtx-select-disabled-arrow-color:rgba(0, 0, 0, 0.38);--mtx-select-invalid-arrow-color:#f44336;--mtx-select-panel-background-color:white;--mtx-select-panel-divider-color:rgba(0, 0, 0, 0.12);--mtx-select-optgroup-label-text-color:rgba(0, 0, 0, 0.54);--mtx-select-option-label-text-color:rgba(0, 0, 0, 0.87);--mtx-select-option-selected-state-background-color:rgba(0, 0, 0, 0.04);--mtx-select-option-hover-state-background-color:rgba(0, 0, 0, 0.04);--mtx-select-option-disabled-state-text-color:rgba(0, 0, 0, 0.38)}.ng-dropdown-panel.mat-accent{--mtx-select-option-selected-state-text-color:#ff4081}.ng-dropdown-panel.mat-warn{--mtx-select-option-selected-state-text-color:#f44336}html{--mtx-split-gutter-hover-state-background-color:#3f51b5;--mtx-split-gutter-background-color:rgba(0, 0, 0, 0.12)}.mtx-split>.mtx-split-gutter.mat-accent:hover{--mtx-split-gutter-hover-state-background-color:#ff4081}.mtx-split>.mtx-split-gutter.mat-warn:hover{--mtx-split-gutter-hover-state-background-color:#f44336}html{--mdc-plain-tooltip-container-shape:4px;--mdc-plain-tooltip-supporting-text-line-height:16px}html{--mdc-plain-tooltip-container-color:#616161;--mdc-plain-tooltip-supporting-text-color:#fff}html{--mdc-plain-tooltip-supporting-text-font:Roboto, sans-serif;--mdc-plain-tooltip-supporting-text-size:12px;--mdc-plain-tooltip-supporting-text-weight:400;--mdc-plain-tooltip-supporting-text-tracking:0.0333333333em}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.mat-button-loading .mdc-button__label,.mat-button-loading .mat-icon{visibility:hidden}.mat-button-loading .mat-mdc-progress-spinner{position:absolute;top:calc(50% - 12px);left:calc(50% - 12px)}.mat-column-resize-table.cdk-column-resize-with-resized-column{table-layout:fixed}.mat-column-resize-flex .mat-mdc-header-cell,.mat-column-resize-flex .mat-mdc-cell{box-sizing:border-box;min-width:32px}.mat-mdc-header-cell{position:relative}.mat-resizable{box-sizing:border-box}.mat-mdc-header-cell:not(.mat-resizable)::after,.mat-resizable-handle{position:absolute;bottom:0;top:0;right:0;width:1px;background:rgba(0,0,0,0);transition:background 300ms cubic-bezier(0.55, 0, 0.55, 0.2)}.mat-mdc-header-cell:not(.mat-resizable)::after{content:""}[dir=rtl] .mat-mdc-header-cell:not(.mat-resizable)::after,[dir=rtl] .mat-resizable-handle{left:0;right:auto}[dir=rtl] .mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-header-cell,[dir=rtl] .mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell{border-left:none}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell{border-right:none}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell:not(.mat-resizable)::after{background-color:var(--mtx-grid-resizable-handle-disabled-background-color, var(--mat-sys-outline-variant))}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle{background-color:var(--mtx-grid-resizable-handle-hover-background-color, var(--mat-sys-primary))}.mat-resizable.cdk-resizable-overlay-thumb-active>.mat-resizable-handle{opacity:0;transition:none}.mat-resizable-handle:focus,.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle:focus{outline:none;background-color:var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary))}.mat-column-resize-overlay-thumb{background:rgba(0,0,0,0);cursor:col-resize;width:100%;height:100%;transition:background 300ms cubic-bezier(0.55, 0, 0.55, 0.2);-webkit-user-select:none;user-select:none}.mat-column-resize-overlay-thumb:active{will-change:transform;background:linear-gradient(90deg, transparent, transparent 7px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 7px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 9px, transparent 9px, transparent)}.mat-column-resize-overlay-thumb:active .mat-column-resize-overlay-thumb-top{background:linear-gradient(90deg, transparent, transparent 4px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 4px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 12px, transparent 12px, transparent)}.mat-column-resize-overlay-thumb-top{width:100%}html{--mtx-alert-container-shape:4px}html{--mtx-alert-outline-color:transparent;--mtx-alert-background-color:#212121;--mtx-alert-text-color:white;--mtx-alert-info-outline-color:transparent;--mtx-alert-info-background-color:#0d47a1;--mtx-alert-info-text-color:white;--mtx-alert-success-outline-color:transparent;--mtx-alert-success-background-color:#1b5e20;--mtx-alert-success-text-color:white;--mtx-alert-warning-outline-color:transparent;--mtx-alert-warning-background-color:#ff6f00;--mtx-alert-warning-text-color:white;--mtx-alert-danger-outline-color:transparent;--mtx-alert-danger-background-color:#b71c1c;--mtx-alert-danger-text-color:white}html{--mtx-colorpicker-toggle-active-state-icon-color:#c2185b;--mtx-colorpicker-toggle-icon-color:white}.mtx-colorpicker-toggle-active.mat-accent{--mtx-colorpicker-toggle-active-state-icon-color:#b0bec5}.mtx-colorpicker-toggle-active.mat-warn{--mtx-colorpicker-toggle-active-state-icon-color:#f44336}html{--mtx-datetimepicker-container-elevation-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);--mtx-datetimepicker-container-touch-elevation-shadow:0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);--mtx-datetimepicker-container-shape:4px;--mtx-datetimepicker-container-touch-shape:4px;--mtx-datetimepicker-selector-container-shape:4px}html{--mtx-datetimepicker-calendar-header-background-color:#c2185b;--mtx-datetimepicker-calendar-date-selected-state-text-color:white;--mtx-datetimepicker-calendar-date-selected-state-background-color:#c2185b;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(194, 24, 91, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:white;--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(194, 24, 91, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(194, 24, 91, 0.3);--mtx-datetimepicker-clock-hand-background-color:#c2185b;--mtx-datetimepicker-clock-cell-selected-state-background-color:#c2185b;--mtx-datetimepicker-time-input-active-state-text-color:#c2185b;--mtx-datetimepicker-time-input-active-state-background-color:rgba(194, 24, 91, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#c2185b;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(194, 24, 91, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(194, 24, 91, 0.2);--mtx-datetimepicker-toggle-active-state-icon-color:#c2185b;--mtx-datetimepicker-toggle-icon-color:white;--mtx-datetimepicker-calendar-body-label-text-color:rgba(255, 255, 255, 0.7);--mtx-datetimepicker-calendar-body-week-number-text-color:rgba(255, 255, 255, 0.7);--mtx-datetimepicker-calendar-header-text-color:white;--mtx-datetimepicker-calendar-header-divider-color:transparent;--mtx-datetimepicker-calendar-table-header-text-color:rgba(255, 255, 255, 0.7);--mtx-datetimepicker-calendar-date-today-outline-color:rgba(255, 255, 255, 0.5);--mtx-datetimepicker-calendar-date-text-color:white;--mtx-datetimepicker-calendar-date-outline-color:transparent;--mtx-datetimepicker-calendar-date-disabled-state-text-color:rgba(255, 255, 255, 0.5);--mtx-datetimepicker-container-background-color:#424242;--mtx-datetimepicker-container-text-color:white;--mtx-datetimepicker-clock-dial-background-color:rgba(255, 255, 255, 0.12);--mtx-datetimepicker-clock-cell-text-color:white;--mtx-datetimepicker-clock-cell-hover-state-background-color:rgba(255, 255, 255, 0.04);--mtx-datetimepicker-clock-cell-disabled-state-text-color:rgba(255, 255, 255, 0.5);--mtx-datetimepicker-time-input-text-color:white;--mtx-datetimepicker-time-input-background-color:rgba(255, 255, 255, 0.12);--mtx-datetimepicker-time-input-focus-state-background-color:#303030;--mtx-datetimepicker-time-input-warn-state-outline-color:#f44336;--mtx-datetimepicker-time-ampm-text-color:rgba(255, 255, 255, 0.75);--mtx-datetimepicker-time-ampm-outline-color:rgba(255, 255, 255, 0.5);--mtx-datetimepicker-time-ampm-selected-state-text-color:white}.mtx-datetimepicker-content.mat-accent{--mtx-datetimepicker-calendar-header-background-color:#b0bec5;--mtx-datetimepicker-calendar-date-selected-state-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-calendar-date-selected-state-background-color:#b0bec5;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(176, 190, 197, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(176, 190, 197, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(176, 190, 197, 0.3);--mtx-datetimepicker-clock-hand-background-color:#b0bec5;--mtx-datetimepicker-clock-cell-selected-state-background-color:#b0bec5;--mtx-datetimepicker-time-input-active-state-text-color:#b0bec5;--mtx-datetimepicker-time-input-active-state-background-color:rgba(176, 190, 197, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#b0bec5;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(176, 190, 197, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(176, 190, 197, 0.2)}.mtx-datetimepicker-content.mat-warn{--mtx-datetimepicker-calendar-header-background-color:#f44336;--mtx-datetimepicker-calendar-date-selected-state-text-color:white;--mtx-datetimepicker-calendar-date-selected-state-background-color:#f44336;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(244, 67, 54, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:white;--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(244, 67, 54, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(244, 67, 54, 0.3);--mtx-datetimepicker-clock-hand-background-color:#f44336;--mtx-datetimepicker-clock-cell-selected-state-background-color:#f44336;--mtx-datetimepicker-time-input-active-state-text-color:#f44336;--mtx-datetimepicker-time-input-active-state-background-color:rgba(244, 67, 54, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#f44336;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(244, 67, 54, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(244, 67, 54, 0.2)}.mtx-datetimepicker-toggle-active.mat-accent{--mtx-datetimepicker-toggle-active-state-icon-color:#b0bec5}.mtx-datetimepicker-toggle-active.mat-warn{--mtx-datetimepicker-toggle-active-state-icon-color:#f44336}html{--mtx-datetimepicker-calendar-text-font:Roboto, sans-serif;--mtx-datetimepicker-calendar-text-size:13px;--mtx-datetimepicker-calendar-body-label-text-size:14px;--mtx-datetimepicker-calendar-body-label-text-weight:500;--mtx-datetimepicker-calendar-period-button-text-size:14px;--mtx-datetimepicker-calendar-period-button-text-weight:500;--mtx-datetimepicker-calendar-table-header-text-size:11px;--mtx-datetimepicker-calendar-table-header-text-weight:400;--mtx-datetimepicker-clock-text-size:14px}html{--mtx-drawer-container-shape:0;--mtx-drawer-container-elevation-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12)}html{--mtx-drawer-container-background-color:#424242;--mtx-drawer-container-text-color:white}html{--mtx-grid-container-shape:0;--mtx-grid-table-cell-min-width:80px}html{--mtx-grid-outline-color:rgba(255, 255, 255, 0.2);--mtx-grid-column-menu-text-color:white;--mtx-grid-column-menu-divider-color:rgba(255, 255, 255, 0.12);--mtx-grid-table-footer-background-color:#212121;--mtx-grid-table-row-striped-background-color:#3a3a3a;--mtx-grid-table-row-hover-background-color:#2a2a2a;--mtx-grid-table-row-selected-background-color:#2a2a2a;--mtx-grid-table-row-selected-hover-background-color:#1a1a1a;--mtx-grid-table-cell-selected-outline-color:#b0bec5;--mtx-grid-resizable-handle-active-background-color:#c2185b;--mtx-grid-resizable-handle-hover-background-color:#c2185b;--mtx-grid-resizable-handle-disabled-background-color:rgba(255, 255, 255, 0.12)}html{--mtx-grid-row-expand-button-size:48px}html{--mtx-loader-backdrop-background-color:rgba(48, 48, 48, 0.75)}html{--mtx-popover-container-shape:4px;--mtx-popover-base-elevation-level:8}html{--mtx-popover-outline-color:rgba(255, 255, 255, 0.12);--mtx-popover-background-color:#424242;--mtx-popover-text-color:white}html{--mtx-progress-container-shape:4px}html{--mtx-progress-track-color:rgba(255, 255, 255, 0.04);--mtx-progress-indicator-color:rgba(255, 255, 255, 0.12);--mtx-progress-text-color:white;--mtx-progress-info-indicator-color:#0d47a1;--mtx-progress-info-text-color:white;--mtx-progress-success-indicator-color:#1b5e20;--mtx-progress-success-text-color:white;--mtx-progress-warning-indicator-color:#e65100;--mtx-progress-warning-text-color:white;--mtx-progress-danger-indicator-color:#b71c1c;--mtx-progress-danger-text-color:white}html{--mtx-progress-text-size:12px}html{--mtx-select-container-shape:4px;--mtx-select-container-elevation-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12)}html{--mtx-select-option-selected-state-text-color:#c2185b;--mtx-select-container-text-color:white;--mtx-select-placeholder-text-color:rgba(255, 255, 255, 0.5);--mtx-select-disabled-text-color:rgba(255, 255, 255, 0.5);--mtx-select-multiple-value-background-color:#616161;--mtx-select-multiple-value-outline-color:rgba(255, 255, 255, 0.12);--mtx-select-multiple-value-icon-hover-background-color:rgba(255, 255, 255, 0.12);--mtx-select-clear-icon-color:rgba(255, 255, 255, 0.7);--mtx-select-clear-icon-hover-color:#f44336;--mtx-select-enabled-arrow-color:rgba(255, 255, 255, 0.7);--mtx-select-disabled-arrow-color:rgba(255, 255, 255, 0.5);--mtx-select-invalid-arrow-color:#f44336;--mtx-select-panel-background-color:#424242;--mtx-select-panel-divider-color:rgba(255, 255, 255, 0.12);--mtx-select-optgroup-label-text-color:rgba(255, 255, 255, 0.7);--mtx-select-option-label-text-color:white;--mtx-select-option-selected-state-background-color:rgba(255, 255, 255, 0.04);--mtx-select-option-hover-state-background-color:rgba(255, 255, 255, 0.04);--mtx-select-option-disabled-state-text-color:rgba(255, 255, 255, 0.5)}.ng-dropdown-panel.mat-accent{--mtx-select-option-selected-state-text-color:#b0bec5}.ng-dropdown-panel.mat-warn{--mtx-select-option-selected-state-text-color:#f44336}html{--mtx-split-gutter-hover-state-background-color:#c2185b;--mtx-split-gutter-background-color:rgba(255, 255, 255, 0.12)}.mtx-split>.mtx-split-gutter.mat-accent:hover{--mtx-split-gutter-hover-state-background-color:#b0bec5}.mtx-split>.mtx-split-gutter.mat-warn:hover{--mtx-split-gutter-hover-state-background-color:#f44336}html{--mdc-plain-tooltip-container-shape:4px;--mdc-plain-tooltip-supporting-text-line-height:16px}html{--mdc-plain-tooltip-container-color:#616161;--mdc-plain-tooltip-supporting-text-color:#fff}html{--mdc-plain-tooltip-supporting-text-font:Roboto, sans-serif;--mdc-plain-tooltip-supporting-text-size:12px;--mdc-plain-tooltip-supporting-text-weight:400;--mdc-plain-tooltip-supporting-text-tracking:0.0333333333em}
|
|
1
|
+
.mat-button-loading .mdc-button__label,.mat-button-loading .mat-icon{visibility:hidden}.mat-button-loading .mat-mdc-progress-spinner{position:absolute;top:calc(50% - 12px);left:calc(50% - 12px)}.mat-column-resize-table.cdk-column-resize-with-resized-column{table-layout:fixed}.mat-column-resize-flex .mat-mdc-header-cell,.mat-column-resize-flex .mat-mdc-cell{box-sizing:border-box;min-width:32px}.mat-mdc-header-cell{position:relative}.mat-resizable{box-sizing:border-box}.mat-mdc-header-cell:not(.mat-resizable)::after,.mat-resizable-handle{position:absolute;bottom:0;top:0;right:0;width:1px;background:rgba(0,0,0,0);transition:background 300ms cubic-bezier(0.55, 0, 0.55, 0.2)}.mat-mdc-header-cell:not(.mat-resizable)::after{content:""}[dir=rtl] .mat-mdc-header-cell:not(.mat-resizable)::after,[dir=rtl] .mat-resizable-handle{left:0;right:auto}[dir=rtl] .mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-header-cell,[dir=rtl] .mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell{border-left:none}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell{border-right:none}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell:not(.mat-resizable)::after{background-color:var(--mtx-grid-resizable-handle-disabled-background-color, var(--mat-sys-outline-variant))}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle{background-color:var(--mtx-grid-resizable-handle-hover-background-color, var(--mat-sys-primary))}.mat-resizable.cdk-resizable-overlay-thumb-active>.mat-resizable-handle{opacity:0;transition:none}.mat-resizable-handle:focus,.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle:focus{outline:none;background-color:var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary))}.mat-column-resize-overlay-thumb{background:rgba(0,0,0,0);cursor:col-resize;width:100%;height:100%;transition:background 300ms cubic-bezier(0.55, 0, 0.55, 0.2);-webkit-user-select:none;user-select:none}.mat-column-resize-overlay-thumb:active{will-change:transform;background:linear-gradient(90deg, transparent, transparent 7px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 7px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 9px, transparent 9px, transparent)}.mat-column-resize-overlay-thumb:active .mat-column-resize-overlay-thumb-top{background:linear-gradient(90deg, transparent, transparent 4px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 4px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 12px, transparent 12px, transparent)}.mat-column-resize-overlay-thumb-top{width:100%}html{--mtx-alert-container-shape:4px}html{--mtx-alert-outline-color:transparent;--mtx-alert-background-color:#212121;--mtx-alert-text-color:white;--mtx-alert-info-outline-color:transparent;--mtx-alert-info-background-color:#0d47a1;--mtx-alert-info-text-color:white;--mtx-alert-success-outline-color:transparent;--mtx-alert-success-background-color:#1b5e20;--mtx-alert-success-text-color:white;--mtx-alert-warning-outline-color:transparent;--mtx-alert-warning-background-color:#ff6f00;--mtx-alert-warning-text-color:white;--mtx-alert-danger-outline-color:transparent;--mtx-alert-danger-background-color:#b71c1c;--mtx-alert-danger-text-color:white}html{--mtx-colorpicker-toggle-active-state-icon-color:#c2185b;--mtx-colorpicker-toggle-icon-color:white}.mtx-colorpicker-toggle-active.mat-accent{--mtx-colorpicker-toggle-active-state-icon-color:#b0bec5}.mtx-colorpicker-toggle-active.mat-warn{--mtx-colorpicker-toggle-active-state-icon-color:#f44336}html{--mtx-datetimepicker-container-elevation-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);--mtx-datetimepicker-container-touch-elevation-shadow:0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);--mtx-datetimepicker-container-shape:4px;--mtx-datetimepicker-container-touch-shape:4px;--mtx-datetimepicker-selector-container-shape:4px}html{--mtx-datetimepicker-calendar-header-background-color:#c2185b;--mtx-datetimepicker-calendar-date-selected-state-text-color:white;--mtx-datetimepicker-calendar-date-selected-state-background-color:#c2185b;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(194, 24, 91, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:white;--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(194, 24, 91, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(194, 24, 91, 0.3);--mtx-datetimepicker-clock-hand-background-color:#c2185b;--mtx-datetimepicker-clock-cell-selected-state-background-color:#c2185b;--mtx-datetimepicker-time-input-active-state-text-color:#c2185b;--mtx-datetimepicker-time-input-active-state-background-color:rgba(194, 24, 91, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#c2185b;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(194, 24, 91, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(194, 24, 91, 0.2);--mtx-datetimepicker-toggle-active-state-icon-color:#c2185b;--mtx-datetimepicker-toggle-icon-color:white;--mtx-datetimepicker-calendar-body-label-text-color:rgba(255, 255, 255, 0.7);--mtx-datetimepicker-calendar-body-week-number-text-color:rgba(255, 255, 255, 0.7);--mtx-datetimepicker-calendar-header-text-color:white;--mtx-datetimepicker-calendar-header-divider-color:transparent;--mtx-datetimepicker-calendar-table-header-text-color:rgba(255, 255, 255, 0.7);--mtx-datetimepicker-calendar-date-today-outline-color:rgba(255, 255, 255, 0.5);--mtx-datetimepicker-calendar-date-text-color:white;--mtx-datetimepicker-calendar-date-outline-color:transparent;--mtx-datetimepicker-calendar-date-disabled-state-text-color:rgba(255, 255, 255, 0.5);--mtx-datetimepicker-container-background-color:#424242;--mtx-datetimepicker-container-text-color:white;--mtx-datetimepicker-clock-dial-background-color:rgba(255, 255, 255, 0.12);--mtx-datetimepicker-clock-cell-text-color:white;--mtx-datetimepicker-clock-cell-hover-state-background-color:rgba(255, 255, 255, 0.04);--mtx-datetimepicker-clock-cell-disabled-state-text-color:rgba(255, 255, 255, 0.5);--mtx-datetimepicker-time-input-text-color:white;--mtx-datetimepicker-time-input-background-color:rgba(255, 255, 255, 0.12);--mtx-datetimepicker-time-input-focus-state-background-color:#303030;--mtx-datetimepicker-time-input-warn-state-outline-color:#f44336;--mtx-datetimepicker-time-ampm-text-color:rgba(255, 255, 255, 0.75);--mtx-datetimepicker-time-ampm-outline-color:rgba(255, 255, 255, 0.5);--mtx-datetimepicker-time-ampm-selected-state-text-color:white}.mtx-datetimepicker-content.mat-accent{--mtx-datetimepicker-calendar-header-background-color:#b0bec5;--mtx-datetimepicker-calendar-date-selected-state-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-calendar-date-selected-state-background-color:#b0bec5;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(176, 190, 197, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(176, 190, 197, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(176, 190, 197, 0.3);--mtx-datetimepicker-clock-hand-background-color:#b0bec5;--mtx-datetimepicker-clock-cell-selected-state-background-color:#b0bec5;--mtx-datetimepicker-time-input-active-state-text-color:#b0bec5;--mtx-datetimepicker-time-input-active-state-background-color:rgba(176, 190, 197, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#b0bec5;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(176, 190, 197, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(176, 190, 197, 0.2)}.mtx-datetimepicker-content.mat-warn{--mtx-datetimepicker-calendar-header-background-color:#f44336;--mtx-datetimepicker-calendar-date-selected-state-text-color:white;--mtx-datetimepicker-calendar-date-selected-state-background-color:#f44336;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(244, 67, 54, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:white;--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(244, 67, 54, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(244, 67, 54, 0.3);--mtx-datetimepicker-clock-hand-background-color:#f44336;--mtx-datetimepicker-clock-cell-selected-state-background-color:#f44336;--mtx-datetimepicker-time-input-active-state-text-color:#f44336;--mtx-datetimepicker-time-input-active-state-background-color:rgba(244, 67, 54, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#f44336;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(244, 67, 54, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(244, 67, 54, 0.2)}.mtx-datetimepicker-toggle-active.mat-accent{--mtx-datetimepicker-toggle-active-state-icon-color:#b0bec5}.mtx-datetimepicker-toggle-active.mat-warn{--mtx-datetimepicker-toggle-active-state-icon-color:#f44336}html{--mtx-datetimepicker-calendar-text-font:Roboto, sans-serif;--mtx-datetimepicker-calendar-text-size:13px;--mtx-datetimepicker-calendar-body-label-text-size:14px;--mtx-datetimepicker-calendar-body-label-text-weight:500;--mtx-datetimepicker-calendar-period-button-text-size:14px;--mtx-datetimepicker-calendar-period-button-text-weight:500;--mtx-datetimepicker-calendar-table-header-text-size:11px;--mtx-datetimepicker-calendar-table-header-text-weight:400;--mtx-datetimepicker-clock-text-size:14px}html{--mtx-drawer-container-shape:0;--mtx-drawer-container-elevation-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12)}html{--mtx-drawer-container-background-color:#424242;--mtx-drawer-container-text-color:white}html{--mtx-grid-container-shape:0;--mtx-grid-table-cell-min-width:80px}html{--mtx-grid-outline-color:rgba(255, 255, 255, 0.2);--mtx-grid-column-menu-text-color:white;--mtx-grid-column-menu-divider-color:rgba(255, 255, 255, 0.12);--mtx-grid-table-footer-background-color:#212121;--mtx-grid-table-row-striped-background-color:#3a3a3a;--mtx-grid-table-row-hover-background-color:#2a2a2a;--mtx-grid-table-row-selected-background-color:#2a2a2a;--mtx-grid-table-row-selected-hover-background-color:#1a1a1a;--mtx-grid-table-cell-selected-outline-color:#b0bec5;--mtx-grid-resizable-handle-active-background-color:#c2185b;--mtx-grid-resizable-handle-hover-background-color:#c2185b;--mtx-grid-resizable-handle-disabled-background-color:rgba(255, 255, 255, 0.12)}html{--mtx-grid-row-expand-button-size:48px}html{--mtx-loader-backdrop-background-color:rgba(48, 48, 48, 0.75)}html{--mtx-popover-container-shape:4px;--mtx-popover-base-elevation-level:8}html{--mtx-popover-outline-color:rgba(255, 255, 255, 0.12);--mtx-popover-background-color:#424242;--mtx-popover-text-color:white}html{--mtx-progress-container-shape:4px}html{--mtx-progress-track-color:rgba(255, 255, 255, 0.04);--mtx-progress-indicator-color:rgba(255, 255, 255, 0.12);--mtx-progress-text-color:white;--mtx-progress-info-indicator-color:#0d47a1;--mtx-progress-info-text-color:white;--mtx-progress-success-indicator-color:#1b5e20;--mtx-progress-success-text-color:white;--mtx-progress-warning-indicator-color:#e65100;--mtx-progress-warning-text-color:white;--mtx-progress-danger-indicator-color:#b71c1c;--mtx-progress-danger-text-color:white}html{--mtx-progress-text-size:12px}html{--mtx-select-container-shape:4px;--mtx-select-container-elevation-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12)}html{--mtx-select-option-selected-state-text-color:#c2185b;--mtx-select-container-text-color:white;--mtx-select-placeholder-text-color:rgba(255, 255, 255, 0.5);--mtx-select-disabled-text-color:rgba(255, 255, 255, 0.5);--mtx-select-multiple-value-background-color:#616161;--mtx-select-multiple-value-outline-color:rgba(255, 255, 255, 0.12);--mtx-select-multiple-value-disabled-outline-color:rgba(255, 255, 255, 0.06);--mtx-select-multiple-value-icon-hover-background-color:rgba(255, 255, 255, 0.12);--mtx-select-clear-icon-color:rgba(255, 255, 255, 0.7);--mtx-select-clear-icon-hover-color:#f44336;--mtx-select-enabled-arrow-color:rgba(255, 255, 255, 0.7);--mtx-select-disabled-arrow-color:rgba(255, 255, 255, 0.5);--mtx-select-invalid-arrow-color:#f44336;--mtx-select-panel-background-color:#424242;--mtx-select-panel-divider-color:rgba(255, 255, 255, 0.12);--mtx-select-optgroup-label-text-color:rgba(255, 255, 255, 0.7);--mtx-select-option-label-text-color:white;--mtx-select-option-selected-state-background-color:rgba(255, 255, 255, 0.04);--mtx-select-option-hover-state-background-color:rgba(255, 255, 255, 0.04);--mtx-select-option-disabled-state-text-color:rgba(255, 255, 255, 0.5)}.ng-dropdown-panel.mat-accent{--mtx-select-option-selected-state-text-color:#b0bec5}.ng-dropdown-panel.mat-warn{--mtx-select-option-selected-state-text-color:#f44336}html{--mtx-split-gutter-hover-state-background-color:#c2185b;--mtx-split-gutter-background-color:rgba(255, 255, 255, 0.12)}.mtx-split>.mtx-split-gutter.mat-accent:hover{--mtx-split-gutter-hover-state-background-color:#b0bec5}.mtx-split>.mtx-split-gutter.mat-warn:hover{--mtx-split-gutter-hover-state-background-color:#f44336}html{--mdc-plain-tooltip-container-shape:4px;--mdc-plain-tooltip-supporting-text-line-height:16px}html{--mdc-plain-tooltip-container-color:#616161;--mdc-plain-tooltip-supporting-text-color:#fff}html{--mdc-plain-tooltip-supporting-text-font:Roboto, sans-serif;--mdc-plain-tooltip-supporting-text-size:12px;--mdc-plain-tooltip-supporting-text-weight:400;--mdc-plain-tooltip-supporting-text-tracking:0.0333333333em}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.mat-button-loading .mdc-button__label,.mat-button-loading .mat-icon{visibility:hidden}.mat-button-loading .mat-mdc-progress-spinner{position:absolute;top:calc(50% - 12px);left:calc(50% - 12px)}.mat-column-resize-table.cdk-column-resize-with-resized-column{table-layout:fixed}.mat-column-resize-flex .mat-mdc-header-cell,.mat-column-resize-flex .mat-mdc-cell{box-sizing:border-box;min-width:32px}.mat-mdc-header-cell{position:relative}.mat-resizable{box-sizing:border-box}.mat-mdc-header-cell:not(.mat-resizable)::after,.mat-resizable-handle{position:absolute;bottom:0;top:0;right:0;width:1px;background:rgba(0,0,0,0);transition:background 300ms cubic-bezier(0.55, 0, 0.55, 0.2)}.mat-mdc-header-cell:not(.mat-resizable)::after{content:""}[dir=rtl] .mat-mdc-header-cell:not(.mat-resizable)::after,[dir=rtl] .mat-resizable-handle{left:0;right:auto}[dir=rtl] .mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-header-cell,[dir=rtl] .mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell{border-left:none}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell{border-right:none}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell:not(.mat-resizable)::after{background-color:var(--mtx-grid-resizable-handle-disabled-background-color, var(--mat-sys-outline-variant))}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle{background-color:var(--mtx-grid-resizable-handle-hover-background-color, var(--mat-sys-primary))}.mat-resizable.cdk-resizable-overlay-thumb-active>.mat-resizable-handle{opacity:0;transition:none}.mat-resizable-handle:focus,.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle:focus{outline:none;background-color:var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary))}.mat-column-resize-overlay-thumb{background:rgba(0,0,0,0);cursor:col-resize;width:100%;height:100%;transition:background 300ms cubic-bezier(0.55, 0, 0.55, 0.2);-webkit-user-select:none;user-select:none}.mat-column-resize-overlay-thumb:active{will-change:transform;background:linear-gradient(90deg, transparent, transparent 7px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 7px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 9px, transparent 9px, transparent)}.mat-column-resize-overlay-thumb:active .mat-column-resize-overlay-thumb-top{background:linear-gradient(90deg, transparent, transparent 4px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 4px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 12px, transparent 12px, transparent)}.mat-column-resize-overlay-thumb-top{width:100%}html{--mtx-alert-container-shape:4px}html{--mtx-alert-outline-color:transparent;--mtx-alert-background-color:#212121;--mtx-alert-text-color:white;--mtx-alert-info-outline-color:transparent;--mtx-alert-info-background-color:#0d47a1;--mtx-alert-info-text-color:white;--mtx-alert-success-outline-color:transparent;--mtx-alert-success-background-color:#1b5e20;--mtx-alert-success-text-color:white;--mtx-alert-warning-outline-color:transparent;--mtx-alert-warning-background-color:#ff6f00;--mtx-alert-warning-text-color:white;--mtx-alert-danger-outline-color:transparent;--mtx-alert-danger-background-color:#b71c1c;--mtx-alert-danger-text-color:white}html{--mtx-colorpicker-toggle-active-state-icon-color:#7b1fa2;--mtx-colorpicker-toggle-icon-color:white}.mtx-colorpicker-toggle-active.mat-accent{--mtx-colorpicker-toggle-active-state-icon-color:#69f0ae}.mtx-colorpicker-toggle-active.mat-warn{--mtx-colorpicker-toggle-active-state-icon-color:#f44336}html{--mtx-datetimepicker-container-elevation-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);--mtx-datetimepicker-container-touch-elevation-shadow:0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);--mtx-datetimepicker-container-shape:4px;--mtx-datetimepicker-container-touch-shape:4px;--mtx-datetimepicker-selector-container-shape:4px}html{--mtx-datetimepicker-calendar-header-background-color:#7b1fa2;--mtx-datetimepicker-calendar-date-selected-state-text-color:white;--mtx-datetimepicker-calendar-date-selected-state-background-color:#7b1fa2;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(123, 31, 162, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:white;--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(123, 31, 162, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(123, 31, 162, 0.3);--mtx-datetimepicker-clock-hand-background-color:#7b1fa2;--mtx-datetimepicker-clock-cell-selected-state-background-color:#7b1fa2;--mtx-datetimepicker-time-input-active-state-text-color:#7b1fa2;--mtx-datetimepicker-time-input-active-state-background-color:rgba(123, 31, 162, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#7b1fa2;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(123, 31, 162, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(123, 31, 162, 0.2);--mtx-datetimepicker-toggle-active-state-icon-color:#7b1fa2;--mtx-datetimepicker-toggle-icon-color:white;--mtx-datetimepicker-calendar-body-label-text-color:rgba(255, 255, 255, 0.7);--mtx-datetimepicker-calendar-body-week-number-text-color:rgba(255, 255, 255, 0.7);--mtx-datetimepicker-calendar-header-text-color:white;--mtx-datetimepicker-calendar-header-divider-color:transparent;--mtx-datetimepicker-calendar-table-header-text-color:rgba(255, 255, 255, 0.7);--mtx-datetimepicker-calendar-date-today-outline-color:rgba(255, 255, 255, 0.5);--mtx-datetimepicker-calendar-date-text-color:white;--mtx-datetimepicker-calendar-date-outline-color:transparent;--mtx-datetimepicker-calendar-date-disabled-state-text-color:rgba(255, 255, 255, 0.5);--mtx-datetimepicker-container-background-color:#424242;--mtx-datetimepicker-container-text-color:white;--mtx-datetimepicker-clock-dial-background-color:rgba(255, 255, 255, 0.12);--mtx-datetimepicker-clock-cell-text-color:white;--mtx-datetimepicker-clock-cell-hover-state-background-color:rgba(255, 255, 255, 0.04);--mtx-datetimepicker-clock-cell-disabled-state-text-color:rgba(255, 255, 255, 0.5);--mtx-datetimepicker-time-input-text-color:white;--mtx-datetimepicker-time-input-background-color:rgba(255, 255, 255, 0.12);--mtx-datetimepicker-time-input-focus-state-background-color:#303030;--mtx-datetimepicker-time-input-warn-state-outline-color:#f44336;--mtx-datetimepicker-time-ampm-text-color:rgba(255, 255, 255, 0.75);--mtx-datetimepicker-time-ampm-outline-color:rgba(255, 255, 255, 0.5);--mtx-datetimepicker-time-ampm-selected-state-text-color:white}.mtx-datetimepicker-content.mat-accent{--mtx-datetimepicker-calendar-header-background-color:#69f0ae;--mtx-datetimepicker-calendar-date-selected-state-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-calendar-date-selected-state-background-color:#69f0ae;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(105, 240, 174, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(105, 240, 174, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(105, 240, 174, 0.3);--mtx-datetimepicker-clock-hand-background-color:#69f0ae;--mtx-datetimepicker-clock-cell-selected-state-background-color:#69f0ae;--mtx-datetimepicker-time-input-active-state-text-color:#69f0ae;--mtx-datetimepicker-time-input-active-state-background-color:rgba(105, 240, 174, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#69f0ae;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(105, 240, 174, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(105, 240, 174, 0.2)}.mtx-datetimepicker-content.mat-warn{--mtx-datetimepicker-calendar-header-background-color:#f44336;--mtx-datetimepicker-calendar-date-selected-state-text-color:white;--mtx-datetimepicker-calendar-date-selected-state-background-color:#f44336;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(244, 67, 54, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:white;--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(244, 67, 54, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(244, 67, 54, 0.3);--mtx-datetimepicker-clock-hand-background-color:#f44336;--mtx-datetimepicker-clock-cell-selected-state-background-color:#f44336;--mtx-datetimepicker-time-input-active-state-text-color:#f44336;--mtx-datetimepicker-time-input-active-state-background-color:rgba(244, 67, 54, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#f44336;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(244, 67, 54, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(244, 67, 54, 0.2)}.mtx-datetimepicker-toggle-active.mat-accent{--mtx-datetimepicker-toggle-active-state-icon-color:#69f0ae}.mtx-datetimepicker-toggle-active.mat-warn{--mtx-datetimepicker-toggle-active-state-icon-color:#f44336}html{--mtx-datetimepicker-calendar-text-font:Roboto, sans-serif;--mtx-datetimepicker-calendar-text-size:13px;--mtx-datetimepicker-calendar-body-label-text-size:14px;--mtx-datetimepicker-calendar-body-label-text-weight:500;--mtx-datetimepicker-calendar-period-button-text-size:14px;--mtx-datetimepicker-calendar-period-button-text-weight:500;--mtx-datetimepicker-calendar-table-header-text-size:11px;--mtx-datetimepicker-calendar-table-header-text-weight:400;--mtx-datetimepicker-clock-text-size:14px}html{--mtx-drawer-container-shape:0;--mtx-drawer-container-elevation-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12)}html{--mtx-drawer-container-background-color:#424242;--mtx-drawer-container-text-color:white}html{--mtx-grid-container-shape:0;--mtx-grid-table-cell-min-width:80px}html{--mtx-grid-outline-color:rgba(255, 255, 255, 0.2);--mtx-grid-column-menu-text-color:white;--mtx-grid-column-menu-divider-color:rgba(255, 255, 255, 0.12);--mtx-grid-table-footer-background-color:#212121;--mtx-grid-table-row-striped-background-color:#3a3a3a;--mtx-grid-table-row-hover-background-color:#2a2a2a;--mtx-grid-table-row-selected-background-color:#2a2a2a;--mtx-grid-table-row-selected-hover-background-color:#1a1a1a;--mtx-grid-table-cell-selected-outline-color:#69f0ae;--mtx-grid-resizable-handle-active-background-color:#7b1fa2;--mtx-grid-resizable-handle-hover-background-color:#7b1fa2;--mtx-grid-resizable-handle-disabled-background-color:rgba(255, 255, 255, 0.12)}html{--mtx-grid-row-expand-button-size:48px}html{--mtx-loader-backdrop-background-color:rgba(48, 48, 48, 0.75)}html{--mtx-popover-container-shape:4px;--mtx-popover-base-elevation-level:8}html{--mtx-popover-outline-color:rgba(255, 255, 255, 0.12);--mtx-popover-background-color:#424242;--mtx-popover-text-color:white}html{--mtx-progress-container-shape:4px}html{--mtx-progress-track-color:rgba(255, 255, 255, 0.04);--mtx-progress-indicator-color:rgba(255, 255, 255, 0.12);--mtx-progress-text-color:white;--mtx-progress-info-indicator-color:#0d47a1;--mtx-progress-info-text-color:white;--mtx-progress-success-indicator-color:#1b5e20;--mtx-progress-success-text-color:white;--mtx-progress-warning-indicator-color:#e65100;--mtx-progress-warning-text-color:white;--mtx-progress-danger-indicator-color:#b71c1c;--mtx-progress-danger-text-color:white}html{--mtx-progress-text-size:12px}html{--mtx-select-container-shape:4px;--mtx-select-container-elevation-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12)}html{--mtx-select-option-selected-state-text-color:#7b1fa2;--mtx-select-container-text-color:white;--mtx-select-placeholder-text-color:rgba(255, 255, 255, 0.5);--mtx-select-disabled-text-color:rgba(255, 255, 255, 0.5);--mtx-select-multiple-value-background-color:#616161;--mtx-select-multiple-value-outline-color:rgba(255, 255, 255, 0.12);--mtx-select-multiple-value-icon-hover-background-color:rgba(255, 255, 255, 0.12);--mtx-select-clear-icon-color:rgba(255, 255, 255, 0.7);--mtx-select-clear-icon-hover-color:#f44336;--mtx-select-enabled-arrow-color:rgba(255, 255, 255, 0.7);--mtx-select-disabled-arrow-color:rgba(255, 255, 255, 0.5);--mtx-select-invalid-arrow-color:#f44336;--mtx-select-panel-background-color:#424242;--mtx-select-panel-divider-color:rgba(255, 255, 255, 0.12);--mtx-select-optgroup-label-text-color:rgba(255, 255, 255, 0.7);--mtx-select-option-label-text-color:white;--mtx-select-option-selected-state-background-color:rgba(255, 255, 255, 0.04);--mtx-select-option-hover-state-background-color:rgba(255, 255, 255, 0.04);--mtx-select-option-disabled-state-text-color:rgba(255, 255, 255, 0.5)}.ng-dropdown-panel.mat-accent{--mtx-select-option-selected-state-text-color:#69f0ae}.ng-dropdown-panel.mat-warn{--mtx-select-option-selected-state-text-color:#f44336}html{--mtx-split-gutter-hover-state-background-color:#7b1fa2;--mtx-split-gutter-background-color:rgba(255, 255, 255, 0.12)}.mtx-split>.mtx-split-gutter.mat-accent:hover{--mtx-split-gutter-hover-state-background-color:#69f0ae}.mtx-split>.mtx-split-gutter.mat-warn:hover{--mtx-split-gutter-hover-state-background-color:#f44336}html{--mdc-plain-tooltip-container-shape:4px;--mdc-plain-tooltip-supporting-text-line-height:16px}html{--mdc-plain-tooltip-container-color:#616161;--mdc-plain-tooltip-supporting-text-color:#fff}html{--mdc-plain-tooltip-supporting-text-font:Roboto, sans-serif;--mdc-plain-tooltip-supporting-text-size:12px;--mdc-plain-tooltip-supporting-text-weight:400;--mdc-plain-tooltip-supporting-text-tracking:0.0333333333em}
|
|
1
|
+
.mat-button-loading .mdc-button__label,.mat-button-loading .mat-icon{visibility:hidden}.mat-button-loading .mat-mdc-progress-spinner{position:absolute;top:calc(50% - 12px);left:calc(50% - 12px)}.mat-column-resize-table.cdk-column-resize-with-resized-column{table-layout:fixed}.mat-column-resize-flex .mat-mdc-header-cell,.mat-column-resize-flex .mat-mdc-cell{box-sizing:border-box;min-width:32px}.mat-mdc-header-cell{position:relative}.mat-resizable{box-sizing:border-box}.mat-mdc-header-cell:not(.mat-resizable)::after,.mat-resizable-handle{position:absolute;bottom:0;top:0;right:0;width:1px;background:rgba(0,0,0,0);transition:background 300ms cubic-bezier(0.55, 0, 0.55, 0.2)}.mat-mdc-header-cell:not(.mat-resizable)::after{content:""}[dir=rtl] .mat-mdc-header-cell:not(.mat-resizable)::after,[dir=rtl] .mat-resizable-handle{left:0;right:auto}[dir=rtl] .mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-header-cell,[dir=rtl] .mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell{border-left:none}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell{border-right:none}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-mdc-header-cell:not(.mat-resizable)::after{background-color:var(--mtx-grid-resizable-handle-disabled-background-color, var(--mat-sys-outline-variant))}.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle{background-color:var(--mtx-grid-resizable-handle-hover-background-color, var(--mat-sys-primary))}.mat-resizable.cdk-resizable-overlay-thumb-active>.mat-resizable-handle{opacity:0;transition:none}.mat-resizable-handle:focus,.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle:focus{outline:none;background-color:var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary))}.mat-column-resize-overlay-thumb{background:rgba(0,0,0,0);cursor:col-resize;width:100%;height:100%;transition:background 300ms cubic-bezier(0.55, 0, 0.55, 0.2);-webkit-user-select:none;user-select:none}.mat-column-resize-overlay-thumb:active{will-change:transform;background:linear-gradient(90deg, transparent, transparent 7px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 7px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 9px, transparent 9px, transparent)}.mat-column-resize-overlay-thumb:active .mat-column-resize-overlay-thumb-top{background:linear-gradient(90deg, transparent, transparent 4px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 4px, var(--mtx-grid-resizable-handle-active-background-color, var(--mat-sys-primary)) 12px, transparent 12px, transparent)}.mat-column-resize-overlay-thumb-top{width:100%}html{--mtx-alert-container-shape:4px}html{--mtx-alert-outline-color:transparent;--mtx-alert-background-color:#212121;--mtx-alert-text-color:white;--mtx-alert-info-outline-color:transparent;--mtx-alert-info-background-color:#0d47a1;--mtx-alert-info-text-color:white;--mtx-alert-success-outline-color:transparent;--mtx-alert-success-background-color:#1b5e20;--mtx-alert-success-text-color:white;--mtx-alert-warning-outline-color:transparent;--mtx-alert-warning-background-color:#ff6f00;--mtx-alert-warning-text-color:white;--mtx-alert-danger-outline-color:transparent;--mtx-alert-danger-background-color:#b71c1c;--mtx-alert-danger-text-color:white}html{--mtx-colorpicker-toggle-active-state-icon-color:#7b1fa2;--mtx-colorpicker-toggle-icon-color:white}.mtx-colorpicker-toggle-active.mat-accent{--mtx-colorpicker-toggle-active-state-icon-color:#69f0ae}.mtx-colorpicker-toggle-active.mat-warn{--mtx-colorpicker-toggle-active-state-icon-color:#f44336}html{--mtx-datetimepicker-container-elevation-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);--mtx-datetimepicker-container-touch-elevation-shadow:0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);--mtx-datetimepicker-container-shape:4px;--mtx-datetimepicker-container-touch-shape:4px;--mtx-datetimepicker-selector-container-shape:4px}html{--mtx-datetimepicker-calendar-header-background-color:#7b1fa2;--mtx-datetimepicker-calendar-date-selected-state-text-color:white;--mtx-datetimepicker-calendar-date-selected-state-background-color:#7b1fa2;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(123, 31, 162, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:white;--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(123, 31, 162, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(123, 31, 162, 0.3);--mtx-datetimepicker-clock-hand-background-color:#7b1fa2;--mtx-datetimepicker-clock-cell-selected-state-background-color:#7b1fa2;--mtx-datetimepicker-time-input-active-state-text-color:#7b1fa2;--mtx-datetimepicker-time-input-active-state-background-color:rgba(123, 31, 162, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#7b1fa2;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(123, 31, 162, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(123, 31, 162, 0.2);--mtx-datetimepicker-toggle-active-state-icon-color:#7b1fa2;--mtx-datetimepicker-toggle-icon-color:white;--mtx-datetimepicker-calendar-body-label-text-color:rgba(255, 255, 255, 0.7);--mtx-datetimepicker-calendar-body-week-number-text-color:rgba(255, 255, 255, 0.7);--mtx-datetimepicker-calendar-header-text-color:white;--mtx-datetimepicker-calendar-header-divider-color:transparent;--mtx-datetimepicker-calendar-table-header-text-color:rgba(255, 255, 255, 0.7);--mtx-datetimepicker-calendar-date-today-outline-color:rgba(255, 255, 255, 0.5);--mtx-datetimepicker-calendar-date-text-color:white;--mtx-datetimepicker-calendar-date-outline-color:transparent;--mtx-datetimepicker-calendar-date-disabled-state-text-color:rgba(255, 255, 255, 0.5);--mtx-datetimepicker-container-background-color:#424242;--mtx-datetimepicker-container-text-color:white;--mtx-datetimepicker-clock-dial-background-color:rgba(255, 255, 255, 0.12);--mtx-datetimepicker-clock-cell-text-color:white;--mtx-datetimepicker-clock-cell-hover-state-background-color:rgba(255, 255, 255, 0.04);--mtx-datetimepicker-clock-cell-disabled-state-text-color:rgba(255, 255, 255, 0.5);--mtx-datetimepicker-time-input-text-color:white;--mtx-datetimepicker-time-input-background-color:rgba(255, 255, 255, 0.12);--mtx-datetimepicker-time-input-focus-state-background-color:#303030;--mtx-datetimepicker-time-input-warn-state-outline-color:#f44336;--mtx-datetimepicker-time-ampm-text-color:rgba(255, 255, 255, 0.75);--mtx-datetimepicker-time-ampm-outline-color:rgba(255, 255, 255, 0.5);--mtx-datetimepicker-time-ampm-selected-state-text-color:white}.mtx-datetimepicker-content.mat-accent{--mtx-datetimepicker-calendar-header-background-color:#69f0ae;--mtx-datetimepicker-calendar-date-selected-state-text-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-calendar-date-selected-state-background-color:#69f0ae;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(105, 240, 174, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:rgba(0, 0, 0, 0.87);--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(105, 240, 174, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(105, 240, 174, 0.3);--mtx-datetimepicker-clock-hand-background-color:#69f0ae;--mtx-datetimepicker-clock-cell-selected-state-background-color:#69f0ae;--mtx-datetimepicker-time-input-active-state-text-color:#69f0ae;--mtx-datetimepicker-time-input-active-state-background-color:rgba(105, 240, 174, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#69f0ae;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(105, 240, 174, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(105, 240, 174, 0.2)}.mtx-datetimepicker-content.mat-warn{--mtx-datetimepicker-calendar-header-background-color:#f44336;--mtx-datetimepicker-calendar-date-selected-state-text-color:white;--mtx-datetimepicker-calendar-date-selected-state-background-color:#f44336;--mtx-datetimepicker-calendar-date-selected-disabled-state-background-color:rgba(244, 67, 54, 0.4);--mtx-datetimepicker-calendar-date-today-selected-state-outline-color:white;--mtx-datetimepicker-calendar-date-focus-state-background-color:rgba(244, 67, 54, 0.3);--mtx-datetimepicker-calendar-date-hover-state-background-color:rgba(244, 67, 54, 0.3);--mtx-datetimepicker-clock-hand-background-color:#f44336;--mtx-datetimepicker-clock-cell-selected-state-background-color:#f44336;--mtx-datetimepicker-time-input-active-state-text-color:#f44336;--mtx-datetimepicker-time-input-active-state-background-color:rgba(244, 67, 54, 0.2);--mtx-datetimepicker-time-input-focus-state-outline-color:#f44336;--mtx-datetimepicker-time-input-focus-state-placeholder-text-color:rgba(244, 67, 54, 0.6);--mtx-datetimepicker-time-ampm-selected-state-background-color:rgba(244, 67, 54, 0.2)}.mtx-datetimepicker-toggle-active.mat-accent{--mtx-datetimepicker-toggle-active-state-icon-color:#69f0ae}.mtx-datetimepicker-toggle-active.mat-warn{--mtx-datetimepicker-toggle-active-state-icon-color:#f44336}html{--mtx-datetimepicker-calendar-text-font:Roboto, sans-serif;--mtx-datetimepicker-calendar-text-size:13px;--mtx-datetimepicker-calendar-body-label-text-size:14px;--mtx-datetimepicker-calendar-body-label-text-weight:500;--mtx-datetimepicker-calendar-period-button-text-size:14px;--mtx-datetimepicker-calendar-period-button-text-weight:500;--mtx-datetimepicker-calendar-table-header-text-size:11px;--mtx-datetimepicker-calendar-table-header-text-weight:400;--mtx-datetimepicker-clock-text-size:14px}html{--mtx-drawer-container-shape:0;--mtx-drawer-container-elevation-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12)}html{--mtx-drawer-container-background-color:#424242;--mtx-drawer-container-text-color:white}html{--mtx-grid-container-shape:0;--mtx-grid-table-cell-min-width:80px}html{--mtx-grid-outline-color:rgba(255, 255, 255, 0.2);--mtx-grid-column-menu-text-color:white;--mtx-grid-column-menu-divider-color:rgba(255, 255, 255, 0.12);--mtx-grid-table-footer-background-color:#212121;--mtx-grid-table-row-striped-background-color:#3a3a3a;--mtx-grid-table-row-hover-background-color:#2a2a2a;--mtx-grid-table-row-selected-background-color:#2a2a2a;--mtx-grid-table-row-selected-hover-background-color:#1a1a1a;--mtx-grid-table-cell-selected-outline-color:#69f0ae;--mtx-grid-resizable-handle-active-background-color:#7b1fa2;--mtx-grid-resizable-handle-hover-background-color:#7b1fa2;--mtx-grid-resizable-handle-disabled-background-color:rgba(255, 255, 255, 0.12)}html{--mtx-grid-row-expand-button-size:48px}html{--mtx-loader-backdrop-background-color:rgba(48, 48, 48, 0.75)}html{--mtx-popover-container-shape:4px;--mtx-popover-base-elevation-level:8}html{--mtx-popover-outline-color:rgba(255, 255, 255, 0.12);--mtx-popover-background-color:#424242;--mtx-popover-text-color:white}html{--mtx-progress-container-shape:4px}html{--mtx-progress-track-color:rgba(255, 255, 255, 0.04);--mtx-progress-indicator-color:rgba(255, 255, 255, 0.12);--mtx-progress-text-color:white;--mtx-progress-info-indicator-color:#0d47a1;--mtx-progress-info-text-color:white;--mtx-progress-success-indicator-color:#1b5e20;--mtx-progress-success-text-color:white;--mtx-progress-warning-indicator-color:#e65100;--mtx-progress-warning-text-color:white;--mtx-progress-danger-indicator-color:#b71c1c;--mtx-progress-danger-text-color:white}html{--mtx-progress-text-size:12px}html{--mtx-select-container-shape:4px;--mtx-select-container-elevation-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12)}html{--mtx-select-option-selected-state-text-color:#7b1fa2;--mtx-select-container-text-color:white;--mtx-select-placeholder-text-color:rgba(255, 255, 255, 0.5);--mtx-select-disabled-text-color:rgba(255, 255, 255, 0.5);--mtx-select-multiple-value-background-color:#616161;--mtx-select-multiple-value-outline-color:rgba(255, 255, 255, 0.12);--mtx-select-multiple-value-disabled-outline-color:rgba(255, 255, 255, 0.06);--mtx-select-multiple-value-icon-hover-background-color:rgba(255, 255, 255, 0.12);--mtx-select-clear-icon-color:rgba(255, 255, 255, 0.7);--mtx-select-clear-icon-hover-color:#f44336;--mtx-select-enabled-arrow-color:rgba(255, 255, 255, 0.7);--mtx-select-disabled-arrow-color:rgba(255, 255, 255, 0.5);--mtx-select-invalid-arrow-color:#f44336;--mtx-select-panel-background-color:#424242;--mtx-select-panel-divider-color:rgba(255, 255, 255, 0.12);--mtx-select-optgroup-label-text-color:rgba(255, 255, 255, 0.7);--mtx-select-option-label-text-color:white;--mtx-select-option-selected-state-background-color:rgba(255, 255, 255, 0.04);--mtx-select-option-hover-state-background-color:rgba(255, 255, 255, 0.04);--mtx-select-option-disabled-state-text-color:rgba(255, 255, 255, 0.5)}.ng-dropdown-panel.mat-accent{--mtx-select-option-selected-state-text-color:#69f0ae}.ng-dropdown-panel.mat-warn{--mtx-select-option-selected-state-text-color:#f44336}html{--mtx-split-gutter-hover-state-background-color:#7b1fa2;--mtx-split-gutter-background-color:rgba(255, 255, 255, 0.12)}.mtx-split>.mtx-split-gutter.mat-accent:hover{--mtx-split-gutter-hover-state-background-color:#69f0ae}.mtx-split>.mtx-split-gutter.mat-warn:hover{--mtx-split-gutter-hover-state-background-color:#f44336}html{--mdc-plain-tooltip-container-shape:4px;--mdc-plain-tooltip-supporting-text-line-height:16px}html{--mdc-plain-tooltip-container-color:#616161;--mdc-plain-tooltip-supporting-text-color:#fff}html{--mdc-plain-tooltip-supporting-text-font:Roboto, sans-serif;--mdc-plain-tooltip-supporting-text-size:12px;--mdc-plain-tooltip-supporting-text-weight:400;--mdc-plain-tooltip-supporting-text-tracking:0.0333333333em}
|
package/select/select.scss
CHANGED
|
@@ -15,6 +15,7 @@ $_tokens: tokens-mtx-select.$prefix, tokens-mtx-select.get-token-slots();
|
|
|
15
15
|
$filled-padding-top: var(--mat-form-field-filled-with-label-container-padding-top, 24px);
|
|
16
16
|
$filled-padding-bottom: var(--mat-form-field-filled-with-label-container-padding-bottom, 8px);
|
|
17
17
|
$vertical-padding: var(--mat-form-field-container-vertical-padding, 16px);
|
|
18
|
+
$text-line-height: var(--mat-form-field-container-text-line-height, var(--mat-sys-body-large-line-height));
|
|
18
19
|
|
|
19
20
|
padding: $filled-padding-top 16px $filled-padding-bottom;
|
|
20
21
|
margin: calc($filled-padding-top * -1) -16px calc($filled-padding-bottom * -1);
|
|
@@ -34,17 +35,21 @@ $_tokens: tokens-mtx-select.$prefix, tokens-mtx-select.get-token-slots();
|
|
|
34
35
|
|
|
35
36
|
.ng-value-container {
|
|
36
37
|
align-items: center;
|
|
38
|
+
gap: 4px;
|
|
37
39
|
|
|
38
40
|
.ng-input>input {
|
|
39
|
-
|
|
41
|
+
height: $text-line-height;
|
|
40
42
|
color: inherit;
|
|
41
43
|
font: inherit;
|
|
42
44
|
}
|
|
43
45
|
}
|
|
44
46
|
|
|
45
47
|
.ng-clear-wrapper {
|
|
48
|
+
display: inline-flex;
|
|
49
|
+
justify-content: center;
|
|
50
|
+
align-items: center;
|
|
46
51
|
width: 24px;
|
|
47
|
-
text-
|
|
52
|
+
height: $text-line-height;
|
|
48
53
|
}
|
|
49
54
|
}
|
|
50
55
|
|
|
@@ -93,10 +98,12 @@ $_tokens: tokens-mtx-select.$prefix, tokens-mtx-select.get-token-slots();
|
|
|
93
98
|
|
|
94
99
|
&.ng-select-multiple {
|
|
95
100
|
.ng-select-container .ng-value-container .ng-value {
|
|
96
|
-
|
|
97
|
-
|
|
101
|
+
display: inline-flex;
|
|
102
|
+
align-items: center;
|
|
103
|
+
height: $text-line-height;
|
|
104
|
+
padding: 0 calc(($text-line-height - 16px) / 2);
|
|
105
|
+
border-radius: 9999px;
|
|
98
106
|
font-size: .875em;
|
|
99
|
-
line-height: 18px;
|
|
100
107
|
|
|
101
108
|
@include token-utils.create-token-slot(background-color, multiple-value-background-color);
|
|
102
109
|
|
|
@@ -104,50 +111,32 @@ $_tokens: tokens-mtx-select.$prefix, tokens-mtx-select.get-token-slots();
|
|
|
104
111
|
|
|
105
112
|
border: 1px solid $border-color;
|
|
106
113
|
|
|
107
|
-
@include rtl {
|
|
108
|
-
margin-right: auto;
|
|
109
|
-
margin-left: 4px;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
114
|
&.ng-value-disabled {
|
|
113
115
|
opacity: .4;
|
|
114
116
|
}
|
|
115
117
|
|
|
116
118
|
.ng-value-label {
|
|
117
119
|
display: inline-block;
|
|
118
|
-
margin: 0
|
|
120
|
+
margin: 0 4px;
|
|
121
|
+
line-height: 16px;
|
|
119
122
|
}
|
|
120
123
|
|
|
121
124
|
.ng-value-icon {
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
height:
|
|
125
|
-
border-radius:
|
|
125
|
+
width: 16px;
|
|
126
|
+
height: 16px;
|
|
127
|
+
line-height: 16px;
|
|
128
|
+
border-radius: 50%;
|
|
126
129
|
text-align: center;
|
|
127
130
|
|
|
128
|
-
&.left {
|
|
129
|
-
margin-right: -4px;
|
|
130
|
-
|
|
131
|
-
@include rtl {
|
|
132
|
-
margin-left: -4px;
|
|
133
|
-
margin-right: auto;
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
&.right {
|
|
138
|
-
margin-left: -4px;
|
|
139
|
-
|
|
140
|
-
@include rtl {
|
|
141
|
-
margin-right: -4px;
|
|
142
|
-
margin-left: auto;
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
|
|
146
131
|
&:hover {
|
|
147
132
|
@include token-utils.create-token-slot(background-color, multiple-value-icon-hover-background-color);
|
|
148
133
|
}
|
|
149
134
|
}
|
|
150
135
|
}
|
|
136
|
+
|
|
137
|
+
&.ng-select-disabled .ng-select-container .ng-value-container .ng-value {
|
|
138
|
+
border-color: token-utils.get-token-variable(multiple-value-disabled-outline-color);
|
|
139
|
+
}
|
|
151
140
|
}
|
|
152
141
|
|
|
153
142
|
.ng-arrow-wrapper {
|
package/split/split.d.ts
CHANGED
|
@@ -43,11 +43,11 @@ export declare class MtxSplit implements AfterViewInit, OnDestroy {
|
|
|
43
43
|
protected _defaultOptions: MtxSplitDefaultOptions | null;
|
|
44
44
|
color: ThemePalette;
|
|
45
45
|
/** The split direction. */
|
|
46
|
-
get direction():
|
|
46
|
+
get direction(): "horizontal" | "vertical";
|
|
47
47
|
set direction(v: 'horizontal' | 'vertical');
|
|
48
48
|
private _direction;
|
|
49
49
|
/** The unit you want to specify area sizes. */
|
|
50
|
-
get unit():
|
|
50
|
+
get unit(): "percent" | "pixel";
|
|
51
51
|
set unit(v: 'percent' | 'pixel');
|
|
52
52
|
private _unit;
|
|
53
53
|
/** Gutters's size (dragging elements) in pixels. */
|
|
@@ -72,7 +72,7 @@ export declare class MtxSplit implements AfterViewInit, OnDestroy {
|
|
|
72
72
|
set disabled(v: boolean);
|
|
73
73
|
private _disabled;
|
|
74
74
|
/** Indicates the directionality of the areas. */
|
|
75
|
-
get dir():
|
|
75
|
+
get dir(): "ltr" | "rtl";
|
|
76
76
|
set dir(v: 'ltr' | 'rtl');
|
|
77
77
|
private _dir;
|
|
78
78
|
/**
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { AnimationTriggerMetadata } from '@angular/animations';
|
|
2
1
|
/**
|
|
3
2
|
* Animations used by MatTooltip.
|
|
4
3
|
* @docs-private
|
|
4
|
+
* @deprecated No longer being used, to be removed.
|
|
5
|
+
* @breaking-change 21.0.0
|
|
5
6
|
*/
|
|
6
7
|
export declare const matTooltipAnimations: {
|
|
7
|
-
readonly tooltipState:
|
|
8
|
+
readonly tooltipState: any;
|
|
8
9
|
};
|
package/tooltip/tooltip.d.ts
CHANGED
|
@@ -22,15 +22,27 @@ export declare const SCROLL_THROTTLE_MS = 20;
|
|
|
22
22
|
export declare function getMtxTooltipInvalidPositionError(position: string): Error;
|
|
23
23
|
/** Injection token that determines the scroll handling while a tooltip is visible. */
|
|
24
24
|
export declare const MTX_TOOLTIP_SCROLL_STRATEGY: InjectionToken<() => ScrollStrategy>;
|
|
25
|
-
/**
|
|
25
|
+
/**
|
|
26
|
+
* @docs-private
|
|
27
|
+
* @deprecated No longer used, will be removed.
|
|
28
|
+
* @breaking-change 21.0.0
|
|
29
|
+
*/
|
|
26
30
|
export declare function MTX_TOOLTIP_SCROLL_STRATEGY_FACTORY(overlay: Overlay): () => ScrollStrategy;
|
|
27
|
-
/**
|
|
31
|
+
/**
|
|
32
|
+
* @docs-private
|
|
33
|
+
* @deprecated No longer used, will be removed.
|
|
34
|
+
* @breaking-change 21.0.0
|
|
35
|
+
*/
|
|
28
36
|
export declare const MTX_TOOLTIP_SCROLL_STRATEGY_FACTORY_PROVIDER: {
|
|
29
37
|
provide: InjectionToken<() => ScrollStrategy>;
|
|
30
38
|
deps: (typeof Overlay)[];
|
|
31
39
|
useFactory: typeof MTX_TOOLTIP_SCROLL_STRATEGY_FACTORY;
|
|
32
40
|
};
|
|
33
|
-
/**
|
|
41
|
+
/**
|
|
42
|
+
* @docs-private
|
|
43
|
+
* @deprecated No longer used, will be removed.
|
|
44
|
+
* @breaking-change 21.0.0
|
|
45
|
+
*/
|
|
34
46
|
export declare function MTX_TOOLTIP_DEFAULT_OPTIONS_FACTORY(): MtxTooltipDefaultOptions;
|
|
35
47
|
/** Injection token to be used to override the default options for `mtxTooltip`. */
|
|
36
48
|
export declare const MTX_TOOLTIP_DEFAULT_OPTIONS: InjectionToken<MtxTooltipDefaultOptions>;
|
|
@@ -74,16 +86,14 @@ export declare const TOOLTIP_PANEL_CLASS = "mtx-mdc-tooltip-panel";
|
|
|
74
86
|
* https://material.io/design/components/tooltips.html
|
|
75
87
|
*/
|
|
76
88
|
export declare class MtxTooltip implements OnDestroy, AfterViewInit {
|
|
77
|
-
private _overlay;
|
|
78
89
|
private _elementRef;
|
|
79
|
-
private _scrollDispatcher;
|
|
80
|
-
private _viewContainerRef;
|
|
81
90
|
private _ngZone;
|
|
82
91
|
private _platform;
|
|
83
92
|
private _ariaDescriber;
|
|
84
93
|
private _focusMonitor;
|
|
85
94
|
protected _dir: Directionality;
|
|
86
95
|
private _injector;
|
|
96
|
+
private _viewContainerRef;
|
|
87
97
|
private _defaultOptions;
|
|
88
98
|
_overlayRef: OverlayRef | null;
|
|
89
99
|
_tooltipInstance: TooltipComponent | null;
|
|
@@ -92,7 +102,6 @@ export declare class MtxTooltip implements OnDestroy, AfterViewInit {
|
|
|
92
102
|
private _positionAtOrigin;
|
|
93
103
|
private _disabled;
|
|
94
104
|
private _tooltipClass;
|
|
95
|
-
private _scrollStrategy;
|
|
96
105
|
private _viewInitialized;
|
|
97
106
|
private _pointerExitEventsInitialized;
|
|
98
107
|
private readonly _tooltipComponent;
|
|
@@ -100,6 +109,7 @@ export declare class MtxTooltip implements OnDestroy, AfterViewInit {
|
|
|
100
109
|
private _currentPosition;
|
|
101
110
|
private readonly _cssClassPrefix;
|
|
102
111
|
private _ariaDescriptionPending;
|
|
112
|
+
private _dirSubscribed;
|
|
103
113
|
/** Allows the user to define the position of the tooltip relative to the parent element */
|
|
104
114
|
get position(): TooltipPosition;
|
|
105
115
|
set position(value: TooltipPosition);
|
|
@@ -152,13 +162,12 @@ export declare class MtxTooltip implements OnDestroy, AfterViewInit {
|
|
|
152
162
|
});
|
|
153
163
|
/** Manually-bound passive event listeners. */
|
|
154
164
|
private readonly _passiveListeners;
|
|
155
|
-
/** Reference to the current document. */
|
|
156
|
-
private _document;
|
|
157
165
|
/** Timer started at the last `touchstart` event. */
|
|
158
166
|
private _touchstartTimeout;
|
|
159
167
|
/** Emits when the component is destroyed. */
|
|
160
168
|
private readonly _destroyed;
|
|
161
|
-
/**
|
|
169
|
+
/** Whether ngOnDestroyed has been called. */
|
|
170
|
+
private _isDestroyed;
|
|
162
171
|
constructor(...args: unknown[]);
|
|
163
172
|
ngAfterViewInit(): void;
|
|
164
173
|
/**
|
|
@@ -262,7 +271,6 @@ export declare class TooltipComponent implements OnDestroy {
|
|
|
262
271
|
private readonly _showAnimation;
|
|
263
272
|
/** Name of the hide animation and the class that toggles it. */
|
|
264
273
|
private readonly _hideAnimation;
|
|
265
|
-
/** Inserted by Angular inject() migration for backwards compatibility */
|
|
266
274
|
constructor(...args: unknown[]);
|
|
267
275
|
/**
|
|
268
276
|
* Shows the tooltip with an animation originating from the provided origin
|