@inchurch/matcha-theme 20.0.8 → 20.276.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/abstracts/_colors.scss +404 -404
- package/abstracts/_elevation.scss +102 -102
- package/abstracts/_functions.scss +1212 -1212
- package/abstracts/_media-breakpoint.scss +23 -23
- package/abstracts/_typography.scss +127 -127
- package/base/_reset.scss +438 -438
- package/components/app-page-header.scss +260 -0
- package/components/matcha-accordion.scss +294 -157
- package/components/matcha-avatar.scss +171 -31
- package/components/matcha-badge.scss +4 -4
- package/components/matcha-breadcrumb.scss +232 -126
- package/components/matcha-button-toggle.scss +44 -0
- package/components/matcha-buttons.scss +908 -784
- package/components/matcha-calendar.scss +70 -2
- package/components/matcha-cards.scss +28 -2
- package/components/matcha-checkbox.scss +191 -490
- package/components/matcha-chip.scss +297 -212
- package/components/matcha-command-palette.scss +291 -63
- package/components/matcha-crop.scss +407 -172
- package/components/matcha-date.scss +81 -81
- package/components/matcha-divider.scss +86 -31
- package/components/matcha-drawer.scss +201 -50
- package/components/matcha-drop-image.scss +14 -0
- package/components/matcha-drop-list.scss +42 -1
- package/components/matcha-empty-state.scss +195 -83
- package/components/matcha-flag.scss +93 -52
- package/components/matcha-footer.scss +68 -164
- package/components/matcha-form-field.scss +52 -0
- package/components/matcha-form-section.scss +101 -101
- package/components/matcha-header.scss +135 -325
- package/components/matcha-highlight.scss +65 -197
- package/components/matcha-hint-text.scss +21 -0
- package/components/matcha-horizontal-tree.scss +317 -317
- package/components/matcha-icon.scss +17 -25
- package/components/matcha-list.scss +5 -5
- package/components/matcha-menu.scss +13 -0
- package/components/matcha-modal.scss +58 -84
- package/components/matcha-nav.scss +361 -230
- package/components/matcha-notification.scss +413 -197
- package/components/matcha-option.scss +79 -23
- package/components/matcha-paginator.scss +689 -235
- package/components/matcha-panel.scss +42 -26
- package/components/matcha-profile-card.scss +50 -50
- package/components/matcha-progress-bar.scss +257 -153
- package/components/matcha-radio.scss +244 -452
- package/components/matcha-scrollbox-shadow.scss +122 -122
- package/components/matcha-select.scss +3 -3
- package/components/matcha-skeleton.scss +18 -0
- package/components/matcha-slide-toggle.scss +47 -2
- package/components/matcha-slider.scss +172 -75
- package/components/matcha-snack-bar.scss +114 -121
- package/components/matcha-spinner.scss +76 -57
- package/components/matcha-status-pill.scss +82 -0
- package/components/matcha-stepper.scss +377 -177
- package/components/matcha-table.scss +569 -785
- package/components/matcha-tabs.scss +624 -469
- package/components/matcha-text-editor.scss +98 -144
- package/components/matcha-toolbar.scss +359 -206
- package/components/matcha-tooltip.scss +156 -62
- package/components/matcha-tree-view.scss +189 -0
- package/components/matcha-uploader.scss +240 -62
- package/fonts/manrope/manrope-latin-ext.woff2 +0 -0
- package/fonts/manrope/manrope-latin.woff2 +0 -0
- package/layout/matcha-page-layout.scss +776 -0
- package/main.scss +232 -261
- package/package.json +1 -1
- package/tokens/_animations-tokens.scss +37 -37
- package/tokens/_breakpoints-tokens.scss +35 -26
- package/tokens/_color-tokens.scss +1152 -1152
- package/tokens/_css-custom-properties.scss +650 -568
- package/tokens/_spacing-tokens.scss +94 -94
- package/vendors/angular-editor.scss +56 -56
- package/vendors/angular-material-fixes.scss +297 -297
- package/vendors/charts.scss +92 -92
- package/vendors/ng5-slider.scss +56 -56
- package/vendors/ngx-material-timepicker.scss +50 -50
- package/fonts/CircularStd-Black.eot +0 -0
- package/fonts/CircularStd-Black.svg +0 -3426
- 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 +0 -13532
- 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 +0 -13511
- 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 +0 -2378
- package/fonts/CircularStd-Regular.ttf +0 -0
- package/fonts/CircularStd-Regular.woff +0 -0
- package/fonts/CircularStd-Regular.woff2 +0 -0
|
@@ -1,94 +1,94 @@
|
|
|
1
|
-
$unit-base-pixels: px;
|
|
2
|
-
$unit-base-percent: .0%;
|
|
3
|
-
|
|
4
|
-
// Border Radius — aligned with Figma (matcha/radius/*)
|
|
5
|
-
$border-radius-none: 0px;
|
|
6
|
-
$border-radius-sm: 2px;
|
|
7
|
-
$border-radius-md: 4px;
|
|
8
|
-
$border-radius-lg: 8px;
|
|
9
|
-
$border-radius-xl: 16px;
|
|
10
|
-
$border-radius-2xl: 24px;
|
|
11
|
-
$border-radius-pill: 9999px;
|
|
12
|
-
|
|
13
|
-
// Border Width — aligned with Figma (matcha/border/*)
|
|
14
|
-
$border-width-none: 0px;
|
|
15
|
-
$border-width-hairline: 1px;
|
|
16
|
-
$border-width-thin: 2px;
|
|
17
|
-
$border-width-medium: 4px;
|
|
18
|
-
$border-width-thick: 8px;
|
|
19
|
-
$border-style-none: none;
|
|
20
|
-
$border-style-solid: solid;
|
|
21
|
-
$border-style-dashed: dashed;
|
|
22
|
-
$border-style-dotted: dotted;
|
|
23
|
-
|
|
24
|
-
$size-padding-minimum: 8px;
|
|
25
|
-
$size-padding-xxsmall: 16px;
|
|
26
|
-
$size-padding-xsmall: 24px;
|
|
27
|
-
$size-padding-small: 32px;
|
|
28
|
-
$size-padding-medium: 40px;
|
|
29
|
-
$size-padding-big: 48px;
|
|
30
|
-
$size-padding-bigger: 56px;
|
|
31
|
-
$size-padding-tall: 64px;
|
|
32
|
-
$size-padding-taller: 72px;
|
|
33
|
-
$size-padding-large: 80px;
|
|
34
|
-
$size-padding-xlarge: 88px;
|
|
35
|
-
$size-padding-xxlarge: 96px;
|
|
36
|
-
$size-padding-larger: 104px;
|
|
37
|
-
$size-padding-largest: 112px;
|
|
38
|
-
$size-padding-wider: 120px;
|
|
39
|
-
$spacing-stack-min: 8px 0; // 8px
|
|
40
|
-
$spacing-stack-xxs: 16px 0; // 16px
|
|
41
|
-
$spacing-stack-xs: 24px 0; // 24px
|
|
42
|
-
$spacing-stack-s: 32px 0; // 32px
|
|
43
|
-
$spacing-stack-m: 40px 0; // 40px
|
|
44
|
-
$spacing-stack-big: 48px 0; // 48px
|
|
45
|
-
$spacing-stack-bgg: 56px 0; // 56px
|
|
46
|
-
$spacing-stack-tll: 64px 0; // 64px
|
|
47
|
-
$spacing-stack-tlr: 72px 0; // 72px
|
|
48
|
-
$spacing-stack-lg: 80px 0; // 80px
|
|
49
|
-
$spacing-stack-xl: 88px 0; // 88px
|
|
50
|
-
$spacing-stack-xxl: 96px 0; // 96px
|
|
51
|
-
$spacing-stack-lgr: 104px 0; // 104px
|
|
52
|
-
$spacing-stack-lgs: 112px 0; // 112px
|
|
53
|
-
$spacing-inline-min: 0 8px; // 8px
|
|
54
|
-
$spacing-inline-xxs: 0 16px; // 16px
|
|
55
|
-
$spacing-inline-xs: 0 24px; // 24px
|
|
56
|
-
$spacing-inline-s: 0 32px; // 32px
|
|
57
|
-
$spacing-inline-m: 0 40px; // 40px
|
|
58
|
-
$spacing-inline-big: 0 48px; // 48px
|
|
59
|
-
$spacing-inline-bgg: 0 56px; // 56px
|
|
60
|
-
$spacing-inline-tll: 0 64px; // 64px
|
|
61
|
-
$spacing-inline-tlr: 0 72px; // 72px
|
|
62
|
-
$spacing-inline-lg: 0 80px; // 80px
|
|
63
|
-
$spacing-inline-xl: 0 88px; // 88px
|
|
64
|
-
$spacing-inline-xxl: 0 96px; // 96px
|
|
65
|
-
$spacing-inline-lgr: 0 104px; // 104px
|
|
66
|
-
$spacing-inline-lgs: 0 112px; // 112px
|
|
67
|
-
$spacing-inset-min: 8px 8px; // 8px
|
|
68
|
-
$spacing-inset-xxs: 16px 16px; // 16px
|
|
69
|
-
$spacing-inset-xs: 24px 24px; // 24px
|
|
70
|
-
$spacing-inset-s: 32px 32px; // 32px
|
|
71
|
-
$spacing-inset-m: 40px 40px; // 40px
|
|
72
|
-
$spacing-inset-big: 48px 48px; // 48px
|
|
73
|
-
$spacing-inset-bgg: 56px 56px; // 56px
|
|
74
|
-
$spacing-inset-tll: 64px 64px; // 64px
|
|
75
|
-
$spacing-inset-tlr: 72px 72px; // 72px
|
|
76
|
-
$spacing-inset-lg: 80px 80px; // 80px
|
|
77
|
-
$spacing-inset-xl: 88px 88px; // 88px
|
|
78
|
-
$spacing-inset-xxl: 96px 96px; // 96px
|
|
79
|
-
$spacing-inset-lgr: 104px 104px; // 104px
|
|
80
|
-
$spacing-inset-lgs: 112px 112px; // 112px
|
|
81
|
-
$spacing-squish-min: 8px 16px; // 8px
|
|
82
|
-
$spacing-squish-xxs: 16px 24px; // 16px
|
|
83
|
-
$spacing-squish-xs: 24px 32px; // 24px
|
|
84
|
-
$spacing-squish-s: 32px 40px; // 32px
|
|
85
|
-
$spacing-squish-m: 40px 48px; // 40px
|
|
86
|
-
$spacing-squish-big: 48px 56px; // 48px
|
|
87
|
-
$spacing-squish-bgg: 56px 64px; // 56px
|
|
88
|
-
$spacing-squish-tll: 64px 72px; // 64px
|
|
89
|
-
$spacing-squish-tlr: 72px 80px; // 72px
|
|
90
|
-
$spacing-squish-lg: 80px 88px; // 80px
|
|
91
|
-
$spacing-squish-xl: 88px 96px; // 88px
|
|
92
|
-
$spacing-squish-xxl: 96px 104px; // 96px
|
|
93
|
-
$spacing-squish-lgr: 104px 112px; // 104px
|
|
94
|
-
$spacing-squish-lgs: 112px 120px; // 112px
|
|
1
|
+
$unit-base-pixels: px;
|
|
2
|
+
$unit-base-percent: .0%;
|
|
3
|
+
|
|
4
|
+
// Border Radius — aligned with Figma (matcha/radius/*)
|
|
5
|
+
$border-radius-none: 0px;
|
|
6
|
+
$border-radius-sm: 2px;
|
|
7
|
+
$border-radius-md: 4px;
|
|
8
|
+
$border-radius-lg: 8px;
|
|
9
|
+
$border-radius-xl: 16px;
|
|
10
|
+
$border-radius-2xl: 24px;
|
|
11
|
+
$border-radius-pill: 9999px;
|
|
12
|
+
|
|
13
|
+
// Border Width — aligned with Figma (matcha/border/*)
|
|
14
|
+
$border-width-none: 0px;
|
|
15
|
+
$border-width-hairline: 1px;
|
|
16
|
+
$border-width-thin: 2px;
|
|
17
|
+
$border-width-medium: 4px;
|
|
18
|
+
$border-width-thick: 8px;
|
|
19
|
+
$border-style-none: none;
|
|
20
|
+
$border-style-solid: solid;
|
|
21
|
+
$border-style-dashed: dashed;
|
|
22
|
+
$border-style-dotted: dotted;
|
|
23
|
+
|
|
24
|
+
$size-padding-minimum: 8px;
|
|
25
|
+
$size-padding-xxsmall: 16px;
|
|
26
|
+
$size-padding-xsmall: 24px;
|
|
27
|
+
$size-padding-small: 32px;
|
|
28
|
+
$size-padding-medium: 40px;
|
|
29
|
+
$size-padding-big: 48px;
|
|
30
|
+
$size-padding-bigger: 56px;
|
|
31
|
+
$size-padding-tall: 64px;
|
|
32
|
+
$size-padding-taller: 72px;
|
|
33
|
+
$size-padding-large: 80px;
|
|
34
|
+
$size-padding-xlarge: 88px;
|
|
35
|
+
$size-padding-xxlarge: 96px;
|
|
36
|
+
$size-padding-larger: 104px;
|
|
37
|
+
$size-padding-largest: 112px;
|
|
38
|
+
$size-padding-wider: 120px;
|
|
39
|
+
$spacing-stack-min: 8px 0; // 8px
|
|
40
|
+
$spacing-stack-xxs: 16px 0; // 16px
|
|
41
|
+
$spacing-stack-xs: 24px 0; // 24px
|
|
42
|
+
$spacing-stack-s: 32px 0; // 32px
|
|
43
|
+
$spacing-stack-m: 40px 0; // 40px
|
|
44
|
+
$spacing-stack-big: 48px 0; // 48px
|
|
45
|
+
$spacing-stack-bgg: 56px 0; // 56px
|
|
46
|
+
$spacing-stack-tll: 64px 0; // 64px
|
|
47
|
+
$spacing-stack-tlr: 72px 0; // 72px
|
|
48
|
+
$spacing-stack-lg: 80px 0; // 80px
|
|
49
|
+
$spacing-stack-xl: 88px 0; // 88px
|
|
50
|
+
$spacing-stack-xxl: 96px 0; // 96px
|
|
51
|
+
$spacing-stack-lgr: 104px 0; // 104px
|
|
52
|
+
$spacing-stack-lgs: 112px 0; // 112px
|
|
53
|
+
$spacing-inline-min: 0 8px; // 8px
|
|
54
|
+
$spacing-inline-xxs: 0 16px; // 16px
|
|
55
|
+
$spacing-inline-xs: 0 24px; // 24px
|
|
56
|
+
$spacing-inline-s: 0 32px; // 32px
|
|
57
|
+
$spacing-inline-m: 0 40px; // 40px
|
|
58
|
+
$spacing-inline-big: 0 48px; // 48px
|
|
59
|
+
$spacing-inline-bgg: 0 56px; // 56px
|
|
60
|
+
$spacing-inline-tll: 0 64px; // 64px
|
|
61
|
+
$spacing-inline-tlr: 0 72px; // 72px
|
|
62
|
+
$spacing-inline-lg: 0 80px; // 80px
|
|
63
|
+
$spacing-inline-xl: 0 88px; // 88px
|
|
64
|
+
$spacing-inline-xxl: 0 96px; // 96px
|
|
65
|
+
$spacing-inline-lgr: 0 104px; // 104px
|
|
66
|
+
$spacing-inline-lgs: 0 112px; // 112px
|
|
67
|
+
$spacing-inset-min: 8px 8px; // 8px
|
|
68
|
+
$spacing-inset-xxs: 16px 16px; // 16px
|
|
69
|
+
$spacing-inset-xs: 24px 24px; // 24px
|
|
70
|
+
$spacing-inset-s: 32px 32px; // 32px
|
|
71
|
+
$spacing-inset-m: 40px 40px; // 40px
|
|
72
|
+
$spacing-inset-big: 48px 48px; // 48px
|
|
73
|
+
$spacing-inset-bgg: 56px 56px; // 56px
|
|
74
|
+
$spacing-inset-tll: 64px 64px; // 64px
|
|
75
|
+
$spacing-inset-tlr: 72px 72px; // 72px
|
|
76
|
+
$spacing-inset-lg: 80px 80px; // 80px
|
|
77
|
+
$spacing-inset-xl: 88px 88px; // 88px
|
|
78
|
+
$spacing-inset-xxl: 96px 96px; // 96px
|
|
79
|
+
$spacing-inset-lgr: 104px 104px; // 104px
|
|
80
|
+
$spacing-inset-lgs: 112px 112px; // 112px
|
|
81
|
+
$spacing-squish-min: 8px 16px; // 8px
|
|
82
|
+
$spacing-squish-xxs: 16px 24px; // 16px
|
|
83
|
+
$spacing-squish-xs: 24px 32px; // 24px
|
|
84
|
+
$spacing-squish-s: 32px 40px; // 32px
|
|
85
|
+
$spacing-squish-m: 40px 48px; // 40px
|
|
86
|
+
$spacing-squish-big: 48px 56px; // 48px
|
|
87
|
+
$spacing-squish-bgg: 56px 64px; // 56px
|
|
88
|
+
$spacing-squish-tll: 64px 72px; // 64px
|
|
89
|
+
$spacing-squish-tlr: 72px 80px; // 72px
|
|
90
|
+
$spacing-squish-lg: 80px 88px; // 80px
|
|
91
|
+
$spacing-squish-xl: 88px 96px; // 88px
|
|
92
|
+
$spacing-squish-xxl: 96px 104px; // 96px
|
|
93
|
+
$spacing-squish-lgr: 104px 112px; // 104px
|
|
94
|
+
$spacing-squish-lgs: 112px 120px; // 112px
|
|
@@ -1,56 +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, foreground);
|
|
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
|
-
}
|
|
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, foreground);
|
|
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
|
+
}
|