matcha-theme 18.0.27 → 18.1.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +304 -0
- package/abstracts/_breakpoints.scss +33 -0
- package/abstracts/_colors.scss +833 -0
- package/abstracts/_elevation.scss +102 -0
- package/abstracts/_functions.scss +424 -0
- package/abstracts/_grid.scss +163 -0
- package/abstracts/_order.scss +46 -0
- package/abstracts/_position.scss +51 -0
- package/abstracts/_sizes.scss +95 -0
- package/abstracts/_spacings.scss +216 -0
- package/abstracts/_typography.scss +124 -0
- package/base/_helpers.scss +171 -0
- package/base/_reset.scss +9 -0
- package/base/_typography.scss +244 -0
- package/components/matcha-audio-player.scss +37 -0
- package/components/matcha-buttons.scss +165 -0
- package/components/matcha-cards.scss +93 -0
- package/components/matcha-color-pick.scss +32 -0
- package/components/matcha-draggable.scss +25 -0
- package/components/matcha-header.scss +327 -0
- package/components/matcha-horizontal-tree.scss +277 -0
- package/components/matcha-menu.scss +71 -0
- package/components/matcha-progress-bar.scss +107 -0
- package/components/matcha-scrollbar.scss +36 -0
- package/components/matcha-scrollbox-shadow.scss +127 -0
- package/components/matcha-table.scss +279 -0
- package/css/matcha-style.css +76772 -0
- package/fonts/CircularStd-Black.eot +0 -0
- package/fonts/CircularStd-Black.svg +3426 -0
- package/fonts/CircularStd-Black.ttf +0 -0
- package/fonts/CircularStd-Black.woff +0 -0
- package/fonts/CircularStd-Black.woff2 +0 -0
- package/fonts/CircularStd-Bold.eot +0 -0
- package/fonts/CircularStd-Bold.otf +0 -0
- package/fonts/CircularStd-Bold.svg +13532 -0
- package/fonts/CircularStd-Bold.ttf +0 -0
- package/fonts/CircularStd-Bold.woff +0 -0
- package/fonts/CircularStd-Bold.woff2 +0 -0
- package/fonts/CircularStd-Medium.eot +0 -0
- package/fonts/CircularStd-Medium.otf +0 -0
- package/fonts/CircularStd-Medium.svg +13511 -0
- package/fonts/CircularStd-Medium.ttf +0 -0
- package/fonts/CircularStd-Medium.woff +0 -0
- package/fonts/CircularStd-Medium.woff2 +0 -0
- package/fonts/CircularStd-Regular.eot +0 -0
- package/fonts/CircularStd-Regular.otf +0 -0
- package/fonts/CircularStd-Regular.svg +2378 -0
- package/fonts/CircularStd-Regular.ttf +0 -0
- package/fonts/CircularStd-Regular.woff +0 -0
- package/fonts/CircularStd-Regular.woff2 +0 -0
- package/main.scss +139 -0
- package/package.json +2 -2
- package/tokens/_animations.scss +37 -0
- package/tokens/_breakpoints.scss +38 -0
- package/tokens/_color-tokens.scss +1216 -0
- package/tokens/_elevation-tokens.scss +14 -0
- package/tokens/_spacing-tokens.scss +96 -0
- package/tokens/_typography-tokens.scss +25 -0
- package/vendors/angular-editor.scss +56 -0
- package/vendors/angular-material-fixes.scss +261 -0
- package/vendors/calendar.scss +2880 -0
- package/vendors/charts.scss +92 -0
- package/vendors/ng5-slider.scss +56 -0
- package/vendors/ngx-material-timepicker.scss +50 -0
- package/core.scss +0 -1210
- package/matcha-core.css +0 -62385
- package/matcha-core.min.css +0 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// The default duration value for elevation transitions.
|
|
2
|
+
$elevation-transition-duration: 280ms !default;
|
|
3
|
+
|
|
4
|
+
// The default easing value for elevation transitions.
|
|
5
|
+
$elevation-transition-timing-function: $matcha-fast-out-slow-in-timing-function;
|
|
6
|
+
|
|
7
|
+
// The default color for elevation shadows.
|
|
8
|
+
$elevation-color: black !default;
|
|
9
|
+
|
|
10
|
+
// The default opacity scaling value for elevation shadows.
|
|
11
|
+
$elevation-opacity: 1 !default;
|
|
12
|
+
|
|
13
|
+
// Prefix for elevation-related selectors.
|
|
14
|
+
$_elevation-prefix: "elevation-z-";
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
$unit-base-pixels: px;
|
|
2
|
+
$unit-base-percent: .0%;
|
|
3
|
+
|
|
4
|
+
$rate-radius-none: 0;
|
|
5
|
+
$rate-radius-minimum: 2;
|
|
6
|
+
$rate-radius-small: 4;
|
|
7
|
+
$rate-radius-medium: 8;
|
|
8
|
+
$rate-radius-large: 16;
|
|
9
|
+
$rate-radius-wider: 9999;
|
|
10
|
+
|
|
11
|
+
$border-radius-none: 0px; // 0px
|
|
12
|
+
$border-radius-minimum: 2px; // 2px
|
|
13
|
+
$border-radius-small: 4px; // 4px
|
|
14
|
+
$border-radius-medium: 8px; // 8px
|
|
15
|
+
$border-radius-large: 16px; // 16px
|
|
16
|
+
$border-radius-wider: 9999px; // 9999px
|
|
17
|
+
$border-width-none: 0px; // 0px
|
|
18
|
+
$border-width-thin: 2px; // 2px
|
|
19
|
+
$border-width-thick: 4px; // 4px
|
|
20
|
+
$border-width-thicker: 8px; // 8px
|
|
21
|
+
$border-style-none: none;
|
|
22
|
+
$border-style-solid: solid;
|
|
23
|
+
$border-style-dashed: dashed;
|
|
24
|
+
$border-style-dotted: dotted;
|
|
25
|
+
|
|
26
|
+
$size-padding-minimum: 8px;
|
|
27
|
+
$size-padding-xxsmall: 16px;
|
|
28
|
+
$size-padding-xsmall: 24px;
|
|
29
|
+
$size-padding-small: 32px;
|
|
30
|
+
$size-padding-medium: 40px;
|
|
31
|
+
$size-padding-big: 48px;
|
|
32
|
+
$size-padding-bigger: 56px;
|
|
33
|
+
$size-padding-tall: 64px;
|
|
34
|
+
$size-padding-taller: 72px;
|
|
35
|
+
$size-padding-large: 80px;
|
|
36
|
+
$size-padding-xlarge: 88px;
|
|
37
|
+
$size-padding-xxlarge: 96px;
|
|
38
|
+
$size-padding-larger: 104px;
|
|
39
|
+
$size-padding-largest: 112px;
|
|
40
|
+
$size-padding-wider: 120px;
|
|
41
|
+
$spacing-stack-min: 8px 0; // 8px
|
|
42
|
+
$spacing-stack-xxs: 16px 0; // 16px
|
|
43
|
+
$spacing-stack-xs: 24px 0; // 24px
|
|
44
|
+
$spacing-stack-s: 32px 0; // 32px
|
|
45
|
+
$spacing-stack-m: 40px 0; // 40px
|
|
46
|
+
$spacing-stack-big: 48px 0; // 48px
|
|
47
|
+
$spacing-stack-bgg: 56px 0; // 56px
|
|
48
|
+
$spacing-stack-tll: 64px 0; // 64px
|
|
49
|
+
$spacing-stack-tlr: 72px 0; // 72px
|
|
50
|
+
$spacing-stack-lg: 80px 0; // 80px
|
|
51
|
+
$spacing-stack-xl: 88px 0; // 88px
|
|
52
|
+
$spacing-stack-xxl: 96px 0; // 96px
|
|
53
|
+
$spacing-stack-lgr: 104px 0; // 104px
|
|
54
|
+
$spacing-stack-lgs: 112px 0; // 112px
|
|
55
|
+
$spacing-inline-min: 0 8px; // 8px
|
|
56
|
+
$spacing-inline-xxs: 0 16px; // 16px
|
|
57
|
+
$spacing-inline-xs: 0 24px; // 24px
|
|
58
|
+
$spacing-inline-s: 0 32px; // 32px
|
|
59
|
+
$spacing-inline-m: 0 40px; // 40px
|
|
60
|
+
$spacing-inline-big: 0 48px; // 48px
|
|
61
|
+
$spacing-inline-bgg: 0 56px; // 56px
|
|
62
|
+
$spacing-inline-tll: 0 64px; // 64px
|
|
63
|
+
$spacing-inline-tlr: 0 72px; // 72px
|
|
64
|
+
$spacing-inline-lg: 0 80px; // 80px
|
|
65
|
+
$spacing-inline-xl: 0 88px; // 88px
|
|
66
|
+
$spacing-inline-xxl: 0 96px; // 96px
|
|
67
|
+
$spacing-inline-lgr: 0 104px; // 104px
|
|
68
|
+
$spacing-inline-lgs: 0 112px; // 112px
|
|
69
|
+
$spacing-inset-min: 8px 8px; // 8px
|
|
70
|
+
$spacing-inset-xxs: 16px 16px; // 16px
|
|
71
|
+
$spacing-inset-xs: 24px 24px; // 24px
|
|
72
|
+
$spacing-inset-s: 32px 32px; // 32px
|
|
73
|
+
$spacing-inset-m: 40px 40px; // 40px
|
|
74
|
+
$spacing-inset-big: 48px 48px; // 48px
|
|
75
|
+
$spacing-inset-bgg: 56px 56px; // 56px
|
|
76
|
+
$spacing-inset-tll: 64px 64px; // 64px
|
|
77
|
+
$spacing-inset-tlr: 72px 72px; // 72px
|
|
78
|
+
$spacing-inset-lg: 80px 80px; // 80px
|
|
79
|
+
$spacing-inset-xl: 88px 88px; // 88px
|
|
80
|
+
$spacing-inset-xxl: 96px 96px; // 96px
|
|
81
|
+
$spacing-inset-lgr: 104px 104px; // 104px
|
|
82
|
+
$spacing-inset-lgs: 112px 112px; // 112px
|
|
83
|
+
$spacing-squish-min: 8px 16px; // 8px
|
|
84
|
+
$spacing-squish-xxs: 16px 24px; // 16px
|
|
85
|
+
$spacing-squish-xs: 24px 32px; // 24px
|
|
86
|
+
$spacing-squish-s: 32px 40px; // 32px
|
|
87
|
+
$spacing-squish-m: 40px 48px; // 40px
|
|
88
|
+
$spacing-squish-big: 48px 56px; // 48px
|
|
89
|
+
$spacing-squish-bgg: 56px 64px; // 56px
|
|
90
|
+
$spacing-squish-tll: 64px 72px; // 64px
|
|
91
|
+
$spacing-squish-tlr: 72px 80px; // 72px
|
|
92
|
+
$spacing-squish-lg: 80px 88px; // 80px
|
|
93
|
+
$spacing-squish-xl: 88px 96px; // 88px
|
|
94
|
+
$spacing-squish-xxl: 96px 104px; // 96px
|
|
95
|
+
$spacing-squish-lgr: 104px 112px; // 104px
|
|
96
|
+
$spacing-squish-lgs: 112px 120px; // 112px
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
$size-font-xxsmall: 10px;
|
|
2
|
+
$size-font-xsmall: 12px;
|
|
3
|
+
$size-font-small: 14px;
|
|
4
|
+
$size-font-medium: 16px;
|
|
5
|
+
$size-font-big: 18px;
|
|
6
|
+
$size-font-large: 20px;
|
|
7
|
+
$size-font-xlarge: 24px;
|
|
8
|
+
$size-font-xxlarge: 32px;
|
|
9
|
+
$size-font-2-xxlarge: 40px;
|
|
10
|
+
$size-font-weight-thin: 100;
|
|
11
|
+
$size-font-weight-extra-light: 200;
|
|
12
|
+
$size-font-weight-light: 300;
|
|
13
|
+
$size-font-weight-normal: 400;
|
|
14
|
+
$size-font-weight-medium: 500;
|
|
15
|
+
$size-font-weight-semi-bold: 600;
|
|
16
|
+
$size-font-weight-bold: 700;
|
|
17
|
+
$size-font-weight-extra-bold: 800;
|
|
18
|
+
$size-font-weight-black: 900;
|
|
19
|
+
$size-font-base: 16px;
|
|
20
|
+
$size-line-height-minimum: 32px;
|
|
21
|
+
$size-line-height-small: 40px;
|
|
22
|
+
$size-line-height-medium: 48px;
|
|
23
|
+
$size-line-height-large: 56px;
|
|
24
|
+
$size-line-height-xlarge: 64px;
|
|
25
|
+
$size-line-height-xxlarge: 72px;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
@mixin vendor-angular-editor($theme) {
|
|
2
|
+
$is-dark-theme: map-get($theme, is-dark);
|
|
3
|
+
$primary: map-get($theme, primary);
|
|
4
|
+
$accent: map-get($theme, accent);
|
|
5
|
+
$warn: map-get($theme, warn);
|
|
6
|
+
$background: map-get($theme, background);
|
|
7
|
+
$foreground: map-get($theme, foreground);
|
|
8
|
+
|
|
9
|
+
.angular-editor {
|
|
10
|
+
.angular-editor-toolbar {
|
|
11
|
+
font: 100 0.8rem/15px Roboto, Arial, sans-serif !important;
|
|
12
|
+
background-color: map-get($background, disabled) !important;
|
|
13
|
+
padding: 8px !important;
|
|
14
|
+
// height: 56px;
|
|
15
|
+
border: 0px !important;
|
|
16
|
+
|
|
17
|
+
.angular-editor-toolbar-set {
|
|
18
|
+
.angular-editor-button {
|
|
19
|
+
background-color: transparent !important;
|
|
20
|
+
vertical-align: middle !important;
|
|
21
|
+
border: 0 !important;
|
|
22
|
+
padding: 8px !important;
|
|
23
|
+
float: left !important;
|
|
24
|
+
border-radius: 50px;
|
|
25
|
+
|
|
26
|
+
&:hover {
|
|
27
|
+
background: map-get($background, card-alpha) !important;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
&.active {
|
|
31
|
+
background: map-get($background, card) !important;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
i {
|
|
35
|
+
color: map-get($foreground, text);
|
|
36
|
+
height: 24px !important;
|
|
37
|
+
width: 24px !important;
|
|
38
|
+
font-size: 16px !important;
|
|
39
|
+
line-height: 24px !important;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.angular-editor-textarea {
|
|
46
|
+
min-height: 100px !important;
|
|
47
|
+
height: 30vh !important;
|
|
48
|
+
padding: 16px !important;
|
|
49
|
+
border: 0px !important;
|
|
50
|
+
background-color: transparent !important;
|
|
51
|
+
overflow-x: hidden !important;
|
|
52
|
+
overflow-y: auto !important;
|
|
53
|
+
position: relative !important;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
@@ -0,0 +1,261 @@
|
|
|
1
|
+
@mixin vendor-angular-material-fixes($theme) {
|
|
2
|
+
$primary: map-get($theme, primary);
|
|
3
|
+
$accent: map-get($theme, accent);
|
|
4
|
+
$warn: map-get($theme, warn);
|
|
5
|
+
$background: map-get($theme, background);
|
|
6
|
+
$foreground: map-get($theme, foreground);
|
|
7
|
+
|
|
8
|
+
// -------------------------------------------------------------------------------------------------------------------
|
|
9
|
+
// @ ANGULAR MATERIAL - To attempt to fix some of the issues with the Angular Material components we have to override
|
|
10
|
+
// -------------------------------------------------------------------------------------------------------------------
|
|
11
|
+
--mdc-typography-button-letter-spacing: 0;
|
|
12
|
+
.mat-mdc-unelevated-button,
|
|
13
|
+
.mat-mdc-raised-button,
|
|
14
|
+
.mat-mdc-fab,
|
|
15
|
+
.mat-mdc-mini-fab {
|
|
16
|
+
--mdc-filled-button-container-shape: 8px;
|
|
17
|
+
&:not([disabled="true"]) {
|
|
18
|
+
&.mat-primary {
|
|
19
|
+
color: map-get($primary, "default-contrast");
|
|
20
|
+
}
|
|
21
|
+
&.mat-accent {
|
|
22
|
+
color: map-get($accent, "default-contrast");
|
|
23
|
+
}
|
|
24
|
+
&.mat-warn {
|
|
25
|
+
color: map-get($warn, "default-contrast");
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
.mat-mdc-outlined-button {
|
|
30
|
+
--mdc-outlined-button-container-shape: 8px;
|
|
31
|
+
--mdc-outlined-button-outline-color: currentColor;
|
|
32
|
+
--mdc-outlined-button-outline-width: 0;
|
|
33
|
+
box-shadow: 0px 0px 0px 2px currentColor inset;
|
|
34
|
+
}
|
|
35
|
+
.mat-mdc-raised-button {
|
|
36
|
+
--mdc-protected-button-container-height: 36px;
|
|
37
|
+
--mdc-protected-button-container-shape: 8px;
|
|
38
|
+
--mdc-protected-button-container-elevation: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
|
|
39
|
+
0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
|
40
|
+
}
|
|
41
|
+
.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__leading,
|
|
42
|
+
.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__notch,
|
|
43
|
+
.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__trailing {
|
|
44
|
+
--mdc-outlined-text-field-outline-width: 2px;
|
|
45
|
+
}
|
|
46
|
+
.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline .mdc-notched-outline__leading,
|
|
47
|
+
.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline .mdc-notched-outline__notch,
|
|
48
|
+
.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline .mdc-notched-outline__trailing {
|
|
49
|
+
--mdc-outlined-text-field-outline-width: 2px;
|
|
50
|
+
}
|
|
51
|
+
.mdc-notched-outline__trailing {
|
|
52
|
+
border-left: none;
|
|
53
|
+
border-right: 2px solid;
|
|
54
|
+
}
|
|
55
|
+
.mdc-notched-outline__leading {
|
|
56
|
+
border-left: 2px solid;
|
|
57
|
+
border-right: none;
|
|
58
|
+
width: 12px;
|
|
59
|
+
}
|
|
60
|
+
.mdc-notched-outline__notch {
|
|
61
|
+
border-left: 2px solid transparent;
|
|
62
|
+
}
|
|
63
|
+
.mdc-notched-outline__leading,
|
|
64
|
+
.mdc-notched-outline__notch,
|
|
65
|
+
.mdc-notched-outline__trailing {
|
|
66
|
+
border-top: 2px solid;
|
|
67
|
+
border-bottom: 2px solid;
|
|
68
|
+
}
|
|
69
|
+
.mdc-text-field--outlined {
|
|
70
|
+
--mdc-outlined-text-field-container-shape: 8px;
|
|
71
|
+
}
|
|
72
|
+
.mat-mdc-text-field-wrapper.mdc-text-field--outlined
|
|
73
|
+
.mdc-notched-outline--upgraded
|
|
74
|
+
.mdc-floating-label--float-above {
|
|
75
|
+
--mat-mdc-form-field-label-transform: translateY(-29.75px)
|
|
76
|
+
scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/* reduce the input height fom 56px to 48px */
|
|
80
|
+
.mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
|
|
81
|
+
top: 22px;
|
|
82
|
+
}
|
|
83
|
+
.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
|
|
84
|
+
padding-top: 12px;
|
|
85
|
+
padding-bottom: 12px;
|
|
86
|
+
}
|
|
87
|
+
.mat-mdc-form-field-infix {
|
|
88
|
+
min-height: 48px;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/* align icons inside of buttons */
|
|
92
|
+
.mat-mdc-icon-button.mat-mdc-button-base {
|
|
93
|
+
padding: 0;
|
|
94
|
+
}
|
|
95
|
+
.mat-mdc-icon-button.mat-mdc-button-base {
|
|
96
|
+
display: flex;
|
|
97
|
+
align-content: center;
|
|
98
|
+
justify-content: center;
|
|
99
|
+
flex-wrap: wrap;
|
|
100
|
+
}
|
|
101
|
+
.mat-stepper-vertical,
|
|
102
|
+
.mat-stepper-horizontal {
|
|
103
|
+
--mat-stepper-container-color: map-get($background, surface);
|
|
104
|
+
}
|
|
105
|
+
.mat-stepper-horizontal {
|
|
106
|
+
&.bullet-stepper-header-labeled {
|
|
107
|
+
.mat-horizontal-stepper-header-container {
|
|
108
|
+
justify-content: end;
|
|
109
|
+
margin-bottom: 0;
|
|
110
|
+
margin-top: 0;
|
|
111
|
+
margin-right: 0;
|
|
112
|
+
padding-right: 24px;
|
|
113
|
+
height: 0;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
&.bullet-stepper-header-labeled,
|
|
118
|
+
&.bullet-stepper-header {
|
|
119
|
+
position: relative;
|
|
120
|
+
|
|
121
|
+
.mat-horizontal-stepper-header-container {
|
|
122
|
+
.mat-stepper-horizontal-line {
|
|
123
|
+
display: none;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.mat-step-header-ripple {
|
|
127
|
+
display: none;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.mat-horizontal-stepper-header {
|
|
131
|
+
height: initial;
|
|
132
|
+
overflow: initial;
|
|
133
|
+
|
|
134
|
+
&.mat-step-header {
|
|
135
|
+
padding: 0;
|
|
136
|
+
border-radius: 0;
|
|
137
|
+
flex-direction: column;
|
|
138
|
+
position: inherit;
|
|
139
|
+
width: 40px;
|
|
140
|
+
|
|
141
|
+
&.cdk-keyboard-focused,
|
|
142
|
+
&.cdk-program-focused,
|
|
143
|
+
&:hover {
|
|
144
|
+
background-color: transparent;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.mat-step-icon {
|
|
148
|
+
margin: -32px 0 0 8px;
|
|
149
|
+
border-radius: 8px;
|
|
150
|
+
height: 8px;
|
|
151
|
+
width: 32px;
|
|
152
|
+
flex-shrink: 0;
|
|
153
|
+
position: absolute;
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.mat-step-label {
|
|
158
|
+
position: absolute;
|
|
159
|
+
display: none;
|
|
160
|
+
right: 0;
|
|
161
|
+
margin-top: -52px;
|
|
162
|
+
margin-right: 24px;
|
|
163
|
+
font-family: "CircularStd";
|
|
164
|
+
font-weight: 700;
|
|
165
|
+
color: map-get($foreground, label);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.mat-step-label.mat-step-label-active {
|
|
169
|
+
display: none;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.mat-step-label.mat-step-label-active.mat-step-label-selected {
|
|
173
|
+
display: flex;
|
|
174
|
+
justify-content: flex-end;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.mat-step-icon-state-edit {
|
|
178
|
+
margin: 0;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.mat-step-icon-state-edit.mat-step-icon {
|
|
182
|
+
background-color: map-get($accent, default);
|
|
183
|
+
|
|
184
|
+
.mat-icon {
|
|
185
|
+
display: none;
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.mat-step-icon-state-number {
|
|
190
|
+
// background-color: blue;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.mat-step-icon-state-number.mat-step-icon {
|
|
194
|
+
background-color: map-get($background, disabled);
|
|
195
|
+
|
|
196
|
+
.mat-step-icon-content {
|
|
197
|
+
display: none;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.mat-step-icon-state-number.mat-step-icon.mat-step-icon-selected {
|
|
202
|
+
background-color: map-get($accent, default);
|
|
203
|
+
order: 1;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.mat-horizontal-content-container {
|
|
209
|
+
padding: 0;
|
|
210
|
+
|
|
211
|
+
.mat-dialog-content {
|
|
212
|
+
max-height: calc(100vh - 268px);
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
&.hide-stepper-header {
|
|
218
|
+
.mat-horizontal-stepper-header-container {
|
|
219
|
+
display: none !important;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.mat-horizontal-content-container {
|
|
223
|
+
overflow: hidden;
|
|
224
|
+
padding: 0;
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
&.page-layout-stepper {
|
|
229
|
+
.mat-horizontal-stepper-header-container {
|
|
230
|
+
padding-right: 24px;
|
|
231
|
+
|
|
232
|
+
.mat-horizontal-stepper-header {
|
|
233
|
+
.mat-step-label {
|
|
234
|
+
margin-top: -60px;
|
|
235
|
+
margin-right: 24px;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
@media screen and (min-width: 600px) {
|
|
242
|
+
.mat-stepper-horizontal {
|
|
243
|
+
&.bullet-stepper-header-labeled {
|
|
244
|
+
.mat-horizontal-stepper-header-container {
|
|
245
|
+
padding-right: 72px;
|
|
246
|
+
.mat-horizontal-stepper-header {
|
|
247
|
+
.mat-step-label {
|
|
248
|
+
margin-right: 72px;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
@media screen and (min-width: 1024px) {
|
|
256
|
+
}
|
|
257
|
+
@media screen and (min-width: 1440px) {
|
|
258
|
+
}
|
|
259
|
+
@media screen and (min-width: 1920px) {
|
|
260
|
+
}
|
|
261
|
+
}
|