@igo2/core 1.15.4 → 16.0.0-rc.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/_index.scss +8 -0
- package/assets/icons/mdi.svg +1 -1
- package/core-theme.scss +5 -0
- package/{esm2020 → esm2022}/igo2-core.mjs +4 -4
- package/{esm2020 → esm2022}/lib/activity/activity.interceptor.mjs +32 -30
- package/{esm2020 → esm2022}/lib/activity/activity.module.mjs +30 -30
- package/esm2022/lib/activity/activity.service.mjs +32 -0
- package/{esm2020 → esm2022}/lib/activity/index.mjs +3 -3
- package/{esm2020 → esm2022}/lib/analytics/index.mjs +2 -2
- package/{esm2020 → esm2022}/lib/analytics/shared/analytics.interface.mjs +2 -2
- package/esm2022/lib/analytics/shared/analytics.service.mjs +84 -0
- package/{esm2020 → esm2022}/lib/analytics/shared/index.mjs +3 -3
- package/{esm2020 → esm2022}/lib/compression/compressedData.interface.mjs +2 -2
- package/esm2022/lib/compression/compression.service.mjs +142 -0
- package/{esm2020 → esm2022}/lib/compression/index.mjs +3 -3
- package/{esm2020 → esm2022}/lib/config/config.interface.mjs +1 -1
- package/{esm2020 → esm2022}/lib/config/config.module.mjs +23 -23
- package/{esm2020 → esm2022}/lib/config/config.provider.mjs +21 -21
- package/esm2022/lib/config/config.service.mjs +53 -0
- package/{esm2020 → esm2022}/lib/config/index.mjs +4 -4
- package/esm2022/lib/config/version.mjs +5 -0
- package/esm2022/lib/core.module.mjs +104 -0
- package/{esm2020 → esm2022}/lib/gesture/gesture.module.mjs +30 -30
- package/{esm2020 → esm2022}/lib/gesture/gesture.provider.mjs +16 -16
- package/{esm2020 → esm2022}/lib/language/index.mjs +2 -2
- package/esm2022/lib/language/language.module.mjs +39 -0
- package/{esm2020 → esm2022}/lib/language/shared/index.mjs +5 -5
- package/{esm2020 → esm2022}/lib/language/shared/language.interface.mjs +2 -2
- package/esm2022/lib/language/shared/language.loader.mjs +31 -0
- package/esm2022/lib/language/shared/language.provider.mjs +22 -0
- package/esm2022/lib/language/shared/language.service.mjs +38 -0
- package/{esm2020 → esm2022}/lib/language/shared/missing-translation.guard.mjs +16 -16
- package/{esm2020 → esm2022}/lib/media/index.mjs +3 -3
- package/{esm2020 → esm2022}/lib/media/media.enum.mjs +12 -12
- package/esm2022/lib/media/media.service.mjs +82 -0
- package/{esm2020 → esm2022}/lib/message/index.mjs +2 -2
- package/esm2022/lib/message/message.module.mjs +60 -0
- package/{esm2020 → esm2022}/lib/message/shared/index.mjs +4 -4
- package/{esm2020 → esm2022}/lib/message/shared/message.enum.mjs +10 -10
- package/{esm2020 → esm2022}/lib/message/shared/message.interface.mjs +2 -2
- package/esm2022/lib/message/shared/message.service.mjs +218 -0
- package/{esm2020 → esm2022}/lib/network/index.mjs +3 -3
- package/{esm2020 → esm2022}/lib/network/network.interfaces.mjs +2 -2
- package/esm2022/lib/network/network.service.mjs +66 -0
- package/{esm2020 → esm2022}/lib/regex/index.mjs +3 -3
- package/{esm2020 → esm2022}/lib/regex/regex.interface.mjs +2 -2
- package/esm2022/lib/regex/regex.service.mjs +30 -0
- package/esm2022/lib/request/error.interceptor.mjs +67 -0
- package/esm2022/lib/request/error.module.mjs +39 -0
- package/{esm2020 → esm2022}/lib/request/index.mjs +3 -3
- package/esm2022/lib/request/logging.interceptor.mjs +29 -0
- package/{esm2020 → esm2022}/lib/request/logging.module.mjs +30 -30
- package/esm2022/lib/route/route.interface.mjs +2 -0
- package/esm2022/lib/route/route.service.mjs +75 -0
- package/esm2022/lib/storage/index.mjs +4 -0
- package/{esm2020 → esm2022}/lib/storage/storage.interface.mjs +13 -13
- package/esm2022/lib/storage/storage.mjs +76 -0
- package/esm2022/lib/storage/storage.service.mjs +21 -0
- package/{esm2020 → esm2022}/public_api.mjs +27 -27
- package/{fesm2020 → fesm2022}/igo2-core.mjs +1364 -1288
- package/fesm2022/igo2-core.mjs.map +1 -0
- package/index.d.ts +5 -5
- package/lib/activity/activity.interceptor.d.ts +11 -11
- package/lib/activity/activity.module.d.ts +8 -8
- package/lib/activity/activity.service.d.ts +11 -11
- package/lib/activity/index.d.ts +2 -2
- package/lib/analytics/index.d.ts +1 -1
- package/lib/analytics/shared/analytics.interface.d.ts +6 -6
- package/lib/analytics/shared/analytics.service.d.ts +23 -23
- package/lib/analytics/shared/index.d.ts +2 -2
- package/lib/compression/compressedData.interface.d.ts +5 -5
- package/lib/compression/compression.service.d.ts +15 -15
- package/lib/compression/index.d.ts +2 -2
- package/lib/config/config.interface.d.ts +6 -6
- package/lib/config/config.module.d.ts +8 -8
- package/lib/config/config.provider.d.ts +15 -15
- package/lib/config/config.service.d.ts +18 -18
- package/lib/config/index.d.ts +3 -3
- package/lib/config/version.d.ts +5 -5
- package/lib/core.module.d.ts +19 -19
- package/lib/gesture/gesture.module.d.ts +9 -9
- package/lib/gesture/gesture.provider.d.ts +7 -7
- package/lib/language/index.d.ts +1 -1
- package/lib/language/language.module.d.ts +9 -9
- package/lib/language/shared/index.d.ts +4 -4
- package/lib/language/shared/language.interface.d.ts +3 -3
- package/lib/language/shared/language.loader.d.ts +11 -11
- package/lib/language/shared/language.provider.d.ts +15 -15
- package/lib/language/shared/language.service.d.ts +13 -13
- package/lib/language/shared/missing-translation.guard.d.ts +4 -4
- package/lib/media/index.d.ts +2 -2
- package/lib/media/media.enum.d.ts +9 -9
- package/lib/media/media.service.d.ts +16 -16
- package/lib/message/index.d.ts +1 -1
- package/lib/message/message.module.d.ts +10 -10
- package/lib/message/message.theming.scss +26 -0
- package/lib/message/shared/index.d.ts +4 -4
- package/lib/message/shared/message.enum.d.ts +8 -8
- package/lib/message/shared/message.interface.d.ts +21 -21
- package/lib/message/shared/message.service.d.ts +31 -31
- package/lib/network/index.d.ts +2 -2
- package/lib/network/network.interfaces.d.ts +3 -3
- package/lib/network/network.service.d.ts +21 -21
- package/lib/regex/index.d.ts +2 -2
- package/lib/regex/regex.interface.d.ts +3 -3
- package/lib/regex/regex.service.d.ts +12 -12
- package/lib/request/error.interceptor.d.ts +14 -14
- package/lib/request/error.module.d.ts +9 -9
- package/lib/request/index.d.ts +2 -2
- package/lib/request/logging.interceptor.d.ts +8 -8
- package/lib/request/logging.module.d.ts +8 -8
- package/lib/route/route.interface.d.ts +23 -23
- package/lib/route/route.service.d.ts +19 -19
- package/lib/storage/index.d.ts +3 -2
- package/lib/storage/storage.d.ts +15 -0
- package/lib/storage/storage.interface.d.ts +20 -20
- package/lib/storage/storage.service.d.ts +10 -19
- package/locale/en.core.json +1 -2
- package/locale/en.json +1 -1205
- package/locale/fr.core.json +1 -2
- package/locale/fr.json +1 -1210
- package/package.json +40 -30
- package/packages.import.scss +4 -0
- package/public_api.d.ts +24 -24
- package/style/all-style.css +793 -0
- package/style/all-style.scss +3 -0
- package/style/layout.scss +163 -0
- package/style/partial/core-utils.scss +5 -0
- package/style/partial/core.variables.scss +1 -1
- package/style/partial/media.scss +80 -80
- package/style/style.css +237 -0
- package/style/style.scss +19 -0
- package/theming/all-theme.scss +14 -0
- package/theming/material-theme-override.scss +39 -0
- package/theming/prebuilt-themes/blue-theme.css +2986 -0
- package/theming/prebuilt-themes/blue-theme.scss +34 -0
- package/theming/prebuilt-themes/bluedark-theme.css +2986 -0
- package/theming/prebuilt-themes/bluedark-theme.scss +67 -0
- package/theming/prebuilt-themes/bluedq-theme.css +2986 -0
- package/theming/prebuilt-themes/bluedq-theme.scss +66 -0
- package/theming/prebuilt-themes/bluegrey-theme.css +2986 -0
- package/theming/prebuilt-themes/bluegrey-theme.scss +25 -0
- package/theming/prebuilt-themes/dark-theme.css +2993 -0
- package/theming/prebuilt-themes/dark-theme.scss +25 -0
- package/theming/prebuilt-themes/deeppurple-theme.css +2986 -0
- package/theming/prebuilt-themes/deeppurple-theme.scss +25 -0
- package/theming/prebuilt-themes/indigo-theme.css +2986 -0
- package/theming/prebuilt-themes/indigo-theme.scss +25 -0
- package/theming/prebuilt-themes/orange-theme.css +2986 -0
- package/theming/prebuilt-themes/orange-theme.scss +25 -0
- package/theming/prebuilt-themes/qcca/_index.scss +2 -0
- package/theming/prebuilt-themes/qcca/base/_index.scss +4 -0
- package/theming/prebuilt-themes/qcca/base/breakpoints.scss +57 -0
- package/theming/prebuilt-themes/qcca/base/colors.scss +40 -0
- package/theming/prebuilt-themes/qcca/base/palette.scss +50 -0
- package/theming/prebuilt-themes/qcca/base/typography/_index.scss +2 -0
- package/theming/prebuilt-themes/qcca/base/typography/typography.scss +138 -0
- package/theming/prebuilt-themes/qcca/base/typography/typography.utils.scss +18 -0
- package/theming/prebuilt-themes/qcca/components/_index.scss +9 -0
- package/theming/prebuilt-themes/qcca/components/_index.theme.scss +5 -0
- package/theming/prebuilt-themes/qcca/components/button.scss +24 -0
- package/theming/prebuilt-themes/qcca/components/dialog.scss +36 -0
- package/theming/prebuilt-themes/qcca/components/form-field.scss +5 -0
- package/theming/prebuilt-themes/qcca/components/input.scss +6 -0
- package/theming/prebuilt-themes/qcca/components/list.scss +24 -0
- package/theming/prebuilt-themes/qcca/components/panel.scss +8 -0
- package/theming/prebuilt-themes/qcca/components/search-bar.scss +41 -0
- package/theming/prebuilt-themes/qcca/components/search-bar.theme.scss +29 -0
- package/theming/prebuilt-themes/qcca-theme.css +3373 -0
- package/theming/prebuilt-themes/qcca-theme.scss +47 -0
- package/theming/prebuilt-themes/teal-theme.css +2986 -0
- package/theming/prebuilt-themes/teal-theme.scss +25 -0
- package/theming/typography.scss +28 -0
- package/theming/utils/_foreground.scss +22 -0
- package/__ivy_ngcc__/locale/en.auth.json +0 -29
- package/__ivy_ngcc__/locale/en.common.json +0 -43
- package/__ivy_ngcc__/locale/en.context.json +0 -199
- package/__ivy_ngcc__/locale/en.core.json +0 -29
- package/__ivy_ngcc__/locale/en.geo.json +0 -805
- package/__ivy_ngcc__/locale/en.integration.json +0 -124
- package/__ivy_ngcc__/locale/en.json +0 -1205
- package/__ivy_ngcc__/locale/fr.auth.json +0 -32
- package/__ivy_ngcc__/locale/fr.common.json +0 -43
- package/__ivy_ngcc__/locale/fr.context.json +0 -199
- package/__ivy_ngcc__/locale/fr.core.json +0 -29
- package/__ivy_ngcc__/locale/fr.geo.json +0 -805
- package/__ivy_ngcc__/locale/fr.integration.json +0 -125
- package/__ivy_ngcc__/locale/fr.json +0 -1210
- package/esm2020/lib/activity/activity.service.mjs +0 -33
- package/esm2020/lib/analytics/shared/analytics.service.mjs +0 -81
- package/esm2020/lib/compression/compression.service.mjs +0 -140
- package/esm2020/lib/config/config.service.mjs +0 -52
- package/esm2020/lib/config/version.mjs +0 -5
- package/esm2020/lib/core.module.mjs +0 -92
- package/esm2020/lib/language/language.module.mjs +0 -39
- package/esm2020/lib/language/shared/language.loader.mjs +0 -26
- package/esm2020/lib/language/shared/language.provider.mjs +0 -22
- package/esm2020/lib/language/shared/language.service.mjs +0 -32
- package/esm2020/lib/media/media.service.mjs +0 -76
- package/esm2020/lib/message/message.module.mjs +0 -56
- package/esm2020/lib/message/shared/message.service.mjs +0 -201
- package/esm2020/lib/network/network.service.mjs +0 -60
- package/esm2020/lib/regex/regex.service.mjs +0 -27
- package/esm2020/lib/request/error.interceptor.mjs +0 -66
- package/esm2020/lib/request/error.module.mjs +0 -39
- package/esm2020/lib/request/logging.interceptor.mjs +0 -29
- package/esm2020/lib/route/route.interface.mjs +0 -2
- package/esm2020/lib/route/route.service.mjs +0 -71
- package/esm2020/lib/storage/index.mjs +0 -3
- package/esm2020/lib/storage/storage.service.mjs +0 -79
- package/fesm2015/igo2-core.mjs +0 -1418
- package/fesm2015/igo2-core.mjs.map +0 -1
- package/fesm2020/igo2-core.mjs.map +0 -1
- package/locale/en.auth.json +0 -29
- package/locale/en.common.json +0 -43
- package/locale/en.context.json +0 -199
- package/locale/en.geo.json +0 -805
- package/locale/en.integration.json +0 -124
- package/locale/fr.auth.json +0 -32
- package/locale/fr.common.json +0 -43
- package/locale/fr.context.json +0 -199
- package/locale/fr.geo.json +0 -805
- package/locale/fr.integration.json +0 -125
- package/style/all.theming.scss +0 -5
- package/style/core.theming.scss +0 -9
- package/style/foreground.scss +0 -20
- package/style/index.theming.scss +0 -1465
- package/style/material.font.scss +0 -10
- package/style/setup.scss +0 -2
- package/style/themes/blue.theme.scss +0 -19
- package/style/themes/bluedark.theme.scss +0 -52
- package/style/themes/bluedq.theme.scss +0 -52
- package/style/themes/bluegrey.theme.scss +0 -16
- package/style/themes/dark.theme.scss +0 -16
- package/style/themes/deeppurple.theme.scss +0 -16
- package/style/themes/indigo.theme.scss +0 -16
- package/style/themes/orange.theme.scss +0 -16
- package/style/themes/qcca.theme.scss +0 -98
- package/style/themes/teal.theme.scss +0 -16
- package/style/theming.scss +0 -5
- package/style/typography.scss +0 -17
package/style/index.theming.scss
DELETED
|
@@ -1,1465 +0,0 @@
|
|
|
1
|
-
@use './node_modules/@angular/material/_index.scss' as mat;
|
|
2
|
-
@use './node_modules/@angular/cdk' as cdk;
|
|
3
|
-
|
|
4
|
-
$igo-typography: mat.define-typography-config(
|
|
5
|
-
$display-4: mat.define-typography-level(110px, 110px, 300),
|
|
6
|
-
$display-3: mat.define-typography-level(54px, 54px, 400),
|
|
7
|
-
$display-2: mat.define-typography-level(43px, 46px, 400),
|
|
8
|
-
$display-1: mat.define-typography-level(32px, 38px, 400),
|
|
9
|
-
$headline: mat.define-typography-level(22px, 30px, 400),
|
|
10
|
-
$title: mat.define-typography-level(18px, 30px, 500),
|
|
11
|
-
$subheading-2: mat.define-typography-level(14px, 26px, 400),
|
|
12
|
-
$subheading-1: mat.define-typography-level(13px, 22px, 400),
|
|
13
|
-
$body-2: mat.define-typography-level(12px, 22px, 500),
|
|
14
|
-
$body-1: mat.define-typography-level(12px, 18px, 400),
|
|
15
|
-
$caption: mat.define-typography-level(12px, 18px, 400),
|
|
16
|
-
$button: mat.define-typography-level(13px, 13px, 500),
|
|
17
|
-
$input: mat.define-typography-level(14px, 1.25, 400)
|
|
18
|
-
);
|
|
19
|
-
|
|
20
|
-
@include mat.core($igo-typography);
|
|
21
|
-
|
|
22
|
-
@mixin igo-all-theming($theme, $typography: $igo-typography) {
|
|
23
|
-
@include igo-theming($theme, $typography);
|
|
24
|
-
@include igo-common-theming($theme, $typography);
|
|
25
|
-
@include igo-geo-theming($theme, $typography);
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
@function theme-foreground($palette) {
|
|
29
|
-
$color: mat.get-color-from-palette($palette, 500);
|
|
30
|
-
@return (
|
|
31
|
-
base: $color,
|
|
32
|
-
divider: rgba($color, 0.12),
|
|
33
|
-
dividers: rgba($color, 0.12),
|
|
34
|
-
disabled: rgba($color, 0.38),
|
|
35
|
-
disabled-button: rgba($color, 0.26),
|
|
36
|
-
disabled-text: rgba($color, 0.38),
|
|
37
|
-
elevation: $color,
|
|
38
|
-
hint-text: rgba($color, 0.38),
|
|
39
|
-
secondary-text: rgba($color, 0.54),
|
|
40
|
-
icon: rgba($color, 0.54),
|
|
41
|
-
icons: rgba($color, 0.54),
|
|
42
|
-
text: rgba($color, 0.87),
|
|
43
|
-
slider-min: rgba($color, 0.87),
|
|
44
|
-
slider-off: rgba($color, 0.26),
|
|
45
|
-
slider-off-active: rgba($color, 0.38)
|
|
46
|
-
);
|
|
47
|
-
};
|
|
48
|
-
|
|
49
|
-
button.mat-menu-item {
|
|
50
|
-
line-height: 24px !important;
|
|
51
|
-
}
|
|
52
|
-
a.mat-menu-item > mat-icon {
|
|
53
|
-
margin-bottom: 14px;
|
|
54
|
-
}
|
|
55
|
-
.mat-icon svg {
|
|
56
|
-
height: 24px;
|
|
57
|
-
width: 24px;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
@mixin igo-theming($theme, $typography) {
|
|
61
|
-
@include igo-core-theming($theme, $typography);
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
/* based on angular-toastr css https://github.com/Foxandxss/angular-toastr/blob/cb508fe6801d6b288d3afc525bb40fee1b101650/dist/angular-toastr.css */
|
|
65
|
-
|
|
66
|
-
/* position */
|
|
67
|
-
.toast-center-center {
|
|
68
|
-
top: 50%;
|
|
69
|
-
left: 50%;
|
|
70
|
-
transform: translate(-50%, -50%);
|
|
71
|
-
}
|
|
72
|
-
.toast-top-center {
|
|
73
|
-
top: 0;
|
|
74
|
-
right: 0;
|
|
75
|
-
width: 100%;
|
|
76
|
-
}
|
|
77
|
-
.toast-bottom-center {
|
|
78
|
-
bottom: 0;
|
|
79
|
-
right: 0;
|
|
80
|
-
width: 100%;
|
|
81
|
-
}
|
|
82
|
-
.toast-top-full-width {
|
|
83
|
-
top: 0;
|
|
84
|
-
right: 0;
|
|
85
|
-
width: 100%;
|
|
86
|
-
}
|
|
87
|
-
.toast-bottom-full-width {
|
|
88
|
-
bottom: 0;
|
|
89
|
-
right: 0;
|
|
90
|
-
width: 100%;
|
|
91
|
-
}
|
|
92
|
-
.toast-top-left {
|
|
93
|
-
top: 12px;
|
|
94
|
-
left: 12px;
|
|
95
|
-
}
|
|
96
|
-
.toast-top-right {
|
|
97
|
-
top: 12px;
|
|
98
|
-
right: 12px;
|
|
99
|
-
}
|
|
100
|
-
.toast-bottom-right {
|
|
101
|
-
right: 12px;
|
|
102
|
-
bottom: 12px;
|
|
103
|
-
}
|
|
104
|
-
.toast-bottom-left {
|
|
105
|
-
bottom: 12px;
|
|
106
|
-
left: 12px;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
/* toast styles */
|
|
110
|
-
.toast-title {
|
|
111
|
-
font-weight: bold;
|
|
112
|
-
}
|
|
113
|
-
.toast-message {
|
|
114
|
-
word-wrap: break-word;
|
|
115
|
-
}
|
|
116
|
-
.toast-message a,
|
|
117
|
-
.toast-message label {
|
|
118
|
-
color: #FFFFFF;
|
|
119
|
-
}
|
|
120
|
-
.toast-message a:hover {
|
|
121
|
-
color: #CCCCCC;
|
|
122
|
-
text-decoration: none;
|
|
123
|
-
}
|
|
124
|
-
.toast-close-button {
|
|
125
|
-
position: relative;
|
|
126
|
-
right: -0.3em;
|
|
127
|
-
top: -0.3em;
|
|
128
|
-
float: right;
|
|
129
|
-
font-size: 20px;
|
|
130
|
-
font-weight: bold;
|
|
131
|
-
color: #FFFFFF;
|
|
132
|
-
text-shadow: 0 1px 0 #ffffff;
|
|
133
|
-
/* opacity: 0.8; */
|
|
134
|
-
}
|
|
135
|
-
.toast-close-button:hover,
|
|
136
|
-
.toast-close-button:focus {
|
|
137
|
-
color: #000000;
|
|
138
|
-
text-decoration: none;
|
|
139
|
-
cursor: pointer;
|
|
140
|
-
opacity: 0.4;
|
|
141
|
-
}
|
|
142
|
-
/*Additional properties for button version
|
|
143
|
-
iOS requires the button element instead of an anchor tag.
|
|
144
|
-
If you want the anchor version, it requires `href="#"`.*/
|
|
145
|
-
button.toast-close-button {
|
|
146
|
-
padding: 0;
|
|
147
|
-
cursor: pointer;
|
|
148
|
-
background: transparent;
|
|
149
|
-
border: 0;
|
|
150
|
-
}
|
|
151
|
-
.toast-container {
|
|
152
|
-
pointer-events: none;
|
|
153
|
-
position: fixed;
|
|
154
|
-
z-index: 999999;
|
|
155
|
-
}
|
|
156
|
-
.toast-container * {
|
|
157
|
-
box-sizing: border-box;
|
|
158
|
-
}
|
|
159
|
-
.toast-container .ngx-toastr {
|
|
160
|
-
position: relative;
|
|
161
|
-
overflow: hidden;
|
|
162
|
-
margin: 0 0 6px;
|
|
163
|
-
padding: 15px 15px 15px 50px;
|
|
164
|
-
width: 300px;
|
|
165
|
-
border-radius: 3px 3px 3px 3px;
|
|
166
|
-
background-position: 15px center;
|
|
167
|
-
background-repeat: no-repeat;
|
|
168
|
-
background-size: 24px;
|
|
169
|
-
box-shadow: 0 0 12px #999999;
|
|
170
|
-
color: #FFFFFF;
|
|
171
|
-
}
|
|
172
|
-
.toast-container .ngx-toastr:hover {
|
|
173
|
-
box-shadow: 0 0 12px #000000;
|
|
174
|
-
opacity: 1;
|
|
175
|
-
cursor: pointer;
|
|
176
|
-
}
|
|
177
|
-
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/info-circle.svg */
|
|
178
|
-
.toast-info {
|
|
179
|
-
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOS4wNDMgOCA4IDExOS4wODMgOCAyNTZjMCAxMzYuOTk3IDExMS4wNDMgMjQ4IDI0OCAyNDhzMjQ4LTExMS4wMDMgMjQ4LTI0OEM1MDQgMTE5LjA4MyAzOTIuOTU3IDggMjU2IDh6bTAgMTEwYzIzLjE5NiAwIDQyIDE4LjgwNCA0MiA0MnMtMTguODA0IDQyLTQyIDQyLTQyLTE4LjgwNC00Mi00MiAxOC44MDQtNDIgNDItNDJ6bTU2IDI1NGMwIDYuNjI3LTUuMzczIDEyLTEyIDEyaC04OGMtNi42MjcgMC0xMi01LjM3My0xMi0xMnYtMjRjMC02LjYyNyA1LjM3My0xMiAxMi0xMmgxMnYtNjRoLTEyYy02LjYyNyAwLTEyLTUuMzczLTEyLTEydi0yNGMwLTYuNjI3IDUuMzczLTEyIDEyLTEyaDY0YzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MTAwaDEyYzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MjR6Jy8+PC9zdmc+");
|
|
180
|
-
}
|
|
181
|
-
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/times-circle.svg */
|
|
182
|
-
.toast-error {
|
|
183
|
-
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6bTEyMS42IDMxMy4xYzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMzggMzc3LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwyNTYgMzEybC02NS4xIDY1LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwxMzQuNCAzMzhjLTQuNy00LjctNC43LTEyLjMgMC0xN2w2NS42LTY1LTY1LjYtNjUuMWMtNC43LTQuNy00LjctMTIuMyAwLTE3bDM5LjYtMzkuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsNjUgNjUuNyA2NS4xLTY1LjZjNC43LTQuNyAxMi4zLTQuNyAxNyAwbDM5LjYgMzkuNmM0LjcgNC43IDQuNyAxMi4zIDAgMTdMMzEyIDI1Nmw2NS42IDY1LjF6Jy8+PC9zdmc+");
|
|
184
|
-
}
|
|
185
|
-
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/check.svg */
|
|
186
|
-
.toast-success {
|
|
187
|
-
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTE3My44OTggNDM5LjQwNGwtMTY2LjQtMTY2LjRjLTkuOTk3LTkuOTk3LTkuOTk3LTI2LjIwNiAwLTM2LjIwNGwzNi4yMDMtMzYuMjA0YzkuOTk3LTkuOTk4IDI2LjIwNy05Ljk5OCAzNi4yMDQgMEwxOTIgMzEyLjY5IDQzMi4wOTUgNzIuNTk2YzkuOTk3LTkuOTk3IDI2LjIwNy05Ljk5NyAzNi4yMDQgMGwzNi4yMDMgMzYuMjA0YzkuOTk3IDkuOTk3IDkuOTk3IDI2LjIwNiAwIDM2LjIwNGwtMjk0LjQgMjk0LjQwMWMtOS45OTggOS45OTctMjYuMjA3IDkuOTk3LTM2LjIwNC0uMDAxeicvPjwvc3ZnPg==");
|
|
188
|
-
}
|
|
189
|
-
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/exclamation-triangle.svg */
|
|
190
|
-
.toast-warning {
|
|
191
|
-
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1NzYgNTEyJyB3aWR0aD0nNTc2JyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTU2OS41MTcgNDQwLjAxM0M1ODcuOTc1IDQ3Mi4wMDcgNTY0LjgwNiA1MTIgNTI3Ljk0IDUxMkg0OC4wNTRjLTM2LjkzNyAwLTU5Ljk5OS00MC4wNTUtNDEuNTc3LTcxLjk4N0wyNDYuNDIzIDIzLjk4NWMxOC40NjctMzIuMDA5IDY0LjcyLTMxLjk1MSA4My4xNTQgMGwyMzkuOTQgNDE2LjAyOHpNMjg4IDM1NGMtMjUuNDA1IDAtNDYgMjAuNTk1LTQ2IDQ2czIwLjU5NSA0NiA0NiA0NiA0Ni0yMC41OTUgNDYtNDYtMjAuNTk1LTQ2LTQ2LTQ2em0tNDMuNjczLTE2NS4zNDZsNy40MTggMTM2Yy4zNDcgNi4zNjQgNS42MDkgMTEuMzQ2IDExLjk4MiAxMS4zNDZoNDguNTQ2YzYuMzczIDAgMTEuNjM1LTQuOTgyIDExLjk4Mi0xMS4zNDZsNy40MTgtMTM2Yy4zNzUtNi44NzQtNS4wOTgtMTIuNjU0LTExLjk4Mi0xMi42NTRoLTYzLjM4M2MtNi44ODQgMC0xMi4zNTYgNS43OC0xMS45ODEgMTIuNjU0eicvPjwvc3ZnPg==");
|
|
192
|
-
}
|
|
193
|
-
.toast-container.toast-top-center .ngx-toastr,
|
|
194
|
-
.toast-container.toast-bottom-center .ngx-toastr {
|
|
195
|
-
width: 300px;
|
|
196
|
-
margin-left: auto;
|
|
197
|
-
margin-right: auto;
|
|
198
|
-
}
|
|
199
|
-
.toast-container.toast-top-full-width .ngx-toastr,
|
|
200
|
-
.toast-container.toast-bottom-full-width .ngx-toastr {
|
|
201
|
-
width: 96%;
|
|
202
|
-
margin-left: auto;
|
|
203
|
-
margin-right: auto;
|
|
204
|
-
}
|
|
205
|
-
.ngx-toastr {
|
|
206
|
-
background-color: #030303;
|
|
207
|
-
pointer-events: auto;
|
|
208
|
-
}
|
|
209
|
-
.toast-success {
|
|
210
|
-
background-color: #51A351;
|
|
211
|
-
}
|
|
212
|
-
.toast-error {
|
|
213
|
-
background-color: #BD362F;
|
|
214
|
-
}
|
|
215
|
-
.toast-info {
|
|
216
|
-
background-color: #2F96B4;
|
|
217
|
-
}
|
|
218
|
-
.toast-warning {
|
|
219
|
-
background-color: #F89406;
|
|
220
|
-
}
|
|
221
|
-
.toast-progress {
|
|
222
|
-
position: absolute;
|
|
223
|
-
left: 0;
|
|
224
|
-
bottom: 0;
|
|
225
|
-
height: 4px;
|
|
226
|
-
background-color: #000000;
|
|
227
|
-
opacity: 0.4;
|
|
228
|
-
}
|
|
229
|
-
/* Responsive Design */
|
|
230
|
-
@media all and (max-width: 240px) {
|
|
231
|
-
.toast-container .ngx-toastr.div {
|
|
232
|
-
padding: 8px 8px 8px 50px;
|
|
233
|
-
width: 11em;
|
|
234
|
-
}
|
|
235
|
-
.toast-container .toast-close-button {
|
|
236
|
-
right: -0.2em;
|
|
237
|
-
top: -0.2em;
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
@media all and (min-width: 241px) and (max-width: 480px) {
|
|
241
|
-
.toast-container .ngx-toastr.div {
|
|
242
|
-
padding: 8px 8px 8px 50px;
|
|
243
|
-
width: 18em;
|
|
244
|
-
}
|
|
245
|
-
.toast-container .toast-close-button {
|
|
246
|
-
right: -0.2em;
|
|
247
|
-
top: -0.2em;
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
@media all and (min-width: 481px) and (max-width: 768px) {
|
|
251
|
-
.toast-container .ngx-toastr.div {
|
|
252
|
-
padding: 15px 15px 15px 50px;
|
|
253
|
-
width: 25em;
|
|
254
|
-
}
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
@mixin igo-core-theming($theme, $typography) {
|
|
259
|
-
@include igo-message-theming($theme, $typography);
|
|
260
|
-
|
|
261
|
-
button.mat-icon-button.mat-button-base[disabled="true"] {
|
|
262
|
-
color: rgba(0,0,0,.26);
|
|
263
|
-
}
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
@mixin igo-message-theming($theme, $typography) {
|
|
267
|
-
$primary: map-get($theme, primary);
|
|
268
|
-
$accent: map-get($theme, accent);
|
|
269
|
-
$warn: map-get($theme, warn);
|
|
270
|
-
|
|
271
|
-
.toast-error {
|
|
272
|
-
background-color: mat.get-color-from-palette($warn);
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
.toast-info {
|
|
276
|
-
background-color: mat.get-color-from-palette($primary);
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
.toast-no-icon {
|
|
280
|
-
background-image: none;
|
|
281
|
-
padding-left: 6%;
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
.toast-title {
|
|
285
|
-
line-height: 23px;
|
|
286
|
-
font-size: 15px;
|
|
287
|
-
font-weight: bold;
|
|
288
|
-
font-family: Roboto, "Helvetica Neue", sans-serif;
|
|
289
|
-
}
|
|
290
|
-
.toast-message {
|
|
291
|
-
line-height: 18px;
|
|
292
|
-
font-size: mat.font-size($typography, subheading-2);
|
|
293
|
-
font-family: Roboto, "Helvetica Neue", sans-serif;
|
|
294
|
-
}
|
|
295
|
-
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
.shepherd-button{background:#3288e6;border:0;border-radius:3px;color:hsla(0,0%,100%,.75);cursor:pointer;margin-right:.5rem;padding:.5rem 1.5rem;transition:all .5s ease}.shepherd-button:not(:disabled):hover{background:#196fcc;color:hsla(0,0%,100%,.75)}.shepherd-button.shepherd-button-secondary{background:#f1f2f3;color:rgba(0,0,0,.75)}.shepherd-button.shepherd-button-secondary:not(:disabled):hover{background:#d6d9db;color:rgba(0,0,0,.75)}.shepherd-button:disabled{cursor:not-allowed}
|
|
299
|
-
.shepherd-footer{border-bottom-left-radius:5px;border-bottom-right-radius:5px;display:flex;justify-content:flex-end;padding:0 .75rem .75rem}.shepherd-footer .shepherd-button:last-child{margin-right:0}
|
|
300
|
-
.shepherd-cancel-icon{background:transparent;border:none;color:hsla(0,0%,50%,.75);cursor:pointer;font-size:2em;font-weight:400;margin:0;padding:0;transition:color .5s ease}.shepherd-cancel-icon:hover{color:rgba(0,0,0,.75)}.shepherd-has-title .shepherd-content .shepherd-cancel-icon{color:hsla(0,0%,50%,.75)}.shepherd-has-title .shepherd-content .shepherd-cancel-icon:hover{color:rgba(0,0,0,.75)}
|
|
301
|
-
.shepherd-title{color:rgba(0,0,0,.75);display:flex;flex:1 0 auto;font-size:1rem;font-weight:400;margin:0;padding:0}
|
|
302
|
-
.shepherd-header{align-items:center;border-top-left-radius:5px;border-top-right-radius:5px;display:flex;justify-content:flex-end;line-height:2em;padding:.75rem .75rem 0}.shepherd-has-title .shepherd-content .shepherd-header{background:#e6e6e6;padding:1em}
|
|
303
|
-
.shepherd-text{color:rgba(0,0,0,.75);font-size:1rem;line-height:1.3em;padding:.75em}.shepherd-text p{margin-top:0}.shepherd-text p:last-child{margin-bottom:0}
|
|
304
|
-
.shepherd-content{border-radius:5px;outline:none;padding:0}
|
|
305
|
-
.shepherd-element{background:#fff;border-radius:5px;box-shadow:0 1px 4px rgba(0,0,0,.2);max-width:400px;opacity:0;outline:none;transition:opacity .3s,visibility .3s;visibility:hidden;width:100%;z-index:9999}.shepherd-enabled.shepherd-element{opacity:1;visibility:visible}.shepherd-element[data-popper-reference-hidden]:not(.shepherd-centered){opacity:0;pointer-events:none;visibility:hidden}.shepherd-element,.shepherd-element *,.shepherd-element :after,.shepherd-element :before{box-sizing:border-box}.shepherd-arrow,.shepherd-arrow:before{height:16px;position:absolute;width:16px;z-index:-1}.shepherd-arrow:before{background:#fff;content:"";transform:rotate(45deg)}.shepherd-element[data-popper-placement^=top]>.shepherd-arrow{bottom:-8px}.shepherd-element[data-popper-placement^=bottom]>.shepherd-arrow{top:-8px}.shepherd-element[data-popper-placement^=left]>.shepherd-arrow{right:-8px}.shepherd-element[data-popper-placement^=right]>.shepherd-arrow{left:-8px}.shepherd-element.shepherd-centered>.shepherd-arrow{opacity:0}.shepherd-element.shepherd-has-title[data-popper-placement^=bottom]>.shepherd-arrow:before{background-color:#e6e6e6}.shepherd-target-click-disabled.shepherd-enabled.shepherd-target,.shepherd-target-click-disabled.shepherd-enabled.shepherd-target *{pointer-events:none}
|
|
306
|
-
.shepherd-modal-overlay-container{height:0;left:0;opacity:0;overflow:hidden;pointer-events:none;position:fixed;top:0;transition:all .3s ease-out,height 0ms .3s,opacity .3s 0ms;width:100vw;z-index:9997}.shepherd-modal-overlay-container.shepherd-modal-is-visible{height:100vh;opacity:.5;transform:translateZ(0);transition:all .3s ease-out,height 0s 0s,opacity .3s 0s}.shepherd-modal-overlay-container.shepherd-modal-is-visible path{pointer-events:all}
|
|
307
|
-
|
|
308
|
-
@mixin igo-common-theming($theme, $typography) {
|
|
309
|
-
@include igo-action-theming($theme);
|
|
310
|
-
@include igo-collapsible-theming($theme);
|
|
311
|
-
@include igo-entity-theming($theme);
|
|
312
|
-
@include igo-list-theming($theme);
|
|
313
|
-
@include igo-panel-theming($theme);
|
|
314
|
-
@include igo-tool-theming($theme);
|
|
315
|
-
@include igo-tour-theming($theme);
|
|
316
|
-
@include igo-home-button-theming($theme);
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
@mixin igo-action-theming($theme) {
|
|
320
|
-
@include igo-actionbar-theming($theme);
|
|
321
|
-
}
|
|
322
|
-
|
|
323
|
-
@mixin igo-actionbar-theming($theme) {
|
|
324
|
-
.igo-actionbar-overlay {
|
|
325
|
-
min-width: inherit !important;
|
|
326
|
-
padding-top: 0;
|
|
327
|
-
padding-bottom: 0;
|
|
328
|
-
|
|
329
|
-
.mat-list {
|
|
330
|
-
padding-top: 0
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
.mat-list .mat-list-item.mat-list-item-with-avatar .mat-list-item-content .mat-list-text {
|
|
334
|
-
padding-right: 16px;
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
.mat-menu-content:not(:empty) {
|
|
338
|
-
padding-top: 0;
|
|
339
|
-
padding-bottom: 0;
|
|
340
|
-
}
|
|
341
|
-
}
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
@mixin igo-collapsible-theming($theme) {
|
|
345
|
-
mat-icon[mat-list-avatar][igocollapse] {
|
|
346
|
-
&:hover {
|
|
347
|
-
cursor: pointer;
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
&.igo-chevron {
|
|
351
|
-
width: auto !important;
|
|
352
|
-
transform: rotateZ(0deg);
|
|
353
|
-
transition: 300ms ease-in-out;
|
|
354
|
-
|
|
355
|
-
&.collapsed {
|
|
356
|
-
transform: rotateZ(180deg);
|
|
357
|
-
transition: 300ms ease-in-out;
|
|
358
|
-
}
|
|
359
|
-
}
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
div.igo-collapsed {
|
|
363
|
-
display: none !important;
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
}
|
|
367
|
-
|
|
368
|
-
@mixin igo-entity-theming($theme) {
|
|
369
|
-
@include igo-entity-table-theming($theme);
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
@mixin igo-entity-table-theming($theme) {
|
|
373
|
-
$primary: map-get($theme, primary);
|
|
374
|
-
$accent: map-get($theme, accent);
|
|
375
|
-
|
|
376
|
-
igo-entity-table table.igo-entity-table-with-selection tr.igo-entity-table-row-highlighted {
|
|
377
|
-
background-color: mat.get-color-from-palette($primary, A100);
|
|
378
|
-
color: mat.get-color-from-palette($primary, default-contrast);
|
|
379
|
-
}
|
|
380
|
-
}
|
|
381
|
-
|
|
382
|
-
@mixin igo-home-button-theming($theme) {
|
|
383
|
-
$primary: map-get($theme, primary);
|
|
384
|
-
$accent: map-get($theme, accent);
|
|
385
|
-
$foreground: map-get($theme, foreground);
|
|
386
|
-
|
|
387
|
-
igo-home-button > #homeButton {
|
|
388
|
-
background-color: mat.get-color-from-palette($primary);
|
|
389
|
-
color: mat.get-color-from-palette($primary, default-contrast);
|
|
390
|
-
|
|
391
|
-
&:hover {
|
|
392
|
-
background-color: mat.get-color-from-palette($accent, lighter);
|
|
393
|
-
color: black;
|
|
394
|
-
}
|
|
395
|
-
}
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
@mixin igo-list-theming($theme) {
|
|
400
|
-
$primary: map-get($theme, primary);
|
|
401
|
-
$accent: map-get($theme, accent);
|
|
402
|
-
|
|
403
|
-
igo-list [igolistitem][color="primary"].igo-list-item-selected > mat-list-item {
|
|
404
|
-
background-color: mat.get-color-from-palette($primary);
|
|
405
|
-
color: mat.get-color-from-palette($primary, default-contrast);
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
igo-list [igolistitem][color="accent"].igo-list-item-selected > mat-list-item {
|
|
409
|
-
background-color: mat.get-color-from-palette($accent);
|
|
410
|
-
color: mat.get-color-from-palette($accent, default-contrast);
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
igo-list [igolistitem].igo-list-item-disabled > mat-list-item {
|
|
414
|
-
color: rgba(0, 0, 0, 0.38);
|
|
415
|
-
}
|
|
416
|
-
|
|
417
|
-
igo-list [igolistitem][color="primary"]:not(.igo-list-item-disabled):hover > mat-list-item,
|
|
418
|
-
igo-list [igolistitem][color="primary"].igo-list-item-focused > mat-list-item {
|
|
419
|
-
background-color: mat.get-color-from-palette($primary, lighter);
|
|
420
|
-
color: mat.get-color-from-palette($primary, default-contrast);
|
|
421
|
-
}
|
|
422
|
-
|
|
423
|
-
igo-list [igolistitem][color="accent"]:not(.igo-list-item-disabled):hover > mat-list-item,
|
|
424
|
-
igo-list [igolistitem][color="accent"].igo-list-item-focused > mat-list-item {
|
|
425
|
-
background-color: mat.get-color-from-palette($accent, lighter);
|
|
426
|
-
color: mat.get-color-from-palette($accent, default-contrast);
|
|
427
|
-
}
|
|
428
|
-
}
|
|
429
|
-
|
|
430
|
-
@mixin igo-panel-theming($theme) {
|
|
431
|
-
$primary: map-get($theme, primary);
|
|
432
|
-
|
|
433
|
-
igo-panel > div.igo-panel-header {
|
|
434
|
-
background-color: mat.get-color-from-palette($primary);
|
|
435
|
-
color: mat.get-color-from-palette($primary, default-contrast);
|
|
436
|
-
}
|
|
437
|
-
|
|
438
|
-
}
|
|
439
|
-
|
|
440
|
-
@mixin igo-tool-theming($theme) {
|
|
441
|
-
@include igo-toolbox-theming($theme);
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
@mixin igo-toolbox-theming($theme) {
|
|
445
|
-
$primary: map-get($theme, primary);
|
|
446
|
-
$accent: map-get($theme, accent);
|
|
447
|
-
$foreground: map-get($theme, foreground);
|
|
448
|
-
|
|
449
|
-
igo-toolbox > igo-actionbar mat-list.mat-list-base igo-actionbar-item mat-list-item {
|
|
450
|
-
&:hover {
|
|
451
|
-
background-color: mat.get-color-from-palette($accent, lighter);
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
&.tool-activated,
|
|
455
|
-
&.children-tool-activated {
|
|
456
|
-
background-color: mat.get-color-from-palette($accent);
|
|
457
|
-
cursor: default;
|
|
458
|
-
button {
|
|
459
|
-
cursor: default;
|
|
460
|
-
}
|
|
461
|
-
}
|
|
462
|
-
}
|
|
463
|
-
|
|
464
|
-
igo-toolbox > igo-actionbar:not(.with-title) > mat-list {
|
|
465
|
-
& > #lowChevron,
|
|
466
|
-
& > #topChevron {
|
|
467
|
-
&:hover {
|
|
468
|
-
background-color: mat.get-color-from-palette($accent, lighter);
|
|
469
|
-
color: black;
|
|
470
|
-
}
|
|
471
|
-
}
|
|
472
|
-
}
|
|
473
|
-
|
|
474
|
-
igo-toolbox.color-primary > igo-actionbar:not(.with-title) {
|
|
475
|
-
box-shadow: unset;
|
|
476
|
-
background-color: mat.get-color-from-palette($primary);
|
|
477
|
-
#lowChevron,
|
|
478
|
-
#topChevron {
|
|
479
|
-
background-color: mat.get-color-from-palette($primary);
|
|
480
|
-
color: white;
|
|
481
|
-
}
|
|
482
|
-
}
|
|
483
|
-
|
|
484
|
-
igo-toolbox.color-grey > igo-actionbar:not(.with-title) {
|
|
485
|
-
box-shadow: unset;
|
|
486
|
-
background-color: #737475;
|
|
487
|
-
#lowChevron,
|
|
488
|
-
#topChevron {
|
|
489
|
-
background-color: #737475;
|
|
490
|
-
color: white;
|
|
491
|
-
}
|
|
492
|
-
}
|
|
493
|
-
|
|
494
|
-
igo-toolbox.color-primary,
|
|
495
|
-
igo-toolbox.color-grey {
|
|
496
|
-
& > igo-actionbar:not(.with-title) mat-list.mat-list-base {
|
|
497
|
-
.mat-list-item.mat-list-item-with-avatar {
|
|
498
|
-
color: white;
|
|
499
|
-
&:hover {
|
|
500
|
-
color: black;
|
|
501
|
-
}
|
|
502
|
-
|
|
503
|
-
&.tool-activated,
|
|
504
|
-
&.children-tool-activated {
|
|
505
|
-
background-color: white;
|
|
506
|
-
color: black;
|
|
507
|
-
}
|
|
508
|
-
}
|
|
509
|
-
}
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
}
|
|
513
|
-
|
|
514
|
-
@mixin igo-tour-theming($theme) {
|
|
515
|
-
$primary: map-get($theme, primary);
|
|
516
|
-
$accent: map-get($theme, accent);
|
|
517
|
-
$warn: map-get($theme, warn);
|
|
518
|
-
|
|
519
|
-
igo-interactive-tour > button.mat-raised-button.tour-button-tool-icon {
|
|
520
|
-
box-shadow: none;
|
|
521
|
-
}
|
|
522
|
-
|
|
523
|
-
igo-interactive-tour > button.tour-button-tool-icon {
|
|
524
|
-
background-color: mat.get-color-from-palette($primary);
|
|
525
|
-
color: mat.get-color-from-palette($primary, default-contrast);
|
|
526
|
-
|
|
527
|
-
box-shadow: none;
|
|
528
|
-
border:none;
|
|
529
|
-
border-radius: 50%;
|
|
530
|
-
padding: 0;
|
|
531
|
-
min-width: 0;
|
|
532
|
-
width: 40px;
|
|
533
|
-
height: 40px;
|
|
534
|
-
flex-shrink: 0;
|
|
535
|
-
line-height: 40px;
|
|
536
|
-
}
|
|
537
|
-
|
|
538
|
-
igo-interactive-tour > button.tour-button-tool-icon span.interactive-tour-button-title {
|
|
539
|
-
display: none;
|
|
540
|
-
}
|
|
541
|
-
|
|
542
|
-
igo-interactive-tour > button.tour-button-tool {
|
|
543
|
-
background-color: mat.get-color-from-palette($primary);
|
|
544
|
-
color: mat.get-color-from-palette($primary, default-contrast);
|
|
545
|
-
border: none;
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
igo-interactive-tour > button.tour-button-tool-icon:hover {
|
|
549
|
-
background-color: mat.get-color-from-palette($primary, default-contrast);
|
|
550
|
-
color: mat.get-color-from-palette($primary);
|
|
551
|
-
cursor: pointer;
|
|
552
|
-
}
|
|
553
|
-
}
|
|
554
|
-
|
|
555
|
-
:root,
|
|
556
|
-
:host {
|
|
557
|
-
--ol-background-color: white;
|
|
558
|
-
--ol-accent-background-color: #F5F5F5;
|
|
559
|
-
--ol-subtle-background-color: rgba(128, 128, 128, 0.25);
|
|
560
|
-
--ol-partial-background-color: rgba(255, 255, 255, 0.75);
|
|
561
|
-
--ol-foreground-color: #333333;
|
|
562
|
-
--ol-subtle-foreground-color: #666666;
|
|
563
|
-
--ol-brand-color: #00AAFF;
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
.ol-box {
|
|
567
|
-
box-sizing: border-box;
|
|
568
|
-
border-radius: 2px;
|
|
569
|
-
border: 1.5px solid var(--ol-background-color);
|
|
570
|
-
background-color: var(--ol-partial-background-color);
|
|
571
|
-
}
|
|
572
|
-
|
|
573
|
-
.ol-mouse-position {
|
|
574
|
-
top: 8px;
|
|
575
|
-
right: 8px;
|
|
576
|
-
position: absolute;
|
|
577
|
-
}
|
|
578
|
-
|
|
579
|
-
.ol-scale-line {
|
|
580
|
-
background: var(--ol-partial-background-color);
|
|
581
|
-
border-radius: 4px;
|
|
582
|
-
bottom: 8px;
|
|
583
|
-
left: 8px;
|
|
584
|
-
padding: 2px;
|
|
585
|
-
position: absolute;
|
|
586
|
-
}
|
|
587
|
-
|
|
588
|
-
.ol-scale-line-inner {
|
|
589
|
-
border: 1px solid var(--ol-subtle-foreground-color);
|
|
590
|
-
border-top: none;
|
|
591
|
-
color: var(--ol-foreground-color);
|
|
592
|
-
font-size: 10px;
|
|
593
|
-
text-align: center;
|
|
594
|
-
margin: 1px;
|
|
595
|
-
will-change: contents, width;
|
|
596
|
-
transition: all 0.25s;
|
|
597
|
-
}
|
|
598
|
-
|
|
599
|
-
.ol-scale-bar {
|
|
600
|
-
position: absolute;
|
|
601
|
-
bottom: 8px;
|
|
602
|
-
left: 8px;
|
|
603
|
-
}
|
|
604
|
-
|
|
605
|
-
.ol-scale-bar-inner {
|
|
606
|
-
display: flex;
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
.ol-scale-step-marker {
|
|
610
|
-
width: 1px;
|
|
611
|
-
height: 15px;
|
|
612
|
-
background-color: var(--ol-foreground-color);
|
|
613
|
-
float: right;
|
|
614
|
-
z-index: 10;
|
|
615
|
-
}
|
|
616
|
-
|
|
617
|
-
.ol-scale-step-text {
|
|
618
|
-
position: absolute;
|
|
619
|
-
bottom: -5px;
|
|
620
|
-
font-size: 10px;
|
|
621
|
-
z-index: 11;
|
|
622
|
-
color: var(--ol-foreground-color);
|
|
623
|
-
text-shadow: -1.5px 0 var(--ol-partial-background-color), 0 1.5px var(--ol-partial-background-color), 1.5px 0 var(--ol-partial-background-color), 0 -1.5px var(--ol-partial-background-color);
|
|
624
|
-
}
|
|
625
|
-
|
|
626
|
-
.ol-scale-text {
|
|
627
|
-
position: absolute;
|
|
628
|
-
font-size: 12px;
|
|
629
|
-
text-align: center;
|
|
630
|
-
bottom: 25px;
|
|
631
|
-
color: var(--ol-foreground-color);
|
|
632
|
-
text-shadow: -1.5px 0 var(--ol-partial-background-color), 0 1.5px var(--ol-partial-background-color), 1.5px 0 var(--ol-partial-background-color), 0 -1.5px var(--ol-partial-background-color);
|
|
633
|
-
}
|
|
634
|
-
|
|
635
|
-
.ol-scale-singlebar {
|
|
636
|
-
position: relative;
|
|
637
|
-
height: 10px;
|
|
638
|
-
z-index: 9;
|
|
639
|
-
box-sizing: border-box;
|
|
640
|
-
border: 1px solid var(--ol-foreground-color);
|
|
641
|
-
}
|
|
642
|
-
|
|
643
|
-
.ol-scale-singlebar-even {
|
|
644
|
-
background-color: var(--ol-subtle-foreground-color);
|
|
645
|
-
}
|
|
646
|
-
|
|
647
|
-
.ol-scale-singlebar-odd {
|
|
648
|
-
background-color: var(--ol-background-color);
|
|
649
|
-
}
|
|
650
|
-
|
|
651
|
-
.ol-unsupported {
|
|
652
|
-
display: none;
|
|
653
|
-
}
|
|
654
|
-
|
|
655
|
-
.ol-viewport,
|
|
656
|
-
.ol-unselectable {
|
|
657
|
-
-webkit-touch-callout: none;
|
|
658
|
-
-webkit-user-select: none;
|
|
659
|
-
-moz-user-select: none;
|
|
660
|
-
user-select: none;
|
|
661
|
-
-webkit-tap-highlight-color: transparent;
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
.ol-viewport canvas {
|
|
665
|
-
all: unset;
|
|
666
|
-
}
|
|
667
|
-
|
|
668
|
-
.ol-selectable {
|
|
669
|
-
-webkit-touch-callout: default;
|
|
670
|
-
-webkit-user-select: text;
|
|
671
|
-
-moz-user-select: text;
|
|
672
|
-
user-select: text;
|
|
673
|
-
}
|
|
674
|
-
|
|
675
|
-
.ol-grabbing {
|
|
676
|
-
cursor: -webkit-grabbing;
|
|
677
|
-
cursor: -moz-grabbing;
|
|
678
|
-
cursor: grabbing;
|
|
679
|
-
}
|
|
680
|
-
|
|
681
|
-
.ol-grab {
|
|
682
|
-
cursor: move;
|
|
683
|
-
cursor: -webkit-grab;
|
|
684
|
-
cursor: -moz-grab;
|
|
685
|
-
cursor: grab;
|
|
686
|
-
}
|
|
687
|
-
|
|
688
|
-
.ol-control {
|
|
689
|
-
position: absolute;
|
|
690
|
-
background-color: var(--ol-subtle-background-color);
|
|
691
|
-
border-radius: 4px;
|
|
692
|
-
}
|
|
693
|
-
|
|
694
|
-
.ol-zoom {
|
|
695
|
-
top: .5em;
|
|
696
|
-
left: .5em;
|
|
697
|
-
}
|
|
698
|
-
|
|
699
|
-
.ol-rotate {
|
|
700
|
-
top: .5em;
|
|
701
|
-
right: .5em;
|
|
702
|
-
transition: opacity .25s linear, visibility 0s linear;
|
|
703
|
-
}
|
|
704
|
-
|
|
705
|
-
.ol-rotate.ol-hidden {
|
|
706
|
-
opacity: 0;
|
|
707
|
-
visibility: hidden;
|
|
708
|
-
transition: opacity .25s linear, visibility 0s linear .25s;
|
|
709
|
-
}
|
|
710
|
-
|
|
711
|
-
.ol-zoom-extent {
|
|
712
|
-
top: 4.643em;
|
|
713
|
-
left: .5em;
|
|
714
|
-
}
|
|
715
|
-
|
|
716
|
-
.ol-full-screen {
|
|
717
|
-
right: .5em;
|
|
718
|
-
top: .5em;
|
|
719
|
-
}
|
|
720
|
-
|
|
721
|
-
.ol-control button {
|
|
722
|
-
display: block;
|
|
723
|
-
margin: 1px;
|
|
724
|
-
padding: 0;
|
|
725
|
-
color: var(--ol-subtle-foreground-color);
|
|
726
|
-
font-weight: bold;
|
|
727
|
-
text-decoration: none;
|
|
728
|
-
font-size: inherit;
|
|
729
|
-
text-align: center;
|
|
730
|
-
height: 1.375em;
|
|
731
|
-
width: 1.375em;
|
|
732
|
-
line-height: .4em;
|
|
733
|
-
background-color: var(--ol-background-color);
|
|
734
|
-
border: none;
|
|
735
|
-
border-radius: 2px;
|
|
736
|
-
}
|
|
737
|
-
|
|
738
|
-
.ol-control button::-moz-focus-inner {
|
|
739
|
-
border: none;
|
|
740
|
-
padding: 0;
|
|
741
|
-
}
|
|
742
|
-
|
|
743
|
-
.ol-zoom-extent button {
|
|
744
|
-
line-height: 1.4em;
|
|
745
|
-
}
|
|
746
|
-
|
|
747
|
-
.ol-compass {
|
|
748
|
-
display: block;
|
|
749
|
-
font-weight: normal;
|
|
750
|
-
will-change: transform;
|
|
751
|
-
}
|
|
752
|
-
|
|
753
|
-
.ol-touch .ol-control button {
|
|
754
|
-
font-size: 1.5em;
|
|
755
|
-
}
|
|
756
|
-
|
|
757
|
-
.ol-touch .ol-zoom-extent {
|
|
758
|
-
top: 5.5em;
|
|
759
|
-
}
|
|
760
|
-
|
|
761
|
-
.ol-control button:hover,
|
|
762
|
-
.ol-control button:focus {
|
|
763
|
-
text-decoration: none;
|
|
764
|
-
outline: 1px solid var(--ol-subtle-foreground-color);
|
|
765
|
-
color: var(--ol-foreground-color);
|
|
766
|
-
}
|
|
767
|
-
|
|
768
|
-
.ol-zoom .ol-zoom-in {
|
|
769
|
-
border-radius: 2px 2px 0 0;
|
|
770
|
-
}
|
|
771
|
-
|
|
772
|
-
.ol-zoom .ol-zoom-out {
|
|
773
|
-
border-radius: 0 0 2px 2px;
|
|
774
|
-
}
|
|
775
|
-
|
|
776
|
-
.ol-attribution {
|
|
777
|
-
text-align: right;
|
|
778
|
-
bottom: .5em;
|
|
779
|
-
right: .5em;
|
|
780
|
-
max-width: calc(100% - 1.3em);
|
|
781
|
-
display: flex;
|
|
782
|
-
flex-flow: row-reverse;
|
|
783
|
-
align-items: center;
|
|
784
|
-
}
|
|
785
|
-
|
|
786
|
-
.ol-attribution a {
|
|
787
|
-
color: var(--ol-subtle-foreground-color);
|
|
788
|
-
text-decoration: none;
|
|
789
|
-
}
|
|
790
|
-
|
|
791
|
-
.ol-attribution ul {
|
|
792
|
-
margin: 0;
|
|
793
|
-
padding: 1px .5em;
|
|
794
|
-
color: var(--ol-foreground-color);
|
|
795
|
-
text-shadow: 0 0 2px var(--ol-background-color);
|
|
796
|
-
font-size: 12px;
|
|
797
|
-
}
|
|
798
|
-
|
|
799
|
-
.ol-attribution li {
|
|
800
|
-
display: inline;
|
|
801
|
-
list-style: none;
|
|
802
|
-
}
|
|
803
|
-
|
|
804
|
-
.ol-attribution li:not(:last-child):after {
|
|
805
|
-
content: " ";
|
|
806
|
-
}
|
|
807
|
-
|
|
808
|
-
.ol-attribution img {
|
|
809
|
-
max-height: 2em;
|
|
810
|
-
max-width: inherit;
|
|
811
|
-
vertical-align: middle;
|
|
812
|
-
}
|
|
813
|
-
|
|
814
|
-
.ol-attribution button {
|
|
815
|
-
flex-shrink: 0;
|
|
816
|
-
}
|
|
817
|
-
|
|
818
|
-
.ol-attribution.ol-collapsed ul {
|
|
819
|
-
display: none;
|
|
820
|
-
}
|
|
821
|
-
|
|
822
|
-
.ol-attribution:not(.ol-collapsed) {
|
|
823
|
-
background: var(--ol-partial-background-color);
|
|
824
|
-
}
|
|
825
|
-
|
|
826
|
-
.ol-attribution.ol-uncollapsible {
|
|
827
|
-
bottom: 0;
|
|
828
|
-
right: 0;
|
|
829
|
-
border-radius: 4px 0 0;
|
|
830
|
-
}
|
|
831
|
-
|
|
832
|
-
.ol-attribution.ol-uncollapsible img {
|
|
833
|
-
margin-top: -.2em;
|
|
834
|
-
max-height: 1.6em;
|
|
835
|
-
}
|
|
836
|
-
|
|
837
|
-
.ol-attribution.ol-uncollapsible button {
|
|
838
|
-
display: none;
|
|
839
|
-
}
|
|
840
|
-
|
|
841
|
-
.ol-zoomslider {
|
|
842
|
-
top: 4.5em;
|
|
843
|
-
left: .5em;
|
|
844
|
-
height: 200px;
|
|
845
|
-
}
|
|
846
|
-
|
|
847
|
-
.ol-zoomslider button {
|
|
848
|
-
position: relative;
|
|
849
|
-
height: 10px;
|
|
850
|
-
}
|
|
851
|
-
|
|
852
|
-
.ol-touch .ol-zoomslider {
|
|
853
|
-
top: 5.5em;
|
|
854
|
-
}
|
|
855
|
-
|
|
856
|
-
.ol-overviewmap {
|
|
857
|
-
left: 0.5em;
|
|
858
|
-
bottom: 0.5em;
|
|
859
|
-
}
|
|
860
|
-
|
|
861
|
-
.ol-overviewmap.ol-uncollapsible {
|
|
862
|
-
bottom: 0;
|
|
863
|
-
left: 0;
|
|
864
|
-
border-radius: 0 4px 0 0;
|
|
865
|
-
}
|
|
866
|
-
|
|
867
|
-
.ol-overviewmap .ol-overviewmap-map,
|
|
868
|
-
.ol-overviewmap button {
|
|
869
|
-
display: block;
|
|
870
|
-
}
|
|
871
|
-
|
|
872
|
-
.ol-overviewmap .ol-overviewmap-map {
|
|
873
|
-
border: 1px solid var(--ol-subtle-foreground-color);
|
|
874
|
-
height: 150px;
|
|
875
|
-
width: 150px;
|
|
876
|
-
}
|
|
877
|
-
|
|
878
|
-
.ol-overviewmap:not(.ol-collapsed) button {
|
|
879
|
-
bottom: 0;
|
|
880
|
-
left: 0;
|
|
881
|
-
position: absolute;
|
|
882
|
-
}
|
|
883
|
-
|
|
884
|
-
.ol-overviewmap.ol-collapsed .ol-overviewmap-map,
|
|
885
|
-
.ol-overviewmap.ol-uncollapsible button {
|
|
886
|
-
display: none;
|
|
887
|
-
}
|
|
888
|
-
|
|
889
|
-
.ol-overviewmap:not(.ol-collapsed) {
|
|
890
|
-
background: var(--ol-subtle-background-color);
|
|
891
|
-
}
|
|
892
|
-
|
|
893
|
-
.ol-overviewmap-box {
|
|
894
|
-
border: 1.5px dotted var(--ol-subtle-foreground-color);
|
|
895
|
-
}
|
|
896
|
-
|
|
897
|
-
.ol-overviewmap .ol-overviewmap-box:hover {
|
|
898
|
-
cursor: move;
|
|
899
|
-
}
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
@mixin igo-geo-theming($theme, $typography) {
|
|
903
|
-
@include igo-drawingTool-theming($theme, $typography);
|
|
904
|
-
@include igo-feature-theming($theme);
|
|
905
|
-
@include igo-filter-theming($theme, $typography);
|
|
906
|
-
@include igo-layer-theming($theme);
|
|
907
|
-
@include igo-map-theming($theme, $typography);
|
|
908
|
-
@include igo-measure-theming($theme, $typography);
|
|
909
|
-
@include igo-directions-theming($theme);
|
|
910
|
-
@include igo-workspace-theming($theme, $typography);
|
|
911
|
-
}
|
|
912
|
-
|
|
913
|
-
@mixin igo-directions-theming($theme) {
|
|
914
|
-
@include igo-directions-results-theming($theme);
|
|
915
|
-
}
|
|
916
|
-
|
|
917
|
-
@mixin igo-directions-results-theming($theme) {
|
|
918
|
-
$accent: map-get($theme, accent);
|
|
919
|
-
|
|
920
|
-
igo-directions-results mat-list-item.igo-steps:hover {
|
|
921
|
-
background-color: mat.get-color-from-palette($accent, lighter);
|
|
922
|
-
}
|
|
923
|
-
}
|
|
924
|
-
|
|
925
|
-
@mixin igo-drawingTool-theming($theme, $typography) {
|
|
926
|
-
@include igo-draw-theming($theme, $typography);
|
|
927
|
-
}
|
|
928
|
-
|
|
929
|
-
@mixin igo-draw-theming($theme, $typography) {
|
|
930
|
-
$foreground: map-get($theme, foreground);
|
|
931
|
-
|
|
932
|
-
.igo-map-tooltip {
|
|
933
|
-
position: relative;
|
|
934
|
-
border-radius: 4px;
|
|
935
|
-
padding: 4px 8px;
|
|
936
|
-
white-space: nowrap;
|
|
937
|
-
}
|
|
938
|
-
|
|
939
|
-
.igo-map-tooltip-draw {
|
|
940
|
-
color: mat.get-color-from-palette($foreground, text);
|
|
941
|
-
font-weight: bold;
|
|
942
|
-
font-size: mat.font-size($typography, subheading-2);
|
|
943
|
-
}
|
|
944
|
-
|
|
945
|
-
igo-draw-popup-component {
|
|
946
|
-
h1 {
|
|
947
|
-
font-size: mat.font-size($typography, display-1);
|
|
948
|
-
font-family: Roboto, "Helvetica Neue", sans-serif;
|
|
949
|
-
}
|
|
950
|
-
}
|
|
951
|
-
}
|
|
952
|
-
@mixin igo-feature-theming($theme) {
|
|
953
|
-
@include igo-feature-details-theming($theme);
|
|
954
|
-
}
|
|
955
|
-
|
|
956
|
-
@mixin igo-feature-details-theming($theme) {
|
|
957
|
-
$is-dark: map-get($theme, is-dark);
|
|
958
|
-
$foreground: map-get($theme, foreground);
|
|
959
|
-
$background: map-get($theme, background);
|
|
960
|
-
|
|
961
|
-
igo-feature-details > table.igo-striped tbody tr:nth-child(odd) {
|
|
962
|
-
background-color: mat.get-color-from-palette($background, if($is-dark, app-bar, status-bar));
|
|
963
|
-
color: black;
|
|
964
|
-
}
|
|
965
|
-
|
|
966
|
-
}
|
|
967
|
-
|
|
968
|
-
@mixin igo-filter-theming($theme, $typography) {
|
|
969
|
-
@include igo-time-filter-form-theming($theme);
|
|
970
|
-
@include igo-ogc-filter-time-slider-theming($theme);
|
|
971
|
-
@include igo-ogc-filter-selection-theming($theme);
|
|
972
|
-
}
|
|
973
|
-
|
|
974
|
-
@mixin igo-ogc-filter-selection-theming($theme) {
|
|
975
|
-
$primary: map-get($theme, primary);
|
|
976
|
-
$accent: map-get($theme, accent);
|
|
977
|
-
$dark: mat.define-palette(mat.$grey-palette, 800, 700, 900);
|
|
978
|
-
|
|
979
|
-
mat-button-toggle.mat-button-toggle-checked {
|
|
980
|
-
background-color: mat.get-color-from-palette($accent);
|
|
981
|
-
color: mat.get-color-from-palette($dark);
|
|
982
|
-
}
|
|
983
|
-
|
|
984
|
-
mat-button-toggle {
|
|
985
|
-
color: black !important;
|
|
986
|
-
}
|
|
987
|
-
}
|
|
988
|
-
|
|
989
|
-
@mixin igo-ogc-filter-time-slider-theming($theme) {
|
|
990
|
-
$primary: map-get($theme, primary);
|
|
991
|
-
$color: mat.define-palette(mat.$yellow-palette);
|
|
992
|
-
|
|
993
|
-
.mat-slider-thumb-label {
|
|
994
|
-
transform: rotate(45deg) !important;
|
|
995
|
-
border-radius: 50% 50% 0 !important;
|
|
996
|
-
}
|
|
997
|
-
}
|
|
998
|
-
|
|
999
|
-
@mixin igo-time-filter-form-theming($theme) {
|
|
1000
|
-
$primary: map-get($theme, primary);
|
|
1001
|
-
|
|
1002
|
-
mat-datetimepicker-calendar > div.mat-datetimepicker-calendar-header {
|
|
1003
|
-
color: mat.get-color-from-palette($primary);
|
|
1004
|
-
}
|
|
1005
|
-
|
|
1006
|
-
mat-datetimepicker-calendar > div.mat-datetimepicker-calendar-content .mat-datetimepicker-calendar-body-active {
|
|
1007
|
-
background-color: mat.get-color-from-palette($primary, lighter);
|
|
1008
|
-
border-radius: 100%;
|
|
1009
|
-
}
|
|
1010
|
-
}
|
|
1011
|
-
|
|
1012
|
-
@mixin igo-layer-theming($theme) {
|
|
1013
|
-
$primary: map-get($theme, primary);
|
|
1014
|
-
$accent: map-get($theme, accent);
|
|
1015
|
-
|
|
1016
|
-
@include igo-layer-legend-theming($theme);
|
|
1017
|
-
|
|
1018
|
-
igo-layer-item.igo-layer-item-focused > mat-list-item {
|
|
1019
|
-
background-color: mat.get-color-from-palette($accent, lighter);
|
|
1020
|
-
color: mat.get-color-from-palette($primary, default-contrast);
|
|
1021
|
-
}
|
|
1022
|
-
|
|
1023
|
-
.mat-menu-opacity-slider{
|
|
1024
|
-
box-shadow: 0 2px 4px -1px rgba(0,0,0,.5), 0 4px 5px 0 rgba(0,0,0,.15), 0 1px 10px 0 rgba(0,0,0,.4)
|
|
1025
|
-
}
|
|
1026
|
-
}
|
|
1027
|
-
|
|
1028
|
-
@mixin igo-layer-legend-theming($theme) {
|
|
1029
|
-
$primary: map-get($theme, primary);
|
|
1030
|
-
|
|
1031
|
-
igo-layer-legend img:after {
|
|
1032
|
-
border-top-color: mat.get-color-from-palette($primary);
|
|
1033
|
-
}
|
|
1034
|
-
}
|
|
1035
|
-
|
|
1036
|
-
@mixin igo-map-theming($theme, $typography) {
|
|
1037
|
-
@include igo-map-browser-theming($theme, $typography);
|
|
1038
|
-
@include igo-zoom-button-theming($theme);
|
|
1039
|
-
@include igo-menu-button-theming($theme);
|
|
1040
|
-
}
|
|
1041
|
-
|
|
1042
|
-
@mixin igo-map-browser-theming($theme, $typography) {
|
|
1043
|
-
$primary: map-get($theme, primary);
|
|
1044
|
-
$is-dark: map-get($theme, is-dark);
|
|
1045
|
-
|
|
1046
|
-
igo-map-browser div.ol-attribution > button {
|
|
1047
|
-
color: mat.get-color-from-palette($primary, if($is-dark, default-contrast, default));
|
|
1048
|
-
background-color: mat.get-color-from-palette(
|
|
1049
|
-
$primary,
|
|
1050
|
-
if($is-dark, default, default-contrast)
|
|
1051
|
-
);
|
|
1052
|
-
}
|
|
1053
|
-
|
|
1054
|
-
igo-map-browser div.ol-attribution > ul {
|
|
1055
|
-
font-size: mat.font-size($typography, body-1);
|
|
1056
|
-
}
|
|
1057
|
-
}
|
|
1058
|
-
|
|
1059
|
-
@mixin igo-zoom-button-theming($theme) {
|
|
1060
|
-
$primary: map-get($theme, primary);
|
|
1061
|
-
$accent: map-get($theme, accent);
|
|
1062
|
-
$is-dark: map-get($theme, is-dark);
|
|
1063
|
-
|
|
1064
|
-
igo-zoom-button > div.igo-zoom-button-container > button {
|
|
1065
|
-
&.mat-primary {
|
|
1066
|
-
color: mat.get-color-from-palette($primary, if($is-dark, default-contrast, default));
|
|
1067
|
-
background-color: mat.get-color-from-palette($primary, if($is-dark, default, default-contrast));
|
|
1068
|
-
}
|
|
1069
|
-
|
|
1070
|
-
&.mat-accent {
|
|
1071
|
-
color: mat.get-color-from-palette($accent, if($is-dark, default-contrast, default));
|
|
1072
|
-
background-color: mat.get-color-from-palette($accent, if($is-dark, default, default-contrast));
|
|
1073
|
-
}
|
|
1074
|
-
}
|
|
1075
|
-
|
|
1076
|
-
}
|
|
1077
|
-
|
|
1078
|
-
@mixin igo-menu-button-theming($theme) {
|
|
1079
|
-
$primary: map-get($theme, primary);
|
|
1080
|
-
|
|
1081
|
-
igo-menu-button > #menu-button {
|
|
1082
|
-
color: mat.get-color-from-palette($primary);
|
|
1083
|
-
}
|
|
1084
|
-
|
|
1085
|
-
igo-menu-button > #menu-button.menu-button-reverse-color-close {
|
|
1086
|
-
background-color: mat.get-color-from-palette($primary);
|
|
1087
|
-
color: mat.get-color-from-palette($primary, default-contrast);
|
|
1088
|
-
}
|
|
1089
|
-
|
|
1090
|
-
igo-menu-button > #menu-button.menu-button-reverse-color {
|
|
1091
|
-
background-color: mat.get-color-from-palette($primary);
|
|
1092
|
-
color: mat.get-color-from-palette($primary, default-contrast);
|
|
1093
|
-
}
|
|
1094
|
-
}
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
@mixin igo-measure-theming($theme, $typography) {
|
|
1098
|
-
@include igo-measurer-theming($theme, $typography);
|
|
1099
|
-
}
|
|
1100
|
-
|
|
1101
|
-
@mixin igo-measurer-theming($theme, $typography) {
|
|
1102
|
-
$foreground: map-get($theme, foreground);
|
|
1103
|
-
|
|
1104
|
-
.igo-map-tooltip {
|
|
1105
|
-
position: relative;
|
|
1106
|
-
border-radius: 4px;
|
|
1107
|
-
padding: 4px 8px;
|
|
1108
|
-
white-space: nowrap;
|
|
1109
|
-
}
|
|
1110
|
-
|
|
1111
|
-
.igo-map-tooltip-measure {
|
|
1112
|
-
background-color: rgba(255, 204, 51, 0.7);
|
|
1113
|
-
border: 1px solid rgb(255, 205, 51);
|
|
1114
|
-
color: black;
|
|
1115
|
-
font-weight: bold;
|
|
1116
|
-
font-size: mat.font-size($typography, subheading-2);
|
|
1117
|
-
}
|
|
1118
|
-
.igo-map-tooltip-hidden {
|
|
1119
|
-
display: none;
|
|
1120
|
-
}
|
|
1121
|
-
.igo-map-tooltip-measure-by-display{
|
|
1122
|
-
display: none;
|
|
1123
|
-
}
|
|
1124
|
-
}
|
|
1125
|
-
|
|
1126
|
-
@mixin igo-workspace-theming($theme, $typography) {
|
|
1127
|
-
@include igo-confirmation-popup-theming($theme, $typography);
|
|
1128
|
-
}
|
|
1129
|
-
|
|
1130
|
-
@mixin igo-confirmation-popup-theming($theme, $typography) {
|
|
1131
|
-
$foreground: map-get($theme, foreground);
|
|
1132
|
-
|
|
1133
|
-
igo-confirmation-popup-component {
|
|
1134
|
-
h1 {
|
|
1135
|
-
font-size: mat.font-size($typography, display-1);
|
|
1136
|
-
font-family: Roboto, "Helvetica Neue", sans-serif;
|
|
1137
|
-
}
|
|
1138
|
-
}
|
|
1139
|
-
}
|
|
1140
|
-
|
|
1141
|
-
.blue-theme {
|
|
1142
|
-
$primary: mat.define-palette(mat.$blue-palette, 700, 400, 900);
|
|
1143
|
-
$accent: mat.define-palette(mat.$blue-palette, 200);
|
|
1144
|
-
$warn: mat.define-palette(mat.$red-palette);
|
|
1145
|
-
|
|
1146
|
-
$temp-theme: mat.define-light-theme((
|
|
1147
|
-
color: (
|
|
1148
|
-
primary: $primary,
|
|
1149
|
-
accent: $accent,
|
|
1150
|
-
warn: $warn
|
|
1151
|
-
)
|
|
1152
|
-
));
|
|
1153
|
-
|
|
1154
|
-
$foreground: theme-foreground(mat.define-palette(mat.$grey-palette, 900));
|
|
1155
|
-
$theme: map-merge($temp-theme, (foreground: $foreground));
|
|
1156
|
-
|
|
1157
|
-
@include igo-all-theming($theme);
|
|
1158
|
-
@include mat.all-component-colors($theme);
|
|
1159
|
-
}
|
|
1160
|
-
|
|
1161
|
-
.bluedark-theme {
|
|
1162
|
-
$bluedark-palette: (
|
|
1163
|
-
50 : #e3eaec,
|
|
1164
|
-
100 : #b9cad0,
|
|
1165
|
-
200 : #8ba7b1,
|
|
1166
|
-
300 : #5c8391,
|
|
1167
|
-
400 : #39697a,
|
|
1168
|
-
500 : #164e62,
|
|
1169
|
-
600 : #13475a,
|
|
1170
|
-
700 : #103d50,
|
|
1171
|
-
800 : #0c3546,
|
|
1172
|
-
900 : #062534,
|
|
1173
|
-
A100 : #6dc6ff,
|
|
1174
|
-
A200 : #3ab2ff,
|
|
1175
|
-
A400 : #079eff,
|
|
1176
|
-
A700 : #0090ec,
|
|
1177
|
-
contrast: (
|
|
1178
|
-
50 : #000000,
|
|
1179
|
-
100 : #000000,
|
|
1180
|
-
200 : #000000,
|
|
1181
|
-
300 : #ffffff,
|
|
1182
|
-
400 : #ffffff,
|
|
1183
|
-
500 : #ffffff,
|
|
1184
|
-
600 : #ffffff,
|
|
1185
|
-
700 : #ffffff,
|
|
1186
|
-
800 : #ffffff,
|
|
1187
|
-
900 : #ffffff,
|
|
1188
|
-
A100 : #000000,
|
|
1189
|
-
A200 : #000000,
|
|
1190
|
-
A400 : #ffffff,
|
|
1191
|
-
A700 : #ffffff,
|
|
1192
|
-
)
|
|
1193
|
-
);
|
|
1194
|
-
|
|
1195
|
-
$primary: mat.define-palette($bluedark-palette, 500);
|
|
1196
|
-
$accent: mat.define-palette($bluedark-palette, 200);
|
|
1197
|
-
$warn: mat.define-palette(mat.$red-palette);
|
|
1198
|
-
|
|
1199
|
-
$temp-theme: mat.define-light-theme((
|
|
1200
|
-
color: (
|
|
1201
|
-
primary: $primary,
|
|
1202
|
-
accent: $accent,
|
|
1203
|
-
warn: $warn
|
|
1204
|
-
)
|
|
1205
|
-
));
|
|
1206
|
-
|
|
1207
|
-
$foreground: theme-foreground(mat.define-palette(mat.$grey-palette, 900));
|
|
1208
|
-
$theme: map-merge($temp-theme, (foreground: $foreground));
|
|
1209
|
-
|
|
1210
|
-
@include igo-all-theming($theme);
|
|
1211
|
-
@include mat.all-component-colors($theme);
|
|
1212
|
-
}
|
|
1213
|
-
.bluedq-theme {
|
|
1214
|
-
$dq-palette: (
|
|
1215
|
-
50 : #e1f5fd,
|
|
1216
|
-
100 : #b4e5fb,
|
|
1217
|
-
200 : #82d4f8,
|
|
1218
|
-
300 : #53c3f4,
|
|
1219
|
-
400 : #31B6f2,
|
|
1220
|
-
500 : #0d81df,
|
|
1221
|
-
600 : #149Be1,
|
|
1222
|
-
700 : #1088cd,
|
|
1223
|
-
800 : #0F77B9,
|
|
1224
|
-
900 : #095797,
|
|
1225
|
-
A100 : #6dc6ff,
|
|
1226
|
-
A200 : #3ab2ff,
|
|
1227
|
-
A400 : #079eff,
|
|
1228
|
-
A700 : #0090ec,
|
|
1229
|
-
contrast: (
|
|
1230
|
-
50 : #000000,
|
|
1231
|
-
100 : #000000,
|
|
1232
|
-
200 : #000000,
|
|
1233
|
-
300 : #000000,
|
|
1234
|
-
400 : #000000,
|
|
1235
|
-
500 : #000000,
|
|
1236
|
-
600 : #ffffff,
|
|
1237
|
-
700 : #ffffff,
|
|
1238
|
-
800 : #ffffff,
|
|
1239
|
-
900 : #ffffff,
|
|
1240
|
-
A100 : #000000,
|
|
1241
|
-
A200 : #000000,
|
|
1242
|
-
A400 : #ffffff,
|
|
1243
|
-
A700 : #ffffff,
|
|
1244
|
-
)
|
|
1245
|
-
);
|
|
1246
|
-
|
|
1247
|
-
$primary: mat.define-palette($dq-palette, 900);
|
|
1248
|
-
$accent: mat.define-palette($dq-palette, 500);
|
|
1249
|
-
$warn: mat.define-palette(mat.$red-palette);
|
|
1250
|
-
|
|
1251
|
-
$temp-theme: mat.define-light-theme((
|
|
1252
|
-
color: (
|
|
1253
|
-
primary: $primary,
|
|
1254
|
-
accent: $accent,
|
|
1255
|
-
warn: $warn
|
|
1256
|
-
)
|
|
1257
|
-
));
|
|
1258
|
-
|
|
1259
|
-
$foreground: theme-foreground(mat.define-palette(mat.$grey-palette, 900));
|
|
1260
|
-
$theme: map-merge($temp-theme, (foreground: $foreground));
|
|
1261
|
-
|
|
1262
|
-
@include igo-all-theming($theme);
|
|
1263
|
-
@include mat.all-component-colors($theme);
|
|
1264
|
-
}
|
|
1265
|
-
|
|
1266
|
-
.bluegrey-theme {
|
|
1267
|
-
$primary: mat.define-palette(mat.$blue-grey-palette);
|
|
1268
|
-
$accent: mat.define-palette(mat.$pink-palette, A200, A100, A400);
|
|
1269
|
-
$warn: mat.define-palette(mat.$deep-orange-palette);
|
|
1270
|
-
|
|
1271
|
-
$theme: mat.define-light-theme((
|
|
1272
|
-
color: (
|
|
1273
|
-
primary: $primary,
|
|
1274
|
-
accent: $accent,
|
|
1275
|
-
warn: $warn
|
|
1276
|
-
)
|
|
1277
|
-
));
|
|
1278
|
-
|
|
1279
|
-
@include igo-all-theming($theme);
|
|
1280
|
-
@include mat.all-component-colors($theme);
|
|
1281
|
-
}
|
|
1282
|
-
|
|
1283
|
-
.deeppurple-theme {
|
|
1284
|
-
$primary: mat.define-palette(mat.$deep-purple-palette);
|
|
1285
|
-
$accent: mat.define-palette(mat.$amber-palette, A200, A100, A400);
|
|
1286
|
-
$warn: mat.define-palette(mat.$red-palette);
|
|
1287
|
-
|
|
1288
|
-
$theme: mat.define-light-theme((
|
|
1289
|
-
color: (
|
|
1290
|
-
primary: $primary,
|
|
1291
|
-
accent: $accent,
|
|
1292
|
-
warn: $warn
|
|
1293
|
-
)
|
|
1294
|
-
));
|
|
1295
|
-
|
|
1296
|
-
@include igo-all-theming($theme);
|
|
1297
|
-
@include mat.all-component-colors($theme);
|
|
1298
|
-
}
|
|
1299
|
-
|
|
1300
|
-
.indigo-theme {
|
|
1301
|
-
$primary: mat.define-palette(mat.$indigo-palette);
|
|
1302
|
-
$accent: mat.define-palette(mat.$pink-palette, A200, A100, A400);
|
|
1303
|
-
$warn: mat.define-palette(mat.$red-palette);
|
|
1304
|
-
|
|
1305
|
-
$theme: mat.define-light-theme((
|
|
1306
|
-
color: (
|
|
1307
|
-
primary: $primary,
|
|
1308
|
-
accent: $accent,
|
|
1309
|
-
warn: $warn
|
|
1310
|
-
)
|
|
1311
|
-
));
|
|
1312
|
-
|
|
1313
|
-
@include igo-all-theming($theme);
|
|
1314
|
-
@include mat.all-component-colors($theme);
|
|
1315
|
-
}
|
|
1316
|
-
|
|
1317
|
-
.orange-theme {
|
|
1318
|
-
$primary: mat.define-palette(mat.$orange-palette, 800);
|
|
1319
|
-
$accent: mat.define-palette(mat.$light-blue-palette, 600, 100, 800);
|
|
1320
|
-
$warn: mat.define-palette(mat.$red-palette, 600);
|
|
1321
|
-
|
|
1322
|
-
$theme: mat.define-light-theme((
|
|
1323
|
-
color: (
|
|
1324
|
-
primary: $primary,
|
|
1325
|
-
accent: $accent,
|
|
1326
|
-
warn: $warn
|
|
1327
|
-
)
|
|
1328
|
-
));
|
|
1329
|
-
|
|
1330
|
-
@include igo-all-theming($theme);
|
|
1331
|
-
@include mat.all-component-colors($theme);
|
|
1332
|
-
}
|
|
1333
|
-
|
|
1334
|
-
.dark-theme {
|
|
1335
|
-
$primary: mat.define-palette(mat.$blue-grey-palette);
|
|
1336
|
-
$accent: mat.define-palette(mat.$pink-palette, A200, A100, A400);
|
|
1337
|
-
$warn: mat.define-palette(mat.$deep-orange-palette);
|
|
1338
|
-
|
|
1339
|
-
$theme: mat.define-dark-theme((
|
|
1340
|
-
color: (
|
|
1341
|
-
primary: $primary,
|
|
1342
|
-
accent: $accent,
|
|
1343
|
-
warn: $warn
|
|
1344
|
-
)
|
|
1345
|
-
));
|
|
1346
|
-
|
|
1347
|
-
@include igo-all-theming($theme);
|
|
1348
|
-
@include mat.all-component-colors($theme);
|
|
1349
|
-
}
|
|
1350
|
-
|
|
1351
|
-
.teal-theme {
|
|
1352
|
-
$primary: mat.define-palette(mat.$teal-palette, 600, 400, 900);
|
|
1353
|
-
$accent: mat.define-palette(mat.$teal-palette, 400);
|
|
1354
|
-
$warn: mat.define-palette(mat.$red-palette);
|
|
1355
|
-
|
|
1356
|
-
$theme: mat.define-light-theme((
|
|
1357
|
-
color: (
|
|
1358
|
-
primary: $primary,
|
|
1359
|
-
accent: $accent,
|
|
1360
|
-
warn: $warn
|
|
1361
|
-
)
|
|
1362
|
-
));
|
|
1363
|
-
|
|
1364
|
-
@include igo-all-theming($theme);
|
|
1365
|
-
@include mat.all-component-colors($theme);
|
|
1366
|
-
}
|
|
1367
|
-
|
|
1368
|
-
.qcca-theme {
|
|
1369
|
-
$qcca-palette: (
|
|
1370
|
-
50: #f2f1f1,
|
|
1371
|
-
100: #dae6f0, //lighter ex: list on focus
|
|
1372
|
-
200: #dae6f0,
|
|
1373
|
-
300: #509FDF,
|
|
1374
|
-
400: #0D7DD9,
|
|
1375
|
-
500: #095797, //default
|
|
1376
|
-
600: #0A60A6,
|
|
1377
|
-
700: #223654, // darker
|
|
1378
|
-
800: #cb381f,
|
|
1379
|
-
900: #4f813d,
|
|
1380
|
-
A100: #1479cc,
|
|
1381
|
-
A200: #1479cc,
|
|
1382
|
-
A400: #dae6f0,
|
|
1383
|
-
A700: #f2f1f1,
|
|
1384
|
-
contrast: (
|
|
1385
|
-
50: #223654,
|
|
1386
|
-
100: #223654,
|
|
1387
|
-
200: #223654,
|
|
1388
|
-
300: #fff,
|
|
1389
|
-
400: #fff,
|
|
1390
|
-
500: #fff,
|
|
1391
|
-
600: #fff,
|
|
1392
|
-
700: #fff,
|
|
1393
|
-
800: #fff,
|
|
1394
|
-
900: #fff,
|
|
1395
|
-
A100: #fff,
|
|
1396
|
-
A200: #fff,
|
|
1397
|
-
A400: #223654,
|
|
1398
|
-
A700: #223654,
|
|
1399
|
-
)
|
|
1400
|
-
);
|
|
1401
|
-
|
|
1402
|
-
$primary: mat.define-palette($qcca-palette, 500, 400, 700);
|
|
1403
|
-
$accent: mat.define-palette($qcca-palette, 400, 100, 700);
|
|
1404
|
-
$warn: mat.define-palette($qcca-palette, 800);
|
|
1405
|
-
$success: mat.define-palette($qcca-palette, 900);
|
|
1406
|
-
$background: mat.define-palette($qcca-palette, 100, 100, 100);
|
|
1407
|
-
$foreground: mat.define-palette($qcca-palette, 700, 700, 700);
|
|
1408
|
-
|
|
1409
|
-
$temp-theme: mat.define-light-theme((
|
|
1410
|
-
color: (
|
|
1411
|
-
primary: $primary,
|
|
1412
|
-
accent: $accent,
|
|
1413
|
-
warn: $warn,
|
|
1414
|
-
success: $success,
|
|
1415
|
-
background: $background
|
|
1416
|
-
)
|
|
1417
|
-
));
|
|
1418
|
-
|
|
1419
|
-
$theme-foreground: (
|
|
1420
|
-
base: #223654,
|
|
1421
|
-
divider: #f2f1f1,
|
|
1422
|
-
dividers: #f2f1f1,
|
|
1423
|
-
disabled: #f2f1f1,
|
|
1424
|
-
disabled-button: #f2f1f1,
|
|
1425
|
-
disabled-text: #f2f1f1,
|
|
1426
|
-
hint-text: #f2f1f1,
|
|
1427
|
-
secondary-text: #f2f1f1,
|
|
1428
|
-
icon: #f2f1f1,
|
|
1429
|
-
icons: #f2f1f1,
|
|
1430
|
-
text: #223654,
|
|
1431
|
-
slider-min: #f2f1f1,
|
|
1432
|
-
slider-off: #f2f1f1,
|
|
1433
|
-
slider-off-active: #f2f1f1,
|
|
1434
|
-
);
|
|
1435
|
-
|
|
1436
|
-
$foreground: theme-foreground(mat.define-palette($qcca-palette, 500, 100, 700));
|
|
1437
|
-
$theme: map-merge($temp-theme, (foreground: $foreground));
|
|
1438
|
-
|
|
1439
|
-
@include mat.core($theme);
|
|
1440
|
-
@include igo-all-theming($theme);
|
|
1441
|
-
@include mat.all-component-colors($theme);
|
|
1442
|
-
@include mat.strong-focus-indicators-theme($theme);
|
|
1443
|
-
}
|
|
1444
|
-
|
|
1445
|
-
//
|
|
1446
|
-
// Plus imports for other components in your app.
|
|
1447
|
-
|
|
1448
|
-
// Include the common styles for Angular Material. We include this here so that you only
|
|
1449
|
-
// have to load a single css file for Angular Material in your app.
|
|
1450
|
-
// Be sure that you only ever include this mixin once!
|
|
1451
|
-
//@include mat-core();
|
|
1452
|
-
|
|
1453
|
-
// Define the palettes for your theme using the Material Design palettes available in palette.scss
|
|
1454
|
-
// (imported above). For each palette, you can optionally specify a default, lighter, and darker
|
|
1455
|
-
// hue. Available color palettes: https://material.io/design/color/
|
|
1456
|
-
|
|
1457
|
-
// Include theme styles for core and each component used in your app.
|
|
1458
|
-
// Alternatively, you can import and @include the theme mixins for each component
|
|
1459
|
-
// that you are using.
|
|
1460
|
-
//@include angular-material-theme($theme);
|
|
1461
|
-
|
|
1462
|
-
/* For the non-Angular Material items */
|
|
1463
|
-
body {
|
|
1464
|
-
color: #223654;
|
|
1465
|
-
}
|