@operato/shell 7.0.0-rc.9 → 7.0.5
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/.storybook/preview.js +52 -0
- package/CHANGELOG.md +42 -0
- package/dist/src/app/pages/page-404.js +3 -3
- package/dist/src/app/pages/page-404.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -6
- package/src/app/pages/page-404.ts +3 -3
- package/themes/app-theme.css +51 -58
- package/themes/calendar-theme.css +59 -0
- package/themes/dark.css +51 -0
- package/themes/form-theme.css +71 -0
- package/themes/grist-theme.css +175 -0
- package/themes/layout-theme.css +94 -0
- package/themes/light.css +51 -0
- package/themes/material-theme.css +23 -0
- package/themes/md-typescale-styles.css +100 -0
- package/themes/oops-theme.css +22 -0
- package/themes/report-theme.css +47 -0
- package/themes/spacing.css +23 -0
- package/themes/state-color.css +6 -0
- package/themes/tooltip-theme.css +11 -0
@@ -0,0 +1,94 @@
|
|
1
|
+
body {
|
2
|
+
--header-bar-background-color: var(--md-sys-color-primary);
|
3
|
+
--header-bar-icon-size: var(--icon-default-size);
|
4
|
+
--header-bar-title: bold 17.5px var(--theme-font);
|
5
|
+
--header-bar-color: var(--md-sys-color-on-primary);
|
6
|
+
--header-bar-height: 45px;
|
7
|
+
|
8
|
+
--nav-bar-background-color: var(--md-sys-color-primary-container);
|
9
|
+
|
10
|
+
--group-bar-background-color: var(--md-sys-color-secondary-container);
|
11
|
+
--group-bar-textbutton: 16px/32px var(--theme-font);
|
12
|
+
--group-bar-textbutton-active: bold var(--group-bar-textbutton);
|
13
|
+
--group-bar-active-line-color: var(--md-sys-color-on-secondary-container);
|
14
|
+
--group-bar-line: solid 3px rgba(0, 0, 0, 0.2);
|
15
|
+
|
16
|
+
--footer-bar-border-top: 1px solid rgba(0, 0, 0, 0.2);
|
17
|
+
|
18
|
+
--aside-background-color: var(--md-sys-color-secondary-container);
|
19
|
+
--aside-list-textbtton: 18px var(--theme-font);
|
20
|
+
--aside-list-icon: var(--icon-default-size);
|
21
|
+
--aside-list-bottom-line: var(--md-sys-color-outline);
|
22
|
+
--aside-list-detail-background-color: #fff;
|
23
|
+
--aside-list-detail-text: 14px var(--md-sys-color-on-secondary-container);
|
24
|
+
|
25
|
+
--footer-bar-border-top: 1px solid rgba(0, 0, 0, 0.2);
|
26
|
+
|
27
|
+
--button-container-margin: inintial;
|
28
|
+
--button-container-padding: 0 var(--padding-default) var(--padding-wide) var(--padding-default);
|
29
|
+
--button-container-background: transparent;
|
30
|
+
--button-container-height: initial;
|
31
|
+
--button-container-align: right;
|
32
|
+
--button-container-button-background-color: var(--md-sys-color-secondary);
|
33
|
+
--button-container-button-border-radius: var(--button-border-radius);
|
34
|
+
--button-container-button-margin: var(--button-margin);
|
35
|
+
--button-container-button-font: bold var(--fontsize-large) var(--theme-font);
|
36
|
+
--button-container-button-color: var(--md-sys-color-on-primary);
|
37
|
+
--button-container-button-height: initial;
|
38
|
+
--button-container-button-border: var(--button-border);
|
39
|
+
|
40
|
+
--popup-content-background-color: var(--md-sys-color-background);
|
41
|
+
--popup-content-color: var(--md-sys-color-on-background);
|
42
|
+
--popup-content-padding: 10px 20px;
|
43
|
+
|
44
|
+
/* components - floating overlay style */
|
45
|
+
--overlay-center-small-width: 30%;
|
46
|
+
--overlay-center-small-height: 30%;
|
47
|
+
--overlay-center-normal-width: 50%;
|
48
|
+
--overlay-center-normal-height: 50%;
|
49
|
+
--overlay-center-large-width: 75%;
|
50
|
+
--overlay-center-large-height: 75%;
|
51
|
+
--overlay-header-height: var(--header-bar-height);
|
52
|
+
--overlay-header-background-color: var(--header-bar-background-color);
|
53
|
+
--overlay-header-color: #fff;
|
54
|
+
--overlay-header-font: var(--header-bar-title);
|
55
|
+
--overlay-background-color: rgba(0, 0, 0, 0.5);
|
56
|
+
--overlay-margin-bottom: 0px;
|
57
|
+
|
58
|
+
/* components - resize splitter style */
|
59
|
+
--splitter-background-color: rgba(0, 0, 0, 0.1);
|
60
|
+
--splitter-hover-background-color: rgba(0, 0, 0, 0.1);
|
61
|
+
}
|
62
|
+
|
63
|
+
@media only screen and (max-width: 460px) {
|
64
|
+
body {
|
65
|
+
--button-container-margin: 0 -15px;
|
66
|
+
--button-container-padding: 0 0 0 0;
|
67
|
+
--button-container-background: #586272;
|
68
|
+
--button-container-height: 50px;
|
69
|
+
--button-container-align: right;
|
70
|
+
--button-container-button-background-color: transparent;
|
71
|
+
--button-container-button-border-radius: 0;
|
72
|
+
--button-container-button-margin: 0;
|
73
|
+
--button-container-button-height: 50px;
|
74
|
+
--button-container-button-border: 1px solid rgba(0, 0, 0, 0.1);
|
75
|
+
|
76
|
+
--overlay-center-small-width: 100%;
|
77
|
+
--overlay-center-small-height: 100%;
|
78
|
+
--overlay-center-normal-width: 100%;
|
79
|
+
--overlay-center-normal-height: 100%;
|
80
|
+
--overlay-center-large-width: 100%;
|
81
|
+
--overlay-center-large-height: 100%;
|
82
|
+
}
|
83
|
+
}
|
84
|
+
|
85
|
+
@media (min-width: 461px) and (max-width: 1024px) {
|
86
|
+
body {
|
87
|
+
--overlay-center-small-width: 40%;
|
88
|
+
--overlay-center-small-height: 40%;
|
89
|
+
--overlay-center-normal-width: 60%;
|
90
|
+
--overlay-center-normal-height: 60%;
|
91
|
+
--overlay-center-large-width: 80%;
|
92
|
+
--overlay-center-large-height: 80%;
|
93
|
+
}
|
94
|
+
}
|
package/themes/light.css
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
.light {
|
2
|
+
--md-sys-color-primary: rgb(73 93 146);
|
3
|
+
--md-sys-color-surface-tint: rgb(73 93 146);
|
4
|
+
--md-sys-color-on-primary: rgb(255 255 255);
|
5
|
+
--md-sys-color-primary-container: #e4eaf9;
|
6
|
+
--md-sys-color-on-primary-container: rgb(0 24 72);
|
7
|
+
--md-sys-color-secondary: rgb(27 101 133);
|
8
|
+
--md-sys-color-on-secondary: rgb(255 255 255);
|
9
|
+
--md-sys-color-secondary-container: rgb(195 232 255);
|
10
|
+
--md-sys-color-on-secondary-container: rgb(0 30 44);
|
11
|
+
--md-sys-color-tertiary: rgb(37 106 75);
|
12
|
+
--md-sys-color-on-tertiary: rgb(255 255 255);
|
13
|
+
--md-sys-color-tertiary-container: rgb(171 242 201);
|
14
|
+
--md-sys-color-on-tertiary-container: rgb(0 33 19);
|
15
|
+
--md-sys-color-error: #fe594e;
|
16
|
+
--md-sys-color-on-error: rgb(255 255 255);
|
17
|
+
--md-sys-color-error-container: rgb(255 218 215);
|
18
|
+
--md-sys-color-on-error-container: #fe594e;
|
19
|
+
--md-sys-color-background: rgb(250 248 255);
|
20
|
+
--md-sys-color-on-background: rgb(26 27 33);
|
21
|
+
--md-sys-color-surface: rgb(250 248 255);
|
22
|
+
--md-sys-color-on-surface: rgb(26 27 33);
|
23
|
+
--md-sys-color-surface-variant: rgb(225 226 236);
|
24
|
+
--md-sys-color-on-surface-variant: rgb(69 70 79);
|
25
|
+
--md-sys-color-outline: rgba(0, 0, 0, 0.25);
|
26
|
+
--md-sys-color-outline-variant: rgb(197 198 208);
|
27
|
+
--md-sys-color-shadow: rgb(0 0 0);
|
28
|
+
--md-sys-color-scrim: rgb(0 0 0);
|
29
|
+
--md-sys-color-inverse-surface: rgb(47 48 54);
|
30
|
+
--md-sys-color-inverse-on-surface: rgb(241 240 247);
|
31
|
+
--md-sys-color-inverse-primary: #c9d4f4;
|
32
|
+
--md-sys-color-primary-fixed: rgb(218 226 255);
|
33
|
+
--md-sys-color-on-primary-fixed: rgb(0 24 72);
|
34
|
+
--md-sys-color-primary-fixed-dim: #c9d4f4;
|
35
|
+
--md-sys-color-on-primary-fixed-variant: rgb(49 69 120);
|
36
|
+
--md-sys-color-secondary-fixed: rgb(195 232 255);
|
37
|
+
--md-sys-color-on-secondary-fixed: rgb(0 30 44);
|
38
|
+
--md-sys-color-secondary-fixed-dim: rgb(143 207 243);
|
39
|
+
--md-sys-color-on-secondary-fixed-variant: rgb(0 76 104);
|
40
|
+
--md-sys-color-tertiary-fixed: #e5f6da;
|
41
|
+
--md-sys-color-on-tertiary-fixed: #005234;
|
42
|
+
--md-sys-color-tertiary-fixed-dim: #c8eabc;
|
43
|
+
--md-sys-color-on-tertiary-fixed-variant: #005234;
|
44
|
+
--md-sys-color-surface-dim: rgb(218 217 224);
|
45
|
+
--md-sys-color-surface-bright: rgb(250 248 255);
|
46
|
+
--md-sys-color-surface-container-lowest: rgb(255 255 255);
|
47
|
+
--md-sys-color-surface-container-low: rgb(244 243 250);
|
48
|
+
--md-sys-color-surface-container: rgb(238 237 244);
|
49
|
+
--md-sys-color-surface-container-high: rgb(232 231 239);
|
50
|
+
--md-sys-color-surface-container-highest: rgb(227 226 233);
|
51
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
body {
|
2
|
+
font-variation-settings: 'FILL' 1;
|
3
|
+
|
4
|
+
/* shape corner */
|
5
|
+
--md-sys-shape-corner-none: 0px;
|
6
|
+
--md-sys-shape-corner-small: 5px;
|
7
|
+
--md-sys-shape-corner-medium: 10px;
|
8
|
+
--md-sys-shape-corner-large: 30px;
|
9
|
+
--md-sys-shape-corner-full: 999px;
|
10
|
+
|
11
|
+
/* md-switch */
|
12
|
+
--md-switch-selected-handle-color: var(--md-sys-color-on-primary);
|
13
|
+
--md-switch-selected-track-color: var(--md-sys-color-primary);
|
14
|
+
|
15
|
+
/* md component shapes */
|
16
|
+
--md-switch-handle-shape: var(--md-sys-shape-corner-full);
|
17
|
+
--md-switch-track-shape: var(--md-sys-shape-corner-full);
|
18
|
+
--md-filter-chip-container-shape: var(--md-sys-shape-corner-full);
|
19
|
+
--md-text-button-container-shape: var(--md-sys-shape-corner-small);
|
20
|
+
--md-filled-button-container-shape: var(--md-sys-shape-corner-small);
|
21
|
+
--md-outlined-button-container-shape: var(--md-sys-shape-corner-small);
|
22
|
+
--md-elevated-button-container-shape: var(--md-sys-shape-corner-small);
|
23
|
+
}
|
@@ -0,0 +1,100 @@
|
|
1
|
+
@layer {
|
2
|
+
.md-typescale-display-small,
|
3
|
+
.md-typescale-display-small-prominent {
|
4
|
+
font: var(--md-sys-typescale-display-small-weight, var(--md-ref-typeface-weight-regular, 400))
|
5
|
+
var(--md-sys-typescale-display-small-size, 2.25rem) / var(--md-sys-typescale-display-small-line-height, 2.75rem)
|
6
|
+
var(--md-sys-typescale-display-small-font, var(--md-ref-typeface-brand, 'Roboto'));
|
7
|
+
}
|
8
|
+
.md-typescale-display-medium,
|
9
|
+
.md-typescale-display-medium-prominent {
|
10
|
+
font: var(--md-sys-typescale-display-medium-weight, var(--md-ref-typeface-weight-regular, 400))
|
11
|
+
var(--md-sys-typescale-display-medium-size, 2.8125rem) /
|
12
|
+
var(--md-sys-typescale-display-medium-line-height, 3.25rem)
|
13
|
+
var(--md-sys-typescale-display-medium-font, var(--md-ref-typeface-brand, 'Roboto'));
|
14
|
+
}
|
15
|
+
.md-typescale-display-large,
|
16
|
+
.md-typescale-display-large-prominent {
|
17
|
+
font: var(--md-sys-typescale-display-large-weight, var(--md-ref-typeface-weight-regular, 400))
|
18
|
+
var(--md-sys-typescale-display-large-size, 3.5625rem) / var(--md-sys-typescale-display-large-line-height, 4rem)
|
19
|
+
var(--md-sys-typescale-display-large-font, var(--md-ref-typeface-brand, 'Roboto'));
|
20
|
+
}
|
21
|
+
.md-typescale-headline-small,
|
22
|
+
.md-typescale-headline-small-prominent {
|
23
|
+
font: var(--md-sys-typescale-headline-small-weight, var(--md-ref-typeface-weight-regular, 400))
|
24
|
+
var(--md-sys-typescale-headline-small-size, 1.5rem) / var(--md-sys-typescale-headline-small-line-height, 2rem)
|
25
|
+
var(--md-sys-typescale-headline-small-font, var(--md-ref-typeface-brand, 'Roboto'));
|
26
|
+
}
|
27
|
+
.md-typescale-headline-medium,
|
28
|
+
.md-typescale-headline-medium-prominent {
|
29
|
+
font: var(--md-sys-typescale-headline-medium-weight, var(--md-ref-typeface-weight-regular, 400))
|
30
|
+
var(--md-sys-typescale-headline-medium-size, 1.75rem) /
|
31
|
+
var(--md-sys-typescale-headline-medium-line-height, 2.25rem)
|
32
|
+
var(--md-sys-typescale-headline-medium-font, var(--md-ref-typeface-brand, 'Roboto'));
|
33
|
+
}
|
34
|
+
.md-typescale-headline-large,
|
35
|
+
.md-typescale-headline-large-prominent {
|
36
|
+
font: var(--md-sys-typescale-headline-large-weight, var(--md-ref-typeface-weight-regular, 400))
|
37
|
+
var(--md-sys-typescale-headline-large-size, 2rem) / var(--md-sys-typescale-headline-large-line-height, 2.5rem)
|
38
|
+
var(--md-sys-typescale-headline-large-font, var(--md-ref-typeface-brand, 'Roboto'));
|
39
|
+
}
|
40
|
+
.md-typescale-title-small,
|
41
|
+
.md-typescale-title-small-prominent {
|
42
|
+
font: var(--md-sys-typescale-title-small-weight, var(--md-ref-typeface-weight-medium, 500))
|
43
|
+
var(--md-sys-typescale-title-small-size, 0.875rem) / var(--md-sys-typescale-title-small-line-height, 1.25rem)
|
44
|
+
var(--md-sys-typescale-title-small-font, var(--md-ref-typeface-plain, 'Roboto'));
|
45
|
+
}
|
46
|
+
.md-typescale-title-medium,
|
47
|
+
.md-typescale-title-medium-prominent {
|
48
|
+
font: var(--md-sys-typescale-title-medium-weight, var(--md-ref-typeface-weight-medium, 500))
|
49
|
+
var(--md-sys-typescale-title-medium-size, 1rem) / var(--md-sys-typescale-title-medium-line-height, 1.5rem)
|
50
|
+
var(--md-sys-typescale-title-medium-font, var(--md-ref-typeface-plain, 'Roboto'));
|
51
|
+
}
|
52
|
+
.md-typescale-title-large,
|
53
|
+
.md-typescale-title-large-prominent {
|
54
|
+
font: var(--md-sys-typescale-title-large-weight, var(--md-ref-typeface-weight-regular, 400))
|
55
|
+
var(--md-sys-typescale-title-large-size, 1.375rem) / var(--md-sys-typescale-title-large-line-height, 1.75rem)
|
56
|
+
var(--md-sys-typescale-title-large-font, var(--md-ref-typeface-brand, 'Roboto'));
|
57
|
+
}
|
58
|
+
.md-typescale-body-small,
|
59
|
+
.md-typescale-body-small-prominent {
|
60
|
+
font: var(--md-sys-typescale-body-small-weight, var(--md-ref-typeface-weight-regular, 400))
|
61
|
+
var(--md-sys-typescale-body-small-size, 0.75rem) / var(--md-sys-typescale-body-small-line-height, 1rem)
|
62
|
+
var(--md-sys-typescale-body-small-font, var(--md-ref-typeface-plain, 'Roboto'));
|
63
|
+
}
|
64
|
+
.md-typescale-body-medium,
|
65
|
+
.md-typescale-body-medium-prominent {
|
66
|
+
font: var(--md-sys-typescale-body-medium-weight, var(--md-ref-typeface-weight-regular, 400))
|
67
|
+
var(--md-sys-typescale-body-medium-size, 0.875rem) / var(--md-sys-typescale-body-medium-line-height, 1.25rem)
|
68
|
+
var(--md-sys-typescale-body-medium-font, var(--md-ref-typeface-plain, 'Roboto'));
|
69
|
+
}
|
70
|
+
.md-typescale-body-large,
|
71
|
+
.md-typescale-body-large-prominent {
|
72
|
+
font: var(--md-sys-typescale-body-large-weight, var(--md-ref-typeface-weight-regular, 400))
|
73
|
+
var(--md-sys-typescale-body-large-size, 1rem) / var(--md-sys-typescale-body-large-line-height, 1.5rem)
|
74
|
+
var(--md-sys-typescale-body-large-font, var(--md-ref-typeface-plain, 'Roboto'));
|
75
|
+
}
|
76
|
+
.md-typescale-label-small,
|
77
|
+
.md-typescale-label-small-prominent {
|
78
|
+
font: var(--md-sys-typescale-label-small-weight, var(--md-ref-typeface-weight-medium, 500))
|
79
|
+
var(--md-sys-typescale-label-small-size, 0.6875rem) / var(--md-sys-typescale-label-small-line-height, 1rem)
|
80
|
+
var(--md-sys-typescale-label-small-font, var(--md-ref-typeface-plain, 'Roboto'));
|
81
|
+
}
|
82
|
+
.md-typescale-label-medium,
|
83
|
+
.md-typescale-label-medium-prominent {
|
84
|
+
font: var(--md-sys-typescale-label-medium-weight, var(--md-ref-typeface-weight-medium, 500))
|
85
|
+
var(--md-sys-typescale-label-medium-size, 0.75rem) / var(--md-sys-typescale-label-medium-line-height, 1rem)
|
86
|
+
var(--md-sys-typescale-label-medium-font, var(--md-ref-typeface-plain, 'Roboto'));
|
87
|
+
}
|
88
|
+
.md-typescale-label-medium-prominent {
|
89
|
+
font-weight: var(--md-sys-typescale-label-medium-weight-prominent, var(--md-ref-typeface-weight-bold, 700));
|
90
|
+
}
|
91
|
+
.md-typescale-label-large,
|
92
|
+
.md-typescale-label-large-prominent {
|
93
|
+
font: var(--md-sys-typescale-label-large-weight, var(--md-ref-typeface-weight-medium, 500))
|
94
|
+
var(--md-sys-typescale-label-large-size, 0.875rem) / var(--md-sys-typescale-label-large-line-height, 1.25rem)
|
95
|
+
var(--md-sys-typescale-label-large-font, var(--md-ref-typeface-plain, 'Roboto'));
|
96
|
+
}
|
97
|
+
.md-typescale-label-large-prominent {
|
98
|
+
font-weight: var(--md-sys-typescale-label-large-weight-prominent, var(--md-ref-typeface-weight-bold, 700));
|
99
|
+
}
|
100
|
+
} /*# sourceMappingURL=md-typescale-styles.css.map */
|
@@ -0,0 +1,22 @@
|
|
1
|
+
body {
|
2
|
+
/* oops note style */
|
3
|
+
--oops-note-icon-font: normal 24px var(--md-icon-font, 'Material Symbols Outlined');
|
4
|
+
--oops-note-icon-color: var(--md-sys-color-on-surface);
|
5
|
+
--oops-note-icon-border: 2px solid var(--md-sys-color-outline);
|
6
|
+
--oops-note-icon-border-radius: 50px;
|
7
|
+
--oops-note-icon-padding: var(--padding-default);
|
8
|
+
--oops-note-title-margin: 7px 0 2px 0;
|
9
|
+
--oops-note-title-font: bold 14px var(--theme-font);
|
10
|
+
--oops-note-title-color: var(--md-sys-color-secondary);
|
11
|
+
--oops-note-description-font: normal 12px var(--theme-font);
|
12
|
+
--oops-note-description-color: var(--md-sys-color-primary);
|
13
|
+
}
|
14
|
+
@media only screen and (max-width: 460px) {
|
15
|
+
body {
|
16
|
+
--oops-note-icon-padding: var(--padding-narrow);
|
17
|
+
--oops-note-icon-font: normal 18px var(--md-icon-font, 'Material Symbols Outlined');
|
18
|
+
--oops-note-title-font: bold 13px var(--theme-font);
|
19
|
+
--oops-note-title-margin: var(--margin-narrow) 0 2px 0;
|
20
|
+
--oops-note-description-font: normal 0px var(--theme-font);
|
21
|
+
}
|
22
|
+
}
|
@@ -0,0 +1,47 @@
|
|
1
|
+
body {
|
2
|
+
--report-background-color: var(--md-sys-color-background);
|
3
|
+
--report-padding: 15px;
|
4
|
+
--report-title-margin: 0 0 0 10px;
|
5
|
+
--report-title-border: none;
|
6
|
+
--report-title-color: var(--md-sys-color-secondary);
|
7
|
+
--report-title-icon-color: var(--md-sys-color-primary);
|
8
|
+
--report-title-icon-margin: 0 3px 2px 0;
|
9
|
+
--report-title-icon-size: 14px;
|
10
|
+
--report-title-with-grid-padding: 0;
|
11
|
+
--report-component-border-radius: var(--border-radius);
|
12
|
+
|
13
|
+
--report-header-background-color: var(--md-sys-color-surface);
|
14
|
+
--report-header-border: 1px solid var(--report-header-border-color);
|
15
|
+
--report-header-border-color: var(--md-sys-color-outline);
|
16
|
+
--report-header-padding: 5px 0 5px 5px;
|
17
|
+
--report-header-color: var(--secondary-text-color);
|
18
|
+
--report-header-font: normal 1em/1.5 var(--theme-font);
|
19
|
+
--report-header-fontsize: 13px;
|
20
|
+
|
21
|
+
--report-record-background-color: #fff;
|
22
|
+
--report-record-odd-background-color: #f6f6f6;
|
23
|
+
--report-record-field-padding: 7px 10px;
|
24
|
+
--report-record-field-border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
25
|
+
--report-record-wide-fontsize: 13px;
|
26
|
+
--report-record-focused-background-color: #ffde3b47;
|
27
|
+
--report-record-focused-border: 1px dashed rgba(0, 0, 0, 0.5);
|
28
|
+
|
29
|
+
--report-totalized-background-color: #efefef;
|
30
|
+
--report-totalized-border: 1px solid rgba(0, 0, 0, 0.1);
|
31
|
+
--report-totalized-color: var(--secondary-text-color);
|
32
|
+
|
33
|
+
--report-grouped-background-color: #607d8bbf;
|
34
|
+
--report-grouped-border: 1px solid rgba(0, 0, 0, 0.2);
|
35
|
+
--report-grouped-color: #fff;
|
36
|
+
}
|
37
|
+
|
38
|
+
@media print {
|
39
|
+
body {
|
40
|
+
--report-header-padding: 5px;
|
41
|
+
--report-record-field-padding: 5px;
|
42
|
+
--report-record-wide-fontsize: 10px;
|
43
|
+
--report-grouped-background-color: #d7d7d7;
|
44
|
+
--report-grouped-color: #000;
|
45
|
+
--report-totalized-color: #000;
|
46
|
+
}
|
47
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
:root {
|
2
|
+
/* spacing */
|
3
|
+
--spacing-none: 0px;
|
4
|
+
--spacing-tiny: 2px;
|
5
|
+
--spacing-small: 4px;
|
6
|
+
--spacing-medium: 8px;
|
7
|
+
--spacing-large: 12px;
|
8
|
+
--spacing-huge: 24px;
|
9
|
+
|
10
|
+
/* icon size */
|
11
|
+
--icon-size-tiny: 14px;
|
12
|
+
--icon-size-small: 18px;
|
13
|
+
--icon-size-medium: 24px;
|
14
|
+
--icon-size-large: 32px;
|
15
|
+
--icon-size-huge: 48px;
|
16
|
+
|
17
|
+
/* form element height */
|
18
|
+
--form-element-height-tiny: 18px;
|
19
|
+
--form-element-height-small: 24px;
|
20
|
+
--form-element-height-medium: 30px;
|
21
|
+
--form-element-height-large: 40px;
|
22
|
+
--form-element-height-huge: 55px;
|
23
|
+
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
body {
|
2
|
+
--tooltip-padding: 4px 4px 4px 4px;
|
3
|
+
--tooltip-background-color: rgba(0, 0, 0, 0.7);
|
4
|
+
--tooltip-font: bold 11px var(--theme-font);
|
5
|
+
/*
|
6
|
+
--tooltip-left-positon-left: auto;
|
7
|
+
--tooltip-left-position-top: 7px;
|
8
|
+
--tooltip-left-position-right: 110%;
|
9
|
+
--tooltip-left-position-animation: tooltip-left 0.3s ease-out 0s 1 normal;
|
10
|
+
*/
|
11
|
+
}
|