@igo2/core 16.3.0 → 17.0.0-next.2
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/activity/index.d.ts +5 -0
- package/{lib/activity/index.d.ts → activity/public_api.d.ts} +1 -0
- package/{lib/analytics/shared → analytics}/analytics.interface.d.ts +1 -1
- package/{lib/analytics/shared → analytics}/analytics.service.d.ts +1 -1
- package/analytics/index.d.ts +5 -0
- package/{lib/config → config}/config.interface.d.ts +2 -3
- package/{lib/config → config}/config.provider.d.ts +1 -1
- package/{lib/config → config}/config.service.d.ts +1 -1
- package/config/index.d.ts +5 -0
- package/{lib/config/index.d.ts → config/public_api.d.ts} +2 -0
- package/environment/environment.interface.d.ts +16 -0
- package/environment/index.d.ts +5 -0
- package/esm2022/activity/activity.interceptor.mjs +32 -0
- package/esm2022/activity/activity.module.mjs +30 -0
- package/esm2022/activity/activity.service.mjs +32 -0
- package/esm2022/activity/igo2-core-activity.mjs +5 -0
- package/esm2022/activity/public_api.mjs +4 -0
- package/esm2022/analytics/analytics.interface.mjs +2 -0
- package/esm2022/analytics/analytics.service.mjs +87 -0
- package/esm2022/analytics/igo2-core-analytics.mjs +5 -0
- package/esm2022/analytics/public_api.mjs +3 -0
- package/esm2022/config/config-deprecated.mjs +27 -0
- package/esm2022/config/config.interface.mjs +2 -0
- package/esm2022/config/config.module.mjs +23 -0
- package/esm2022/config/config.provider.mjs +21 -0
- package/esm2022/config/config.service.mjs +97 -0
- package/esm2022/config/igo2-core-config.mjs +5 -0
- package/esm2022/config/public_api.mjs +6 -0
- package/esm2022/config/version.mjs +5 -0
- package/esm2022/environment/environment.interface.mjs +2 -0
- package/esm2022/environment/igo2-core-environment.mjs +5 -0
- package/esm2022/environment/public_api.mjs +2 -0
- package/esm2022/gesture/gesture.module.mjs +29 -0
- package/esm2022/gesture/gesture.provider.mjs +16 -0
- package/esm2022/gesture/igo2-core-gesture.mjs +5 -0
- package/esm2022/gesture/public_api.mjs +3 -0
- package/esm2022/language/igo2-core-language.mjs +5 -0
- package/esm2022/language/language.module.mjs +15 -0
- package/esm2022/language/public_api.mjs +3 -0
- package/esm2022/language/shared/index.mjs +7 -0
- package/esm2022/language/shared/language-mock.provider.mjs +5 -0
- package/esm2022/language/shared/language.interface.mjs +3 -0
- package/esm2022/language/shared/language.loader.mjs +38 -0
- package/esm2022/language/shared/language.provider.mjs +41 -0
- package/esm2022/language/shared/language.service.mjs +38 -0
- package/esm2022/language/shared/missing-translation.guard.mjs +16 -0
- package/esm2022/lib/core.module.mjs +19 -22
- package/esm2022/media/igo2-core-media.mjs +5 -0
- package/esm2022/media/media.enum.mjs +12 -0
- package/esm2022/media/media.service.mjs +82 -0
- package/esm2022/media/public_api.mjs +3 -0
- package/esm2022/message/igo2-core-message.mjs +5 -0
- package/esm2022/message/message.module.mjs +56 -0
- package/esm2022/message/public_api.mjs +3 -0
- package/esm2022/message/shared/index.mjs +4 -0
- package/esm2022/message/shared/message.enum.mjs +10 -0
- package/esm2022/message/shared/message.interface.mjs +2 -0
- package/esm2022/message/shared/message.service.mjs +225 -0
- package/esm2022/monitoring/__mocks__/index.mjs +2 -0
- package/esm2022/monitoring/__mocks__/monitoring-mock.mjs +7 -0
- package/esm2022/monitoring/igo2-core-monitoring.mjs +5 -0
- package/esm2022/monitoring/monitoring.provider.mjs +20 -0
- package/esm2022/monitoring/public_api.mjs +5 -0
- package/esm2022/monitoring/sentry/index.mjs +4 -0
- package/esm2022/monitoring/sentry/sentry.interface.mjs +2 -0
- package/esm2022/monitoring/sentry/sentry.mjs +29 -0
- package/esm2022/monitoring/sentry/sentry.provider.mjs +31 -0
- package/esm2022/monitoring/sentry/sentry.utils.mjs +14 -0
- package/esm2022/monitoring/shared/any-monitoring.interface.mjs +2 -0
- package/esm2022/monitoring/shared/index.mjs +3 -0
- package/esm2022/monitoring/shared/monitoring.interface.mjs +2 -0
- package/esm2022/network/igo2-core-network.mjs +5 -0
- package/esm2022/network/network.interfaces.mjs +2 -0
- package/esm2022/network/network.service.mjs +66 -0
- package/esm2022/network/public_api.mjs +3 -0
- package/esm2022/public_api.mjs +3 -27
- package/esm2022/regex/igo2-core-regex.mjs +5 -0
- package/esm2022/regex/public_api.mjs +3 -0
- package/esm2022/regex/regex.interface.mjs +2 -0
- package/esm2022/regex/regex.service.mjs +30 -0
- package/esm2022/request/error.interceptor.mjs +72 -0
- package/esm2022/request/error.module.mjs +39 -0
- package/esm2022/request/igo2-core-request.mjs +5 -0
- package/esm2022/request/logging.interceptor.mjs +29 -0
- package/esm2022/request/logging.module.mjs +30 -0
- package/esm2022/request/public_api.mjs +5 -0
- package/esm2022/route/igo2-core-route.mjs +5 -0
- package/esm2022/route/public_api.mjs +3 -0
- package/esm2022/route/route.interface.mjs +2 -0
- package/esm2022/route/route.service.mjs +75 -0
- package/esm2022/storage/igo2-core-storage.mjs +5 -0
- package/esm2022/storage/public_api.mjs +4 -0
- package/esm2022/storage/storage.interface.mjs +13 -0
- package/esm2022/storage/storage.mjs +76 -0
- package/esm2022/storage/storage.service.mjs +21 -0
- package/esm2022/user/igo2-core-user.mjs +5 -0
- package/esm2022/user/public_api.mjs +2 -0
- package/esm2022/user/user.interface.mjs +2 -0
- package/fesm2022/igo2-core-activity.mjs +94 -0
- package/fesm2022/igo2-core-activity.mjs.map +1 -0
- package/fesm2022/igo2-core-analytics.mjs +93 -0
- package/fesm2022/igo2-core-analytics.mjs.map +1 -0
- package/fesm2022/igo2-core-config.mjs +173 -0
- package/fesm2022/igo2-core-config.mjs.map +1 -0
- package/fesm2022/igo2-core-environment.mjs +4 -0
- package/fesm2022/igo2-core-environment.mjs.map +1 -0
- package/fesm2022/igo2-core-gesture.mjs +48 -0
- package/fesm2022/igo2-core-gesture.mjs.map +1 -0
- package/fesm2022/igo2-core-language.mjs +151 -0
- package/fesm2022/igo2-core-language.mjs.map +1 -0
- package/fesm2022/igo2-core-media.mjs +100 -0
- package/fesm2022/igo2-core-media.mjs.map +1 -0
- package/fesm2022/igo2-core-message.mjs +292 -0
- package/fesm2022/igo2-core-message.mjs.map +1 -0
- package/fesm2022/igo2-core-monitoring.mjs +101 -0
- package/fesm2022/igo2-core-monitoring.mjs.map +1 -0
- package/fesm2022/igo2-core-network.mjs +72 -0
- package/fesm2022/igo2-core-network.mjs.map +1 -0
- package/fesm2022/igo2-core-regex.mjs +36 -0
- package/fesm2022/igo2-core-regex.mjs.map +1 -0
- package/fesm2022/igo2-core-request.mjs +164 -0
- package/fesm2022/igo2-core-request.mjs.map +1 -0
- package/fesm2022/igo2-core-route.mjs +81 -0
- package/fesm2022/igo2-core-route.mjs.map +1 -0
- package/fesm2022/igo2-core-storage.mjs +114 -0
- package/fesm2022/igo2-core-storage.mjs.map +1 -0
- package/fesm2022/igo2-core-user.mjs +4 -0
- package/fesm2022/igo2-core-user.mjs.map +1 -0
- package/fesm2022/igo2-core.mjs +24 -1515
- package/fesm2022/igo2-core.mjs.map +1 -1
- package/gesture/index.d.ts +5 -0
- package/gesture/public_api.d.ts +2 -0
- package/language/index.d.ts +5 -0
- package/{lib/language → language}/language.module.d.ts +1 -3
- package/language/public_api.d.ts +2 -0
- package/{lib/language → language}/shared/index.d.ts +2 -0
- package/language/shared/language-mock.provider.d.ts +2 -0
- package/language/shared/language.interface.d.ts +9 -0
- package/language/shared/language.loader.d.ts +13 -0
- package/language/shared/language.provider.d.ts +8 -0
- package/lib/core.module.d.ts +7 -7
- package/locale/en.json +1 -1
- package/locale/fr.json +1 -1
- package/media/index.d.ts +5 -0
- package/message/index.d.ts +5 -0
- package/{lib/message → message}/message.module.d.ts +2 -3
- package/message/public_api.d.ts +2 -0
- package/{lib/message → message}/shared/message.enum.d.ts +1 -1
- package/{lib/message → message}/shared/message.service.d.ts +2 -2
- package/monitoring/__mocks__/index.d.ts +1 -0
- package/monitoring/__mocks__/monitoring-mock.d.ts +4 -0
- package/monitoring/index.d.ts +5 -0
- package/{lib/monitoring/index.d.ts → monitoring/public_api.d.ts} +1 -0
- package/{lib/monitoring → monitoring}/sentry/sentry.utils.d.ts +1 -1
- package/monitoring/shared/any-monitoring.interface.d.ts +2 -0
- package/network/index.d.ts +5 -0
- package/{lib/network → network}/network.service.d.ts +1 -1
- package/package.json +99 -9
- package/public_api.d.ts +1 -26
- package/regex/index.d.ts +5 -0
- package/{lib/regex → regex}/regex.service.d.ts +1 -1
- package/{lib/request → request}/error.interceptor.d.ts +1 -1
- package/request/index.d.ts +5 -0
- package/{lib/request/index.d.ts → request/public_api.d.ts} +2 -0
- package/route/index.d.ts +5 -0
- package/route/public_api.d.ts +2 -0
- package/src/core-theme.scss +1 -1
- package/src/packages.import.scss +1 -0
- package/src/style/partial/media.scss +80 -80
- package/src/theming/all-theme.scss +1 -0
- package/storage/index.d.ts +5 -0
- package/{lib/storage → storage}/storage.d.ts +1 -1
- package/{lib/storage → storage}/storage.service.d.ts +1 -1
- package/theming/prebuilt-themes/blue-theme.css +857 -994
- package/theming/prebuilt-themes/bluedark-theme.css +857 -994
- package/theming/prebuilt-themes/bluedq-theme.css +857 -994
- package/theming/prebuilt-themes/bluegrey-theme.css +857 -994
- package/theming/prebuilt-themes/dark-theme.css +857 -1001
- package/theming/prebuilt-themes/deeppurple-theme.css +857 -994
- package/theming/prebuilt-themes/indigo-theme.css +857 -994
- package/theming/prebuilt-themes/orange-theme.css +857 -994
- package/theming/prebuilt-themes/teal-theme.css +857 -994
- package/user/index.d.ts +5 -0
- package/esm2022/lib/activity/activity.interceptor.mjs +0 -32
- package/esm2022/lib/activity/activity.module.mjs +0 -30
- package/esm2022/lib/activity/activity.service.mjs +0 -32
- package/esm2022/lib/activity/index.mjs +0 -3
- package/esm2022/lib/analytics/index.mjs +0 -2
- package/esm2022/lib/analytics/shared/analytics.interface.mjs +0 -2
- package/esm2022/lib/analytics/shared/analytics.service.mjs +0 -87
- package/esm2022/lib/analytics/shared/index.mjs +0 -3
- package/esm2022/lib/compression/compressedData.interface.mjs +0 -2
- package/esm2022/lib/compression/compression.service.mjs +0 -142
- package/esm2022/lib/compression/index.mjs +0 -3
- package/esm2022/lib/config/config-deprecated.mjs +0 -27
- package/esm2022/lib/config/config.interface.mjs +0 -2
- package/esm2022/lib/config/config.module.mjs +0 -23
- package/esm2022/lib/config/config.provider.mjs +0 -21
- package/esm2022/lib/config/config.service.mjs +0 -97
- package/esm2022/lib/config/index.mjs +0 -4
- package/esm2022/lib/config/version.mjs +0 -5
- package/esm2022/lib/environment/environment.interface.mjs +0 -2
- package/esm2022/lib/environment/index.mjs +0 -2
- package/esm2022/lib/gesture/gesture.module.mjs +0 -29
- package/esm2022/lib/gesture/gesture.provider.mjs +0 -16
- package/esm2022/lib/language/index.mjs +0 -2
- package/esm2022/lib/language/language.module.mjs +0 -38
- package/esm2022/lib/language/shared/index.mjs +0 -5
- package/esm2022/lib/language/shared/language.interface.mjs +0 -2
- package/esm2022/lib/language/shared/language.loader.mjs +0 -31
- package/esm2022/lib/language/shared/language.provider.mjs +0 -22
- package/esm2022/lib/language/shared/language.service.mjs +0 -38
- package/esm2022/lib/language/shared/missing-translation.guard.mjs +0 -16
- package/esm2022/lib/media/index.mjs +0 -3
- package/esm2022/lib/media/media.enum.mjs +0 -12
- package/esm2022/lib/media/media.service.mjs +0 -82
- package/esm2022/lib/message/index.mjs +0 -2
- package/esm2022/lib/message/message.module.mjs +0 -59
- package/esm2022/lib/message/shared/index.mjs +0 -4
- package/esm2022/lib/message/shared/message.enum.mjs +0 -10
- package/esm2022/lib/message/shared/message.interface.mjs +0 -2
- package/esm2022/lib/message/shared/message.service.mjs +0 -224
- package/esm2022/lib/monitoring/index.mjs +0 -4
- package/esm2022/lib/monitoring/monitoring.provider.mjs +0 -20
- package/esm2022/lib/monitoring/sentry/index.mjs +0 -4
- package/esm2022/lib/monitoring/sentry/sentry.interface.mjs +0 -2
- package/esm2022/lib/monitoring/sentry/sentry.mjs +0 -29
- package/esm2022/lib/monitoring/sentry/sentry.provider.mjs +0 -31
- package/esm2022/lib/monitoring/sentry/sentry.utils.mjs +0 -12
- package/esm2022/lib/monitoring/shared/any-monitoring.interface.mjs +0 -2
- package/esm2022/lib/monitoring/shared/index.mjs +0 -3
- package/esm2022/lib/monitoring/shared/monitoring.interface.mjs +0 -2
- package/esm2022/lib/network/index.mjs +0 -3
- package/esm2022/lib/network/network.interfaces.mjs +0 -2
- package/esm2022/lib/network/network.service.mjs +0 -66
- package/esm2022/lib/regex/index.mjs +0 -3
- package/esm2022/lib/regex/regex.interface.mjs +0 -2
- package/esm2022/lib/regex/regex.service.mjs +0 -30
- package/esm2022/lib/request/error.interceptor.mjs +0 -72
- package/esm2022/lib/request/error.module.mjs +0 -39
- package/esm2022/lib/request/index.mjs +0 -3
- package/esm2022/lib/request/logging.interceptor.mjs +0 -29
- package/esm2022/lib/request/logging.module.mjs +0 -30
- package/esm2022/lib/route/route.interface.mjs +0 -2
- package/esm2022/lib/route/route.service.mjs +0 -75
- package/esm2022/lib/storage/index.mjs +0 -4
- package/esm2022/lib/storage/storage.interface.mjs +0 -13
- package/esm2022/lib/storage/storage.mjs +0 -76
- package/esm2022/lib/storage/storage.service.mjs +0 -21
- package/esm2022/lib/user/index.mjs +0 -2
- package/esm2022/lib/user/user.interface.mjs +0 -2
- package/lib/analytics/index.d.ts +0 -1
- package/lib/compression/compressedData.interface.d.ts +0 -5
- package/lib/compression/compression.service.d.ts +0 -15
- package/lib/compression/index.d.ts +0 -2
- package/lib/environment/environment.interface.d.ts +0 -18
- package/lib/language/index.d.ts +0 -1
- package/lib/language/shared/language.interface.d.ts +0 -3
- package/lib/language/shared/language.loader.d.ts +0 -11
- package/lib/language/shared/language.provider.d.ts +0 -15
- package/lib/message/index.d.ts +0 -1
- package/lib/monitoring/shared/any-monitoring.interface.d.ts +0 -2
- package/{lib/activity → activity}/activity.interceptor.d.ts +0 -0
- package/{lib/activity → activity}/activity.module.d.ts +0 -0
- package/{lib/activity → activity}/activity.service.d.ts +0 -0
- package/{lib/analytics/shared/index.d.ts → analytics/public_api.d.ts} +1 -1
- /package/{lib/config → config}/config-deprecated.d.ts +0 -0
- /package/{lib/config → config}/config.module.d.ts +0 -0
- /package/{lib/config → config}/version.d.ts +0 -0
- /package/{lib/environment/index.d.ts → environment/public_api.d.ts} +0 -0
- /package/{lib/gesture → gesture}/gesture.module.d.ts +0 -0
- /package/{lib/gesture → gesture}/gesture.provider.d.ts +0 -0
- /package/{lib/language → language}/shared/language.service.d.ts +0 -0
- /package/{lib/language → language}/shared/missing-translation.guard.d.ts +0 -0
- /package/{lib/media → media}/media.enum.d.ts +0 -0
- /package/{lib/media → media}/media.service.d.ts +0 -0
- /package/{lib/media/index.d.ts → media/public_api.d.ts} +0 -0
- /package/{lib/message → message}/shared/index.d.ts +0 -0
- /package/{lib/message → message}/shared/message.interface.d.ts +0 -0
- /package/{src/lib/message → message/src}/message.theming.scss +0 -0
- /package/{lib/monitoring → monitoring}/monitoring.provider.d.ts +0 -0
- /package/{lib/monitoring → monitoring}/sentry/index.d.ts +0 -0
- /package/{lib/monitoring → monitoring}/sentry/sentry.d.ts +0 -0
- /package/{lib/monitoring → monitoring}/sentry/sentry.interface.d.ts +0 -0
- /package/{lib/monitoring → monitoring}/sentry/sentry.provider.d.ts +0 -0
- /package/{lib/monitoring → monitoring}/shared/index.d.ts +0 -0
- /package/{lib/monitoring → monitoring}/shared/monitoring.interface.d.ts +0 -0
- /package/{lib/network → network}/network.interfaces.d.ts +0 -0
- /package/{lib/network/index.d.ts → network/public_api.d.ts} +0 -0
- /package/{lib/regex/index.d.ts → regex/public_api.d.ts} +0 -0
- /package/{lib/regex → regex}/regex.interface.d.ts +0 -0
- /package/{lib/request → request}/error.module.d.ts +0 -0
- /package/{lib/request → request}/logging.interceptor.d.ts +0 -0
- /package/{lib/request → request}/logging.module.d.ts +0 -0
- /package/{lib/route → route}/route.interface.d.ts +0 -0
- /package/{lib/route → route}/route.service.d.ts +0 -0
- /package/{lib/storage/index.d.ts → storage/public_api.d.ts} +0 -0
- /package/{lib/storage → storage}/storage.interface.d.ts +0 -0
- /package/{lib/user/index.d.ts → user/public_api.d.ts} +0 -0
- /package/{lib/user → user}/user.interface.d.ts +0 -0
|
@@ -22,6 +22,7 @@ h4 {
|
|
|
22
22
|
pointer-events: none;
|
|
23
23
|
transition: opacity, transform 0ms cubic-bezier(0, 0, 0.2, 1);
|
|
24
24
|
transform: scale3d(0, 0, 0);
|
|
25
|
+
background-color: var(--mat-ripple-color, rgba(0, 0, 0, 0.1));
|
|
25
26
|
}
|
|
26
27
|
.cdk-high-contrast-active .mat-ripple-element {
|
|
27
28
|
display: none;
|
|
@@ -204,15 +205,17 @@ textarea.cdk-textarea-autosize-measuring-firefox {
|
|
|
204
205
|
--mat-mdc-focus-indicator-display: block;
|
|
205
206
|
}
|
|
206
207
|
|
|
208
|
+
.mat-app-background {
|
|
209
|
+
background-color: var(--mat-app-background-color, transparent);
|
|
210
|
+
color: var(--mat-app-text-color, inherit);
|
|
211
|
+
}
|
|
212
|
+
|
|
207
213
|
.mat-h1,
|
|
208
214
|
.mat-headline-5,
|
|
209
215
|
.mat-typography .mat-h1,
|
|
210
216
|
.mat-typography .mat-headline-5,
|
|
211
217
|
.mat-typography h1 {
|
|
212
|
-
font
|
|
213
|
-
font-weight: 400;
|
|
214
|
-
line-height: 32px;
|
|
215
|
-
font-family: Roboto, sans-serif;
|
|
218
|
+
font: 400 24px / 32px Roboto, sans-serif;
|
|
216
219
|
letter-spacing: normal;
|
|
217
220
|
margin: 0 0 16px;
|
|
218
221
|
}
|
|
@@ -222,10 +225,7 @@ textarea.cdk-textarea-autosize-measuring-firefox {
|
|
|
222
225
|
.mat-typography .mat-h2,
|
|
223
226
|
.mat-typography .mat-headline-6,
|
|
224
227
|
.mat-typography h2 {
|
|
225
|
-
font
|
|
226
|
-
font-weight: 400;
|
|
227
|
-
line-height: 30px;
|
|
228
|
-
font-family: Roboto, sans-serif;
|
|
228
|
+
font: 400 20px / 30px Roboto, sans-serif;
|
|
229
229
|
letter-spacing: normal;
|
|
230
230
|
margin: 0 0 16px;
|
|
231
231
|
}
|
|
@@ -235,10 +235,7 @@ textarea.cdk-textarea-autosize-measuring-firefox {
|
|
|
235
235
|
.mat-typography .mat-h3,
|
|
236
236
|
.mat-typography .mat-subtitle-1,
|
|
237
237
|
.mat-typography h3 {
|
|
238
|
-
font
|
|
239
|
-
font-weight: 500;
|
|
240
|
-
line-height: 26px;
|
|
241
|
-
font-family: Roboto, sans-serif;
|
|
238
|
+
font: 500 16px / 26px Roboto, sans-serif;
|
|
242
239
|
letter-spacing: normal;
|
|
243
240
|
margin: 0 0 16px;
|
|
244
241
|
}
|
|
@@ -248,10 +245,7 @@ textarea.cdk-textarea-autosize-measuring-firefox {
|
|
|
248
245
|
.mat-typography .mat-h4,
|
|
249
246
|
.mat-typography .mat-body-1,
|
|
250
247
|
.mat-typography h4 {
|
|
251
|
-
font
|
|
252
|
-
font-weight: 400;
|
|
253
|
-
line-height: 22px;
|
|
254
|
-
font-family: Roboto, sans-serif;
|
|
248
|
+
font: 400 14px / 22px Roboto, sans-serif;
|
|
255
249
|
letter-spacing: normal;
|
|
256
250
|
margin: 0 0 16px;
|
|
257
251
|
}
|
|
@@ -274,10 +268,7 @@ textarea.cdk-textarea-autosize-measuring-firefox {
|
|
|
274
268
|
.mat-subtitle-2,
|
|
275
269
|
.mat-typography .mat-body-strong,
|
|
276
270
|
.mat-typography .mat-subtitle-2 {
|
|
277
|
-
font
|
|
278
|
-
font-weight: 500;
|
|
279
|
-
line-height: 22px;
|
|
280
|
-
font-family: Roboto, sans-serif;
|
|
271
|
+
font: 500 12px / 22px Roboto, sans-serif;
|
|
281
272
|
letter-spacing: normal;
|
|
282
273
|
}
|
|
283
274
|
|
|
@@ -286,10 +277,7 @@ textarea.cdk-textarea-autosize-measuring-firefox {
|
|
|
286
277
|
.mat-typography .mat-body,
|
|
287
278
|
.mat-typography .mat-body-2,
|
|
288
279
|
.mat-typography {
|
|
289
|
-
font
|
|
290
|
-
font-weight: 400;
|
|
291
|
-
line-height: 18px;
|
|
292
|
-
font-family: Roboto, sans-serif;
|
|
280
|
+
font: 400 12px / 18px Roboto, sans-serif;
|
|
293
281
|
letter-spacing: normal;
|
|
294
282
|
}
|
|
295
283
|
.mat-body p,
|
|
@@ -304,55 +292,40 @@ textarea.cdk-textarea-autosize-measuring-firefox {
|
|
|
304
292
|
.mat-caption,
|
|
305
293
|
.mat-typography .mat-small,
|
|
306
294
|
.mat-typography .mat-caption {
|
|
307
|
-
font
|
|
308
|
-
font-weight: 400;
|
|
309
|
-
line-height: 18px;
|
|
310
|
-
font-family: Roboto, sans-serif;
|
|
295
|
+
font: 400 12px / 18px Roboto, sans-serif;
|
|
311
296
|
letter-spacing: normal;
|
|
312
297
|
}
|
|
313
298
|
|
|
314
299
|
.mat-headline-1,
|
|
315
300
|
.mat-typography .mat-headline-1 {
|
|
316
|
-
font
|
|
317
|
-
font-weight: 500;
|
|
318
|
-
line-height: 110px;
|
|
319
|
-
font-family: Roboto, sans-serif;
|
|
301
|
+
font: 500 110px / 110px Roboto, sans-serif;
|
|
320
302
|
letter-spacing: normal;
|
|
321
303
|
margin: 0 0 56px;
|
|
322
304
|
}
|
|
323
305
|
|
|
324
306
|
.mat-headline-2,
|
|
325
307
|
.mat-typography .mat-headline-2 {
|
|
326
|
-
font
|
|
327
|
-
font-weight: 500;
|
|
328
|
-
line-height: 54px;
|
|
329
|
-
font-family: Roboto, sans-serif;
|
|
308
|
+
font: 500 54px / 54px Roboto, sans-serif;
|
|
330
309
|
letter-spacing: normal;
|
|
331
310
|
margin: 0 0 64px;
|
|
332
311
|
}
|
|
333
312
|
|
|
334
313
|
.mat-headline-3,
|
|
335
314
|
.mat-typography .mat-headline-3 {
|
|
336
|
-
font
|
|
337
|
-
font-weight: 500;
|
|
338
|
-
line-height: 46px;
|
|
339
|
-
font-family: Roboto, sans-serif;
|
|
315
|
+
font: 500 43px / 46px Roboto, sans-serif;
|
|
340
316
|
letter-spacing: normal;
|
|
341
317
|
margin: 0 0 64px;
|
|
342
318
|
}
|
|
343
319
|
|
|
344
320
|
.mat-headline-4,
|
|
345
321
|
.mat-typography .mat-headline-4 {
|
|
346
|
-
font
|
|
347
|
-
font-weight: 500;
|
|
348
|
-
line-height: 38px;
|
|
349
|
-
font-family: Roboto, sans-serif;
|
|
322
|
+
font: 500 32px / 38px Roboto, sans-serif;
|
|
350
323
|
letter-spacing: normal;
|
|
351
324
|
margin: 0 0 64px;
|
|
352
325
|
}
|
|
353
326
|
|
|
354
|
-
|
|
355
|
-
|
|
327
|
+
html {
|
|
328
|
+
--mat-ripple-color: rgba(0, 0, 0, 0.1);
|
|
356
329
|
}
|
|
357
330
|
|
|
358
331
|
html {
|
|
@@ -365,87 +338,71 @@ html {
|
|
|
365
338
|
|
|
366
339
|
.mat-accent {
|
|
367
340
|
--mat-option-selected-state-label-text-color: #8ba7b1;
|
|
341
|
+
--mat-option-label-text-color: rgba(0, 0, 0, 0.87);
|
|
342
|
+
--mat-option-hover-state-layer-color: rgba(0, 0, 0, 0.04);
|
|
343
|
+
--mat-option-focus-state-layer-color: rgba(0, 0, 0, 0.04);
|
|
344
|
+
--mat-option-selected-state-layer-color: rgba(0, 0, 0, 0.04);
|
|
368
345
|
}
|
|
369
346
|
|
|
370
347
|
.mat-warn {
|
|
371
348
|
--mat-option-selected-state-label-text-color: #f44336;
|
|
349
|
+
--mat-option-label-text-color: rgba(0, 0, 0, 0.87);
|
|
350
|
+
--mat-option-hover-state-layer-color: rgba(0, 0, 0, 0.04);
|
|
351
|
+
--mat-option-focus-state-layer-color: rgba(0, 0, 0, 0.04);
|
|
352
|
+
--mat-option-selected-state-layer-color: rgba(0, 0, 0, 0.04);
|
|
372
353
|
}
|
|
373
354
|
|
|
374
355
|
html {
|
|
375
356
|
--mat-optgroup-label-text-color: rgba(0, 0, 0, 0.87);
|
|
376
357
|
}
|
|
377
358
|
|
|
378
|
-
.mat-
|
|
379
|
-
color:
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
color: #
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
color: #164e62;
|
|
388
|
-
}
|
|
389
|
-
.mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
|
|
390
|
-
.mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
|
|
391
|
-
background: #164e62;
|
|
392
|
-
}
|
|
393
|
-
.mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
|
|
394
|
-
.mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
|
|
395
|
-
color: #fafafa;
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
|
|
399
|
-
.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
|
|
400
|
-
color: #8ba7b1;
|
|
401
|
-
}
|
|
402
|
-
.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,
|
|
403
|
-
.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full {
|
|
404
|
-
background: #8ba7b1;
|
|
405
|
-
}
|
|
406
|
-
.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full::after,
|
|
407
|
-
.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
|
|
408
|
-
color: #fafafa;
|
|
359
|
+
.mat-primary {
|
|
360
|
+
--mat-full-pseudo-checkbox-selected-icon-color: #164e62;
|
|
361
|
+
--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
|
|
362
|
+
--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
|
|
363
|
+
--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
|
|
364
|
+
--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
|
|
365
|
+
--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
|
|
366
|
+
--mat-minimal-pseudo-checkbox-selected-checkmark-color: #164e62;
|
|
367
|
+
--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
|
|
409
368
|
}
|
|
410
369
|
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
color: #
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
.mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
|
|
421
|
-
color: #fafafa;
|
|
370
|
+
html {
|
|
371
|
+
--mat-full-pseudo-checkbox-selected-icon-color: #8ba7b1;
|
|
372
|
+
--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
|
|
373
|
+
--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
|
|
374
|
+
--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
|
|
375
|
+
--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
|
|
376
|
+
--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
|
|
377
|
+
--mat-minimal-pseudo-checkbox-selected-checkmark-color: #8ba7b1;
|
|
378
|
+
--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
|
|
422
379
|
}
|
|
423
380
|
|
|
424
|
-
.mat-
|
|
425
|
-
|
|
426
|
-
color: #
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
.mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full::after {
|
|
434
|
-
color: #fafafa;
|
|
381
|
+
.mat-accent {
|
|
382
|
+
--mat-full-pseudo-checkbox-selected-icon-color: #8ba7b1;
|
|
383
|
+
--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
|
|
384
|
+
--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
|
|
385
|
+
--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
|
|
386
|
+
--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
|
|
387
|
+
--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
|
|
388
|
+
--mat-minimal-pseudo-checkbox-selected-checkmark-color: #8ba7b1;
|
|
389
|
+
--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
|
|
435
390
|
}
|
|
436
391
|
|
|
437
|
-
.mat-
|
|
438
|
-
|
|
439
|
-
color: #
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
392
|
+
.mat-warn {
|
|
393
|
+
--mat-full-pseudo-checkbox-selected-icon-color: #f44336;
|
|
394
|
+
--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
|
|
395
|
+
--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
|
|
396
|
+
--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
|
|
397
|
+
--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
|
|
398
|
+
--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
|
|
399
|
+
--mat-minimal-pseudo-checkbox-selected-checkmark-color: #f44336;
|
|
400
|
+
--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
|
|
444
401
|
}
|
|
445
402
|
|
|
446
|
-
|
|
447
|
-
background-color: #fafafa;
|
|
448
|
-
color: rgba(0, 0, 0, 0.87);
|
|
403
|
+
html {
|
|
404
|
+
--mat-app-background-color: #fafafa;
|
|
405
|
+
--mat-app-text-color: rgba(0, 0, 0, 0.87);
|
|
449
406
|
}
|
|
450
407
|
|
|
451
408
|
.mat-elevation-z0, .mat-mdc-elevation-specific.mat-elevation-z0 {
|
|
@@ -568,7 +525,13 @@ html {
|
|
|
568
525
|
--mat-optgroup-label-text-weight: 400;
|
|
569
526
|
}
|
|
570
527
|
|
|
571
|
-
|
|
528
|
+
html {
|
|
529
|
+
--mdc-elevated-card-container-shape: 4px;
|
|
530
|
+
--mdc-outlined-card-container-shape: 4px;
|
|
531
|
+
--mdc-outlined-card-outline-width: 1px;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
html {
|
|
572
535
|
--mdc-elevated-card-container-color: white;
|
|
573
536
|
--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
|
|
574
537
|
--mdc-outlined-card-container-color: white;
|
|
@@ -577,7 +540,7 @@ html {
|
|
|
577
540
|
--mat-card-subtitle-text-color: rgba(0, 0, 0, 0.54);
|
|
578
541
|
}
|
|
579
542
|
|
|
580
|
-
|
|
543
|
+
html {
|
|
581
544
|
--mat-card-title-text-font: Roboto, sans-serif;
|
|
582
545
|
--mat-card-title-text-line-height: 30px;
|
|
583
546
|
--mat-card-title-text-size: 20px;
|
|
@@ -590,108 +553,51 @@ html {
|
|
|
590
553
|
--mat-card-subtitle-text-weight: 500;
|
|
591
554
|
}
|
|
592
555
|
|
|
556
|
+
html {
|
|
557
|
+
--mdc-linear-progress-active-indicator-height: 4px;
|
|
558
|
+
--mdc-linear-progress-track-height: 4px;
|
|
559
|
+
--mdc-linear-progress-track-shape: 0;
|
|
560
|
+
}
|
|
561
|
+
|
|
593
562
|
.mat-mdc-progress-bar {
|
|
594
563
|
--mdc-linear-progress-active-indicator-color: #164e62;
|
|
595
564
|
--mdc-linear-progress-track-color: rgba(22, 78, 98, 0.25);
|
|
596
565
|
}
|
|
597
|
-
@keyframes mdc-linear-progress-buffering {
|
|
598
|
-
from {
|
|
599
|
-
/* @noflip */ /*rtl:ignore*/
|
|
600
|
-
}
|
|
601
|
-
}
|
|
602
|
-
.mat-mdc-progress-bar .mdc-linear-progress__buffer-dots {
|
|
603
|
-
background-color: rgba(22, 78, 98, 0.25);
|
|
604
|
-
/* @alternate */
|
|
605
|
-
background-color: var(--mdc-linear-progress-track-color, rgba(22, 78, 98, 0.25));
|
|
606
|
-
}
|
|
607
|
-
@media (forced-colors: active) {
|
|
608
|
-
.mat-mdc-progress-bar .mdc-linear-progress__buffer-dots {
|
|
609
|
-
background-color: ButtonBorder;
|
|
610
|
-
}
|
|
611
|
-
}
|
|
612
|
-
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
|
613
|
-
.mat-mdc-progress-bar .mdc-linear-progress__buffer-dots {
|
|
614
|
-
background-color: transparent;
|
|
615
|
-
background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(22, 78, 98, 0.25)'/%3E%3C/svg%3E");
|
|
616
|
-
}
|
|
617
|
-
}
|
|
618
|
-
.mat-mdc-progress-bar .mdc-linear-progress__buffer-bar {
|
|
619
|
-
background-color: rgba(22, 78, 98, 0.25);
|
|
620
|
-
/* @alternate */
|
|
621
|
-
background-color: var(--mdc-linear-progress-track-color, rgba(22, 78, 98, 0.25));
|
|
622
|
-
}
|
|
623
566
|
.mat-mdc-progress-bar.mat-accent {
|
|
624
567
|
--mdc-linear-progress-active-indicator-color: #8ba7b1;
|
|
625
568
|
--mdc-linear-progress-track-color: rgba(139, 167, 177, 0.25);
|
|
626
569
|
}
|
|
627
|
-
@keyframes mdc-linear-progress-buffering {
|
|
628
|
-
from {
|
|
629
|
-
/* @noflip */ /*rtl:ignore*/
|
|
630
|
-
}
|
|
631
|
-
}
|
|
632
|
-
.mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots {
|
|
633
|
-
background-color: rgba(139, 167, 177, 0.25);
|
|
634
|
-
/* @alternate */
|
|
635
|
-
background-color: var(--mdc-linear-progress-track-color, rgba(139, 167, 177, 0.25));
|
|
636
|
-
}
|
|
637
|
-
@media (forced-colors: active) {
|
|
638
|
-
.mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots {
|
|
639
|
-
background-color: ButtonBorder;
|
|
640
|
-
}
|
|
641
|
-
}
|
|
642
|
-
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
|
643
|
-
.mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots {
|
|
644
|
-
background-color: transparent;
|
|
645
|
-
background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(139, 167, 177, 0.25)'/%3E%3C/svg%3E");
|
|
646
|
-
}
|
|
647
|
-
}
|
|
648
|
-
.mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-bar {
|
|
649
|
-
background-color: rgba(139, 167, 177, 0.25);
|
|
650
|
-
/* @alternate */
|
|
651
|
-
background-color: var(--mdc-linear-progress-track-color, rgba(139, 167, 177, 0.25));
|
|
652
|
-
}
|
|
653
570
|
.mat-mdc-progress-bar.mat-warn {
|
|
654
571
|
--mdc-linear-progress-active-indicator-color: #f44336;
|
|
655
572
|
--mdc-linear-progress-track-color: rgba(244, 67, 54, 0.25);
|
|
656
573
|
}
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
}
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
/* @alternate */
|
|
665
|
-
background-color: var(--mdc-linear-progress-track-color, rgba(244, 67, 54, 0.25));
|
|
666
|
-
}
|
|
667
|
-
@media (forced-colors: active) {
|
|
668
|
-
.mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots {
|
|
669
|
-
background-color: ButtonBorder;
|
|
670
|
-
}
|
|
671
|
-
}
|
|
672
|
-
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
|
673
|
-
.mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots {
|
|
674
|
-
background-color: transparent;
|
|
675
|
-
background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(244, 67, 54, 0.25)'/%3E%3C/svg%3E");
|
|
676
|
-
}
|
|
677
|
-
}
|
|
678
|
-
.mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-bar {
|
|
679
|
-
background-color: rgba(244, 67, 54, 0.25);
|
|
680
|
-
/* @alternate */
|
|
681
|
-
background-color: var(--mdc-linear-progress-track-color, rgba(244, 67, 54, 0.25));
|
|
682
|
-
}
|
|
683
|
-
.mat-mdc-tooltip {
|
|
574
|
+
|
|
575
|
+
html {
|
|
576
|
+
--mdc-plain-tooltip-container-shape: 4px;
|
|
577
|
+
--mdc-plain-tooltip-supporting-text-line-height: 16px;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
html {
|
|
684
581
|
--mdc-plain-tooltip-container-color: #616161;
|
|
685
582
|
--mdc-plain-tooltip-supporting-text-color: #fff;
|
|
686
583
|
}
|
|
687
584
|
|
|
688
|
-
|
|
585
|
+
html {
|
|
689
586
|
--mdc-plain-tooltip-supporting-text-font: Roboto, sans-serif;
|
|
690
587
|
--mdc-plain-tooltip-supporting-text-size: 12px;
|
|
691
588
|
--mdc-plain-tooltip-supporting-text-weight: 400;
|
|
692
589
|
--mdc-plain-tooltip-supporting-text-tracking: normal;
|
|
693
590
|
}
|
|
694
591
|
|
|
592
|
+
html {
|
|
593
|
+
--mdc-filled-text-field-active-indicator-height: 1px;
|
|
594
|
+
--mdc-filled-text-field-focus-active-indicator-height: 2px;
|
|
595
|
+
--mdc-filled-text-field-container-shape: 4px;
|
|
596
|
+
--mdc-outlined-text-field-outline-width: 1px;
|
|
597
|
+
--mdc-outlined-text-field-focus-outline-width: 2px;
|
|
598
|
+
--mdc-outlined-text-field-container-shape: 4px;
|
|
599
|
+
}
|
|
600
|
+
|
|
695
601
|
html {
|
|
696
602
|
--mdc-filled-text-field-caret-color: #164e62;
|
|
697
603
|
--mdc-filled-text-field-focus-active-indicator-color: #164e62;
|
|
@@ -699,10 +605,12 @@ html {
|
|
|
699
605
|
--mdc-filled-text-field-container-color: whitesmoke;
|
|
700
606
|
--mdc-filled-text-field-disabled-container-color: #fafafa;
|
|
701
607
|
--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, 0.6);
|
|
608
|
+
--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, 0.6);
|
|
702
609
|
--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, 0.38);
|
|
703
610
|
--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, 0.87);
|
|
704
611
|
--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, 0.38);
|
|
705
612
|
--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, 0.6);
|
|
613
|
+
--mdc-filled-text-field-error-hover-label-text-color: #f44336;
|
|
706
614
|
--mdc-filled-text-field-error-focus-label-text-color: #f44336;
|
|
707
615
|
--mdc-filled-text-field-error-label-text-color: #f44336;
|
|
708
616
|
--mdc-filled-text-field-error-caret-color: #f44336;
|
|
@@ -716,6 +624,7 @@ html {
|
|
|
716
624
|
--mdc-outlined-text-field-focus-outline-color: #164e62;
|
|
717
625
|
--mdc-outlined-text-field-focus-label-text-color: rgba(22, 78, 98, 0.87);
|
|
718
626
|
--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, 0.6);
|
|
627
|
+
--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, 0.6);
|
|
719
628
|
--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, 0.38);
|
|
720
629
|
--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, 0.87);
|
|
721
630
|
--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, 0.38);
|
|
@@ -723,56 +632,30 @@ html {
|
|
|
723
632
|
--mdc-outlined-text-field-error-caret-color: #f44336;
|
|
724
633
|
--mdc-outlined-text-field-error-focus-label-text-color: #f44336;
|
|
725
634
|
--mdc-outlined-text-field-error-label-text-color: #f44336;
|
|
635
|
+
--mdc-outlined-text-field-error-hover-label-text-color: #f44336;
|
|
726
636
|
--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, 0.38);
|
|
727
637
|
--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, 0.06);
|
|
728
638
|
--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, 0.87);
|
|
729
639
|
--mdc-outlined-text-field-error-focus-outline-color: #f44336;
|
|
730
640
|
--mdc-outlined-text-field-error-hover-outline-color: #f44336;
|
|
731
641
|
--mdc-outlined-text-field-error-outline-color: #f44336;
|
|
642
|
+
--mat-form-field-focus-select-arrow-color: rgba(22, 78, 98, 0.87);
|
|
732
643
|
--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, 0.38);
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
-
|
|
742
|
-
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
}
|
|
749
|
-
|
|
750
|
-
.mat-mdc-form-field-focus-overlay {
|
|
751
|
-
background-color: rgba(0, 0, 0, 0.87);
|
|
752
|
-
}
|
|
753
|
-
|
|
754
|
-
.mat-mdc-form-field:hover .mat-mdc-form-field-focus-overlay {
|
|
755
|
-
opacity: 0.04;
|
|
756
|
-
}
|
|
757
|
-
|
|
758
|
-
.mat-mdc-form-field.mat-focused .mat-mdc-form-field-focus-overlay {
|
|
759
|
-
opacity: 0.12;
|
|
760
|
-
}
|
|
761
|
-
|
|
762
|
-
.mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after {
|
|
763
|
-
color: rgba(0, 0, 0, 0.54);
|
|
764
|
-
}
|
|
765
|
-
.mat-mdc-form-field-type-mat-native-select.mat-focused.mat-primary .mat-mdc-form-field-infix::after {
|
|
766
|
-
color: rgba(22, 78, 98, 0.87);
|
|
767
|
-
}
|
|
768
|
-
.mat-mdc-form-field-type-mat-native-select.mat-focused.mat-accent .mat-mdc-form-field-infix::after {
|
|
769
|
-
color: rgba(139, 167, 177, 0.87);
|
|
770
|
-
}
|
|
771
|
-
.mat-mdc-form-field-type-mat-native-select.mat-focused.mat-warn .mat-mdc-form-field-infix::after {
|
|
772
|
-
color: rgba(244, 67, 54, 0.87);
|
|
773
|
-
}
|
|
774
|
-
.mat-mdc-form-field-type-mat-native-select.mat-form-field-disabled .mat-mdc-form-field-infix::after {
|
|
775
|
-
color: rgba(0, 0, 0, 0.38);
|
|
644
|
+
--mat-form-field-state-layer-color: rgba(0, 0, 0, 0.87);
|
|
645
|
+
--mat-form-field-error-text-color: #f44336;
|
|
646
|
+
--mat-form-field-select-option-text-color: inherit;
|
|
647
|
+
--mat-form-field-select-disabled-option-text-color: GrayText;
|
|
648
|
+
--mat-form-field-leading-icon-color: unset;
|
|
649
|
+
--mat-form-field-disabled-leading-icon-color: unset;
|
|
650
|
+
--mat-form-field-trailing-icon-color: unset;
|
|
651
|
+
--mat-form-field-disabled-trailing-icon-color: unset;
|
|
652
|
+
--mat-form-field-error-focus-trailing-icon-color: unset;
|
|
653
|
+
--mat-form-field-error-hover-trailing-icon-color: unset;
|
|
654
|
+
--mat-form-field-error-trailing-icon-color: unset;
|
|
655
|
+
--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, 0.54);
|
|
656
|
+
--mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, 0.38);
|
|
657
|
+
--mat-form-field-hover-state-layer-opacity: 0.04;
|
|
658
|
+
--mat-form-field-focus-state-layer-opacity: 0.08;
|
|
776
659
|
}
|
|
777
660
|
|
|
778
661
|
.mat-mdc-form-field.mat-accent {
|
|
@@ -782,6 +665,7 @@ html {
|
|
|
782
665
|
--mdc-outlined-text-field-caret-color: #8ba7b1;
|
|
783
666
|
--mdc-outlined-text-field-focus-outline-color: #8ba7b1;
|
|
784
667
|
--mdc-outlined-text-field-focus-label-text-color: rgba(139, 167, 177, 0.87);
|
|
668
|
+
--mat-form-field-focus-select-arrow-color: rgba(139, 167, 177, 0.87);
|
|
785
669
|
}
|
|
786
670
|
|
|
787
671
|
.mat-mdc-form-field.mat-warn {
|
|
@@ -791,45 +675,15 @@ html {
|
|
|
791
675
|
--mdc-outlined-text-field-caret-color: #f44336;
|
|
792
676
|
--mdc-outlined-text-field-focus-outline-color: #f44336;
|
|
793
677
|
--mdc-outlined-text-field-focus-label-text-color: rgba(244, 67, 54, 0.87);
|
|
678
|
+
--mat-form-field-focus-select-arrow-color: rgba(244, 67, 54, 0.87);
|
|
794
679
|
}
|
|
795
680
|
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
border-right: 1px solid transparent;
|
|
803
|
-
}
|
|
804
|
-
|
|
805
|
-
.mat-mdc-form-field-infix {
|
|
806
|
-
min-height: 56px;
|
|
807
|
-
}
|
|
808
|
-
|
|
809
|
-
.mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
|
|
810
|
-
top: 28px;
|
|
811
|
-
}
|
|
812
|
-
|
|
813
|
-
.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
|
|
814
|
-
--mat-mdc-form-field-label-transform: translateY(
|
|
815
|
-
-34.75px)
|
|
816
|
-
scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));
|
|
817
|
-
transform: var(--mat-mdc-form-field-label-transform);
|
|
818
|
-
}
|
|
819
|
-
|
|
820
|
-
.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
|
|
821
|
-
padding-top: 16px;
|
|
822
|
-
padding-bottom: 16px;
|
|
823
|
-
}
|
|
824
|
-
|
|
825
|
-
.mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix {
|
|
826
|
-
padding-top: 24px;
|
|
827
|
-
padding-bottom: 8px;
|
|
828
|
-
}
|
|
829
|
-
|
|
830
|
-
.mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix {
|
|
831
|
-
padding-top: 16px;
|
|
832
|
-
padding-bottom: 16px;
|
|
681
|
+
html {
|
|
682
|
+
--mat-form-field-container-height: 56px;
|
|
683
|
+
--mat-form-field-filled-label-display: block;
|
|
684
|
+
--mat-form-field-container-vertical-padding: 16px;
|
|
685
|
+
--mat-form-field-filled-with-label-container-padding-top: 24px;
|
|
686
|
+
--mat-form-field-filled-with-label-container-padding-bottom: 8px;
|
|
833
687
|
}
|
|
834
688
|
|
|
835
689
|
html {
|
|
@@ -854,6 +708,10 @@ html {
|
|
|
854
708
|
--mat-form-field-subscript-text-weight: 400;
|
|
855
709
|
}
|
|
856
710
|
|
|
711
|
+
html {
|
|
712
|
+
--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
713
|
+
}
|
|
714
|
+
|
|
857
715
|
html {
|
|
858
716
|
--mat-select-panel-background-color: white;
|
|
859
717
|
--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);
|
|
@@ -885,6 +743,10 @@ html .mat-mdc-form-field.mat-warn {
|
|
|
885
743
|
--mat-select-invalid-arrow-color: rgba(244, 67, 54, 0.87);
|
|
886
744
|
}
|
|
887
745
|
|
|
746
|
+
html {
|
|
747
|
+
--mat-select-arrow-transform: translateY(-8px);
|
|
748
|
+
}
|
|
749
|
+
|
|
888
750
|
html {
|
|
889
751
|
--mat-select-trigger-text-font: Roboto, sans-serif;
|
|
890
752
|
--mat-select-trigger-text-line-height: 22px;
|
|
@@ -893,17 +755,36 @@ html {
|
|
|
893
755
|
--mat-select-trigger-text-weight: 400;
|
|
894
756
|
}
|
|
895
757
|
|
|
758
|
+
html {
|
|
759
|
+
--mat-autocomplete-container-shape: 4px;
|
|
760
|
+
--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
761
|
+
}
|
|
762
|
+
|
|
896
763
|
html {
|
|
897
764
|
--mat-autocomplete-background-color: white;
|
|
898
765
|
}
|
|
899
766
|
|
|
900
|
-
|
|
767
|
+
html {
|
|
768
|
+
--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
|
|
769
|
+
--mdc-dialog-container-shadow-color: #000;
|
|
770
|
+
--mdc-dialog-container-shape: 4px;
|
|
771
|
+
--mat-dialog-container-max-width: 80vw;
|
|
772
|
+
--mat-dialog-container-small-max-width: 80vw;
|
|
773
|
+
--mat-dialog-container-min-width: 0;
|
|
774
|
+
--mat-dialog-actions-alignment: start;
|
|
775
|
+
--mat-dialog-actions-padding: 8px;
|
|
776
|
+
--mat-dialog-content-padding: 20px 24px;
|
|
777
|
+
--mat-dialog-with-actions-content-padding: 20px 24px;
|
|
778
|
+
--mat-dialog-headline-padding: 0 24px 9px;
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
html {
|
|
901
782
|
--mdc-dialog-container-color: white;
|
|
902
783
|
--mdc-dialog-subhead-color: rgba(0, 0, 0, 0.87);
|
|
903
784
|
--mdc-dialog-supporting-text-color: rgba(0, 0, 0, 0.6);
|
|
904
785
|
}
|
|
905
786
|
|
|
906
|
-
|
|
787
|
+
html {
|
|
907
788
|
--mdc-dialog-subhead-font: Roboto, sans-serif;
|
|
908
789
|
--mdc-dialog-subhead-line-height: 30px;
|
|
909
790
|
--mdc-dialog-subhead-size: 20px;
|
|
@@ -916,57 +797,119 @@ html {
|
|
|
916
797
|
--mdc-dialog-supporting-text-tracking: normal;
|
|
917
798
|
}
|
|
918
799
|
|
|
800
|
+
.mat-mdc-standard-chip {
|
|
801
|
+
--mdc-chip-container-shape-family: rounded;
|
|
802
|
+
--mdc-chip-container-shape-radius: 16px 16px 16px 16px;
|
|
803
|
+
--mdc-chip-with-avatar-avatar-shape-family: rounded;
|
|
804
|
+
--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;
|
|
805
|
+
--mdc-chip-with-avatar-avatar-size: 28px;
|
|
806
|
+
--mdc-chip-with-icon-icon-size: 18px;
|
|
807
|
+
--mdc-chip-outline-width: 0;
|
|
808
|
+
--mdc-chip-outline-color: transparent;
|
|
809
|
+
--mdc-chip-disabled-outline-color: transparent;
|
|
810
|
+
--mdc-chip-focus-outline-color: transparent;
|
|
811
|
+
--mdc-chip-hover-state-layer-opacity: 0.04;
|
|
812
|
+
--mdc-chip-with-avatar-disabled-avatar-opacity: 1;
|
|
813
|
+
--mdc-chip-flat-selected-outline-width: 0;
|
|
814
|
+
--mdc-chip-selected-hover-state-layer-opacity: 0.04;
|
|
815
|
+
--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;
|
|
816
|
+
--mdc-chip-with-icon-disabled-icon-opacity: 1;
|
|
817
|
+
--mat-chip-disabled-container-opacity: 0.4;
|
|
818
|
+
--mat-chip-trailing-action-opacity: 0.54;
|
|
819
|
+
--mat-chip-trailing-action-focus-opacity: 1;
|
|
820
|
+
--mat-chip-trailing-action-state-layer-color: transparent;
|
|
821
|
+
--mat-chip-selected-trailing-action-state-layer-color: transparent;
|
|
822
|
+
--mat-chip-trailing-action-hover-state-layer-opacity: 0;
|
|
823
|
+
--mat-chip-trailing-action-focus-state-layer-opacity: 0;
|
|
824
|
+
}
|
|
825
|
+
|
|
919
826
|
.mat-mdc-standard-chip {
|
|
920
827
|
--mdc-chip-disabled-label-text-color: #212121;
|
|
921
828
|
--mdc-chip-elevated-container-color: #e0e0e0;
|
|
829
|
+
--mdc-chip-elevated-selected-container-color: #e0e0e0;
|
|
922
830
|
--mdc-chip-elevated-disabled-container-color: #e0e0e0;
|
|
831
|
+
--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;
|
|
923
832
|
--mdc-chip-focus-state-layer-color: black;
|
|
833
|
+
--mdc-chip-hover-state-layer-color: black;
|
|
834
|
+
--mdc-chip-selected-hover-state-layer-color: black;
|
|
924
835
|
--mdc-chip-focus-state-layer-opacity: 0.12;
|
|
836
|
+
--mdc-chip-selected-focus-state-layer-color: black;
|
|
837
|
+
--mdc-chip-selected-focus-state-layer-opacity: 0.12;
|
|
925
838
|
--mdc-chip-label-text-color: #212121;
|
|
839
|
+
--mdc-chip-selected-label-text-color: #212121;
|
|
926
840
|
--mdc-chip-with-icon-icon-color: #212121;
|
|
927
841
|
--mdc-chip-with-icon-disabled-icon-color: #212121;
|
|
928
842
|
--mdc-chip-with-icon-selected-icon-color: #212121;
|
|
929
843
|
--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;
|
|
930
844
|
--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;
|
|
845
|
+
--mat-chip-selected-disabled-trailing-icon-color: #212121;
|
|
846
|
+
--mat-chip-selected-trailing-icon-color: #212121;
|
|
931
847
|
}
|
|
932
848
|
.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary, .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {
|
|
933
849
|
--mdc-chip-disabled-label-text-color: white;
|
|
934
850
|
--mdc-chip-elevated-container-color: #164e62;
|
|
851
|
+
--mdc-chip-elevated-selected-container-color: #164e62;
|
|
935
852
|
--mdc-chip-elevated-disabled-container-color: #164e62;
|
|
853
|
+
--mdc-chip-flat-disabled-selected-container-color: #164e62;
|
|
936
854
|
--mdc-chip-focus-state-layer-color: black;
|
|
855
|
+
--mdc-chip-hover-state-layer-color: black;
|
|
856
|
+
--mdc-chip-selected-hover-state-layer-color: black;
|
|
937
857
|
--mdc-chip-focus-state-layer-opacity: 0.12;
|
|
858
|
+
--mdc-chip-selected-focus-state-layer-color: black;
|
|
859
|
+
--mdc-chip-selected-focus-state-layer-opacity: 0.12;
|
|
938
860
|
--mdc-chip-label-text-color: white;
|
|
861
|
+
--mdc-chip-selected-label-text-color: white;
|
|
939
862
|
--mdc-chip-with-icon-icon-color: white;
|
|
940
863
|
--mdc-chip-with-icon-disabled-icon-color: white;
|
|
941
864
|
--mdc-chip-with-icon-selected-icon-color: white;
|
|
942
865
|
--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
|
|
943
866
|
--mdc-chip-with-trailing-icon-trailing-icon-color: white;
|
|
867
|
+
--mat-chip-selected-disabled-trailing-icon-color: white;
|
|
868
|
+
--mat-chip-selected-trailing-icon-color: white;
|
|
944
869
|
}
|
|
945
870
|
.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent, .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {
|
|
946
871
|
--mdc-chip-disabled-label-text-color: black;
|
|
947
872
|
--mdc-chip-elevated-container-color: #8ba7b1;
|
|
873
|
+
--mdc-chip-elevated-selected-container-color: #8ba7b1;
|
|
948
874
|
--mdc-chip-elevated-disabled-container-color: #8ba7b1;
|
|
875
|
+
--mdc-chip-flat-disabled-selected-container-color: #8ba7b1;
|
|
949
876
|
--mdc-chip-focus-state-layer-color: black;
|
|
877
|
+
--mdc-chip-hover-state-layer-color: black;
|
|
878
|
+
--mdc-chip-selected-hover-state-layer-color: black;
|
|
950
879
|
--mdc-chip-focus-state-layer-opacity: 0.12;
|
|
880
|
+
--mdc-chip-selected-focus-state-layer-color: black;
|
|
881
|
+
--mdc-chip-selected-focus-state-layer-opacity: 0.12;
|
|
951
882
|
--mdc-chip-label-text-color: black;
|
|
883
|
+
--mdc-chip-selected-label-text-color: black;
|
|
952
884
|
--mdc-chip-with-icon-icon-color: black;
|
|
953
885
|
--mdc-chip-with-icon-disabled-icon-color: black;
|
|
954
886
|
--mdc-chip-with-icon-selected-icon-color: black;
|
|
955
887
|
--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;
|
|
956
888
|
--mdc-chip-with-trailing-icon-trailing-icon-color: black;
|
|
889
|
+
--mat-chip-selected-disabled-trailing-icon-color: black;
|
|
890
|
+
--mat-chip-selected-trailing-icon-color: black;
|
|
957
891
|
}
|
|
958
892
|
.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn, .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {
|
|
959
893
|
--mdc-chip-disabled-label-text-color: white;
|
|
960
894
|
--mdc-chip-elevated-container-color: #f44336;
|
|
895
|
+
--mdc-chip-elevated-selected-container-color: #f44336;
|
|
961
896
|
--mdc-chip-elevated-disabled-container-color: #f44336;
|
|
897
|
+
--mdc-chip-flat-disabled-selected-container-color: #f44336;
|
|
962
898
|
--mdc-chip-focus-state-layer-color: black;
|
|
899
|
+
--mdc-chip-hover-state-layer-color: black;
|
|
900
|
+
--mdc-chip-selected-hover-state-layer-color: black;
|
|
963
901
|
--mdc-chip-focus-state-layer-opacity: 0.12;
|
|
902
|
+
--mdc-chip-selected-focus-state-layer-color: black;
|
|
903
|
+
--mdc-chip-selected-focus-state-layer-opacity: 0.12;
|
|
964
904
|
--mdc-chip-label-text-color: white;
|
|
905
|
+
--mdc-chip-selected-label-text-color: white;
|
|
965
906
|
--mdc-chip-with-icon-icon-color: white;
|
|
966
907
|
--mdc-chip-with-icon-disabled-icon-color: white;
|
|
967
908
|
--mdc-chip-with-icon-selected-icon-color: white;
|
|
968
909
|
--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
|
|
969
910
|
--mdc-chip-with-trailing-icon-trailing-icon-color: white;
|
|
911
|
+
--mat-chip-selected-disabled-trailing-icon-color: white;
|
|
912
|
+
--mat-chip-selected-trailing-icon-color: white;
|
|
970
913
|
}
|
|
971
914
|
|
|
972
915
|
.mat-mdc-chip.mat-mdc-standard-chip {
|
|
@@ -981,7 +924,48 @@ html {
|
|
|
981
924
|
--mdc-chip-label-text-weight: 400;
|
|
982
925
|
}
|
|
983
926
|
|
|
984
|
-
|
|
927
|
+
html {
|
|
928
|
+
--mdc-switch-disabled-selected-icon-opacity: 0.38;
|
|
929
|
+
--mdc-switch-disabled-track-opacity: 0.12;
|
|
930
|
+
--mdc-switch-disabled-unselected-icon-opacity: 0.38;
|
|
931
|
+
--mdc-switch-handle-height: 20px;
|
|
932
|
+
--mdc-switch-handle-shape: 10px;
|
|
933
|
+
--mdc-switch-handle-width: 20px;
|
|
934
|
+
--mdc-switch-selected-icon-size: 18px;
|
|
935
|
+
--mdc-switch-track-height: 14px;
|
|
936
|
+
--mdc-switch-track-shape: 7px;
|
|
937
|
+
--mdc-switch-track-width: 36px;
|
|
938
|
+
--mdc-switch-unselected-icon-size: 18px;
|
|
939
|
+
--mdc-switch-selected-focus-state-layer-opacity: 0.12;
|
|
940
|
+
--mdc-switch-selected-hover-state-layer-opacity: 0.04;
|
|
941
|
+
--mdc-switch-selected-pressed-state-layer-opacity: 0.1;
|
|
942
|
+
--mdc-switch-unselected-focus-state-layer-opacity: 0.12;
|
|
943
|
+
--mdc-switch-unselected-hover-state-layer-opacity: 0.04;
|
|
944
|
+
--mdc-switch-unselected-pressed-state-layer-opacity: 0.1;
|
|
945
|
+
--mat-switch-disabled-selected-handle-opacity: 0.38;
|
|
946
|
+
--mat-switch-disabled-unselected-handle-opacity: 0.38;
|
|
947
|
+
--mat-switch-unselected-handle-size: 20px;
|
|
948
|
+
--mat-switch-selected-handle-size: 20px;
|
|
949
|
+
--mat-switch-pressed-handle-size: 20px;
|
|
950
|
+
--mat-switch-with-icon-handle-size: 20px;
|
|
951
|
+
--mat-switch-selected-handle-horizontal-margin: 0;
|
|
952
|
+
--mat-switch-selected-with-icon-handle-horizontal-margin: 0;
|
|
953
|
+
--mat-switch-selected-pressed-handle-horizontal-margin: 0;
|
|
954
|
+
--mat-switch-unselected-handle-horizontal-margin: 0;
|
|
955
|
+
--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;
|
|
956
|
+
--mat-switch-unselected-pressed-handle-horizontal-margin: 0;
|
|
957
|
+
--mat-switch-visible-track-opacity: 1;
|
|
958
|
+
--mat-switch-hidden-track-opacity: 1;
|
|
959
|
+
--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);
|
|
960
|
+
--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
|
|
961
|
+
--mat-switch-track-outline-width: 1px;
|
|
962
|
+
--mat-switch-track-outline-color: transparent;
|
|
963
|
+
--mat-switch-selected-track-outline-width: 1px;
|
|
964
|
+
--mat-switch-disabled-unselected-track-outline-width: 1px;
|
|
965
|
+
--mat-switch-disabled-unselected-track-outline-color: transparent;
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
html {
|
|
985
969
|
--mdc-switch-selected-focus-state-layer-color: #13475a;
|
|
986
970
|
--mdc-switch-selected-handle-color: #13475a;
|
|
987
971
|
--mdc-switch-selected-hover-state-layer-color: #13475a;
|
|
@@ -1016,14 +1000,12 @@ html {
|
|
|
1016
1000
|
--mdc-switch-unselected-pressed-state-layer-color: #424242;
|
|
1017
1001
|
--mdc-switch-unselected-pressed-track-color: #e0e0e0;
|
|
1018
1002
|
--mdc-switch-unselected-track-color: #e0e0e0;
|
|
1003
|
+
--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, 0.38);
|
|
1019
1004
|
}
|
|
1020
|
-
.mat-mdc-slide-toggle
|
|
1021
|
-
|
|
1022
|
-
}
|
|
1023
|
-
.mat-mdc-slide-toggle .mdc-switch--disabled + label {
|
|
1024
|
-
color: rgba(0, 0, 0, 0.38);
|
|
1005
|
+
html .mat-mdc-slide-toggle {
|
|
1006
|
+
--mdc-form-field-label-text-color: rgba(0, 0, 0, 0.87);
|
|
1025
1007
|
}
|
|
1026
|
-
.mat-mdc-slide-toggle.mat-accent {
|
|
1008
|
+
html .mat-mdc-slide-toggle.mat-accent {
|
|
1027
1009
|
--mdc-switch-selected-focus-state-layer-color: #13475a;
|
|
1028
1010
|
--mdc-switch-selected-handle-color: #13475a;
|
|
1029
1011
|
--mdc-switch-selected-hover-state-layer-color: #13475a;
|
|
@@ -1036,7 +1018,7 @@ html {
|
|
|
1036
1018
|
--mdc-switch-selected-pressed-track-color: #5c8391;
|
|
1037
1019
|
--mdc-switch-selected-track-color: #5c8391;
|
|
1038
1020
|
}
|
|
1039
|
-
.mat-mdc-slide-toggle.mat-warn {
|
|
1021
|
+
html .mat-mdc-slide-toggle.mat-warn {
|
|
1040
1022
|
--mdc-switch-selected-focus-state-layer-color: #e53935;
|
|
1041
1023
|
--mdc-switch-selected-handle-color: #e53935;
|
|
1042
1024
|
--mdc-switch-selected-hover-state-layer-color: #e53935;
|
|
@@ -1050,50 +1032,30 @@ html {
|
|
|
1050
1032
|
--mdc-switch-selected-track-color: #e57373;
|
|
1051
1033
|
}
|
|
1052
1034
|
|
|
1053
|
-
|
|
1054
|
-
--mdc-switch-state-layer-size:
|
|
1055
|
-
}
|
|
1056
|
-
|
|
1057
|
-
.mat-mdc-slide-toggle {
|
|
1058
|
-
--
|
|
1059
|
-
--
|
|
1060
|
-
--
|
|
1061
|
-
--
|
|
1062
|
-
--
|
|
1063
|
-
}
|
|
1064
|
-
.mat-mdc-slide-toggle .mdc-form-field {
|
|
1065
|
-
-moz-osx-font-smoothing: grayscale;
|
|
1066
|
-
-webkit-font-smoothing: antialiased;
|
|
1067
|
-
font-family: Roboto, sans-serif;
|
|
1068
|
-
/* @alternate */
|
|
1069
|
-
font-family: var(--mdc-typography-body2-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
|
|
1070
|
-
font-size: 0.875rem;
|
|
1071
|
-
/* @alternate */
|
|
1072
|
-
font-size: var(--mdc-typography-body2-font-size, 0.875rem);
|
|
1073
|
-
line-height: 1.25rem;
|
|
1074
|
-
/* @alternate */
|
|
1075
|
-
line-height: var(--mdc-typography-body2-line-height, 1.25rem);
|
|
1076
|
-
font-weight: 400;
|
|
1077
|
-
/* @alternate */
|
|
1078
|
-
font-weight: var(--mdc-typography-body2-font-weight, 400);
|
|
1079
|
-
letter-spacing: 0.0178571429em;
|
|
1080
|
-
/* @alternate */
|
|
1081
|
-
letter-spacing: var(--mdc-typography-body2-letter-spacing, 0.0178571429em);
|
|
1082
|
-
text-decoration: inherit;
|
|
1083
|
-
/* @alternate */
|
|
1084
|
-
text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
|
|
1085
|
-
text-transform: inherit;
|
|
1086
|
-
/* @alternate */
|
|
1087
|
-
text-transform: var(--mdc-typography-body2-text-transform, inherit);
|
|
1088
|
-
}
|
|
1089
|
-
|
|
1090
|
-
.mat-mdc-radio-button .mdc-form-field {
|
|
1091
|
-
color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87));
|
|
1035
|
+
html {
|
|
1036
|
+
--mdc-switch-state-layer-size: 40px;
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
html .mat-mdc-slide-toggle {
|
|
1040
|
+
--mdc-form-field-label-text-font: Roboto, sans-serif;
|
|
1041
|
+
--mdc-form-field-label-text-line-height: 18px;
|
|
1042
|
+
--mdc-form-field-label-text-size: 12px;
|
|
1043
|
+
--mdc-form-field-label-text-tracking: normal;
|
|
1044
|
+
--mdc-form-field-label-text-weight: 400;
|
|
1092
1045
|
}
|
|
1093
1046
|
|
|
1047
|
+
html {
|
|
1048
|
+
--mdc-radio-disabled-selected-icon-opacity: 0.38;
|
|
1049
|
+
--mdc-radio-disabled-unselected-icon-opacity: 0.38;
|
|
1050
|
+
--mdc-radio-state-layer-size: 40px;
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
.mat-mdc-radio-button {
|
|
1054
|
+
--mdc-form-field-label-text-color: rgba(0, 0, 0, 0.87);
|
|
1055
|
+
}
|
|
1094
1056
|
.mat-mdc-radio-button.mat-primary {
|
|
1095
|
-
--mdc-radio-disabled-selected-icon-color:
|
|
1096
|
-
--mdc-radio-disabled-unselected-icon-color:
|
|
1057
|
+
--mdc-radio-disabled-selected-icon-color: black;
|
|
1058
|
+
--mdc-radio-disabled-unselected-icon-color: black;
|
|
1097
1059
|
--mdc-radio-unselected-hover-icon-color: #212121;
|
|
1098
1060
|
--mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
|
|
1099
1061
|
--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
|
|
@@ -1101,13 +1063,13 @@ html {
|
|
|
1101
1063
|
--mdc-radio-selected-hover-icon-color: #164e62;
|
|
1102
1064
|
--mdc-radio-selected-icon-color: #164e62;
|
|
1103
1065
|
--mdc-radio-selected-pressed-icon-color: #164e62;
|
|
1104
|
-
--mat-radio-ripple-color:
|
|
1066
|
+
--mat-radio-ripple-color: black;
|
|
1105
1067
|
--mat-radio-checked-ripple-color: #164e62;
|
|
1106
1068
|
--mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
|
|
1107
1069
|
}
|
|
1108
1070
|
.mat-mdc-radio-button.mat-accent {
|
|
1109
|
-
--mdc-radio-disabled-selected-icon-color:
|
|
1110
|
-
--mdc-radio-disabled-unselected-icon-color:
|
|
1071
|
+
--mdc-radio-disabled-selected-icon-color: black;
|
|
1072
|
+
--mdc-radio-disabled-unselected-icon-color: black;
|
|
1111
1073
|
--mdc-radio-unselected-hover-icon-color: #212121;
|
|
1112
1074
|
--mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
|
|
1113
1075
|
--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
|
|
@@ -1115,13 +1077,13 @@ html {
|
|
|
1115
1077
|
--mdc-radio-selected-hover-icon-color: #8ba7b1;
|
|
1116
1078
|
--mdc-radio-selected-icon-color: #8ba7b1;
|
|
1117
1079
|
--mdc-radio-selected-pressed-icon-color: #8ba7b1;
|
|
1118
|
-
--mat-radio-ripple-color:
|
|
1080
|
+
--mat-radio-ripple-color: black;
|
|
1119
1081
|
--mat-radio-checked-ripple-color: #8ba7b1;
|
|
1120
1082
|
--mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
|
|
1121
1083
|
}
|
|
1122
1084
|
.mat-mdc-radio-button.mat-warn {
|
|
1123
|
-
--mdc-radio-disabled-selected-icon-color:
|
|
1124
|
-
--mdc-radio-disabled-unselected-icon-color:
|
|
1085
|
+
--mdc-radio-disabled-selected-icon-color: black;
|
|
1086
|
+
--mdc-radio-disabled-unselected-icon-color: black;
|
|
1125
1087
|
--mdc-radio-unselected-hover-icon-color: #212121;
|
|
1126
1088
|
--mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
|
|
1127
1089
|
--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
|
|
@@ -1129,74 +1091,93 @@ html {
|
|
|
1129
1091
|
--mdc-radio-selected-hover-icon-color: #f44336;
|
|
1130
1092
|
--mdc-radio-selected-icon-color: #f44336;
|
|
1131
1093
|
--mdc-radio-selected-pressed-icon-color: #f44336;
|
|
1132
|
-
--mat-radio-ripple-color:
|
|
1094
|
+
--mat-radio-ripple-color: black;
|
|
1133
1095
|
--mat-radio-checked-ripple-color: #f44336;
|
|
1134
1096
|
--mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
|
|
1135
1097
|
}
|
|
1136
1098
|
|
|
1137
|
-
|
|
1099
|
+
html {
|
|
1138
1100
|
--mdc-radio-state-layer-size: 40px;
|
|
1101
|
+
--mat-radio-touch-target-display: block;
|
|
1139
1102
|
}
|
|
1140
1103
|
|
|
1141
|
-
.mat-mdc-radio-button
|
|
1142
|
-
-
|
|
1143
|
-
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
font-weight: var(--mdc-typography-body2-font-weight, 400);
|
|
1148
|
-
letter-spacing: var(--mdc-typography-body2-letter-spacing, normal);
|
|
1149
|
-
text-decoration: var(--mdc-typography-body2-text-decoration, inherit);
|
|
1150
|
-
text-transform: var(--mdc-typography-body2-text-transform, none);
|
|
1104
|
+
.mat-mdc-radio-button {
|
|
1105
|
+
--mdc-form-field-label-text-font: Roboto, sans-serif;
|
|
1106
|
+
--mdc-form-field-label-text-line-height: 18px;
|
|
1107
|
+
--mdc-form-field-label-text-size: 12px;
|
|
1108
|
+
--mdc-form-field-label-text-tracking: normal;
|
|
1109
|
+
--mdc-form-field-label-text-weight: 400;
|
|
1151
1110
|
}
|
|
1152
1111
|
|
|
1153
|
-
|
|
1154
|
-
--
|
|
1155
|
-
--
|
|
1156
|
-
--
|
|
1157
|
-
--
|
|
1158
|
-
--
|
|
1159
|
-
--
|
|
1160
|
-
--mat-
|
|
1112
|
+
html {
|
|
1113
|
+
--mat-slider-value-indicator-width: auto;
|
|
1114
|
+
--mat-slider-value-indicator-height: 32px;
|
|
1115
|
+
--mat-slider-value-indicator-caret-display: block;
|
|
1116
|
+
--mat-slider-value-indicator-border-radius: 4px;
|
|
1117
|
+
--mat-slider-value-indicator-padding: 0 12px;
|
|
1118
|
+
--mat-slider-value-indicator-text-transform: none;
|
|
1119
|
+
--mat-slider-value-indicator-container-transform: translateX(-50%);
|
|
1120
|
+
--mdc-slider-active-track-height: 6px;
|
|
1121
|
+
--mdc-slider-active-track-shape: 9999px;
|
|
1122
|
+
--mdc-slider-handle-height: 20px;
|
|
1123
|
+
--mdc-slider-handle-shape: 50%;
|
|
1124
|
+
--mdc-slider-handle-width: 20px;
|
|
1125
|
+
--mdc-slider-inactive-track-height: 4px;
|
|
1126
|
+
--mdc-slider-inactive-track-shape: 9999px;
|
|
1127
|
+
--mdc-slider-with-overlap-handle-outline-width: 1px;
|
|
1128
|
+
--mdc-slider-with-tick-marks-active-container-opacity: 0.6;
|
|
1129
|
+
--mdc-slider-with-tick-marks-container-shape: 50%;
|
|
1130
|
+
--mdc-slider-with-tick-marks-container-size: 2px;
|
|
1131
|
+
--mdc-slider-with-tick-marks-inactive-container-opacity: 0.6;
|
|
1161
1132
|
}
|
|
1162
|
-
|
|
1133
|
+
|
|
1134
|
+
html {
|
|
1163
1135
|
--mdc-slider-handle-color: #164e62;
|
|
1164
1136
|
--mdc-slider-focus-handle-color: #164e62;
|
|
1165
1137
|
--mdc-slider-hover-handle-color: #164e62;
|
|
1166
1138
|
--mdc-slider-active-track-color: #164e62;
|
|
1167
1139
|
--mdc-slider-inactive-track-color: #164e62;
|
|
1168
|
-
--mdc-slider-with-tick-marks-active-container-color: #fff;
|
|
1169
1140
|
--mdc-slider-with-tick-marks-inactive-container-color: #164e62;
|
|
1170
|
-
--
|
|
1171
|
-
--
|
|
1172
|
-
--
|
|
1173
|
-
|
|
1174
|
-
|
|
1141
|
+
--mdc-slider-with-tick-marks-active-container-color: white;
|
|
1142
|
+
--mdc-slider-disabled-active-track-color: #000;
|
|
1143
|
+
--mdc-slider-disabled-handle-color: #000;
|
|
1144
|
+
--mdc-slider-disabled-inactive-track-color: #000;
|
|
1145
|
+
--mdc-slider-label-container-color: #000;
|
|
1146
|
+
--mdc-slider-label-label-text-color: #fff;
|
|
1147
|
+
--mdc-slider-with-overlap-handle-outline-color: #fff;
|
|
1148
|
+
--mdc-slider-with-tick-marks-disabled-container-color: #000;
|
|
1149
|
+
--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
|
|
1150
|
+
--mat-slider-ripple-color: #164e62;
|
|
1151
|
+
--mat-slider-hover-state-layer-color: rgba(22, 78, 98, 0.05);
|
|
1152
|
+
--mat-slider-focus-state-layer-color: rgba(22, 78, 98, 0.2);
|
|
1153
|
+
--mat-slider-value-indicator-opacity: 0.6;
|
|
1154
|
+
}
|
|
1155
|
+
html .mat-accent {
|
|
1156
|
+
--mat-slider-ripple-color: #8ba7b1;
|
|
1157
|
+
--mat-slider-hover-state-layer-color: rgba(139, 167, 177, 0.05);
|
|
1158
|
+
--mat-slider-focus-state-layer-color: rgba(139, 167, 177, 0.2);
|
|
1175
1159
|
--mdc-slider-handle-color: #8ba7b1;
|
|
1176
1160
|
--mdc-slider-focus-handle-color: #8ba7b1;
|
|
1177
1161
|
--mdc-slider-hover-handle-color: #8ba7b1;
|
|
1178
1162
|
--mdc-slider-active-track-color: #8ba7b1;
|
|
1179
1163
|
--mdc-slider-inactive-track-color: #8ba7b1;
|
|
1180
|
-
--mdc-slider-with-tick-marks-active-container-color: #000;
|
|
1181
1164
|
--mdc-slider-with-tick-marks-inactive-container-color: #8ba7b1;
|
|
1182
|
-
--
|
|
1183
|
-
--mat-mdc-slider-hover-ripple-color: rgba(139, 167, 177, 0.05);
|
|
1184
|
-
--mat-mdc-slider-focus-ripple-color: rgba(139, 167, 177, 0.2);
|
|
1165
|
+
--mdc-slider-with-tick-marks-active-container-color: black;
|
|
1185
1166
|
}
|
|
1186
|
-
.mat-
|
|
1167
|
+
html .mat-warn {
|
|
1168
|
+
--mat-slider-ripple-color: #f44336;
|
|
1169
|
+
--mat-slider-hover-state-layer-color: rgba(244, 67, 54, 0.05);
|
|
1170
|
+
--mat-slider-focus-state-layer-color: rgba(244, 67, 54, 0.2);
|
|
1187
1171
|
--mdc-slider-handle-color: #f44336;
|
|
1188
1172
|
--mdc-slider-focus-handle-color: #f44336;
|
|
1189
1173
|
--mdc-slider-hover-handle-color: #f44336;
|
|
1190
1174
|
--mdc-slider-active-track-color: #f44336;
|
|
1191
1175
|
--mdc-slider-inactive-track-color: #f44336;
|
|
1192
|
-
--mdc-slider-with-tick-marks-active-container-color: #fff;
|
|
1193
1176
|
--mdc-slider-with-tick-marks-inactive-container-color: #f44336;
|
|
1194
|
-
--
|
|
1195
|
-
--mat-mdc-slider-hover-ripple-color: rgba(244, 67, 54, 0.05);
|
|
1196
|
-
--mat-mdc-slider-focus-ripple-color: rgba(244, 67, 54, 0.2);
|
|
1177
|
+
--mdc-slider-with-tick-marks-active-container-color: white;
|
|
1197
1178
|
}
|
|
1198
1179
|
|
|
1199
|
-
|
|
1180
|
+
html {
|
|
1200
1181
|
--mdc-slider-label-label-text-font: Roboto, sans-serif;
|
|
1201
1182
|
--mdc-slider-label-label-text-size: 12px;
|
|
1202
1183
|
--mdc-slider-label-label-text-line-height: 22px;
|
|
@@ -1204,12 +1185,25 @@ html {
|
|
|
1204
1185
|
--mdc-slider-label-label-text-weight: 500;
|
|
1205
1186
|
}
|
|
1206
1187
|
|
|
1188
|
+
html {
|
|
1189
|
+
--mat-menu-container-shape: 4px;
|
|
1190
|
+
--mat-menu-divider-bottom-spacing: 0;
|
|
1191
|
+
--mat-menu-divider-top-spacing: 0;
|
|
1192
|
+
--mat-menu-item-spacing: 16px;
|
|
1193
|
+
--mat-menu-item-icon-size: 24px;
|
|
1194
|
+
--mat-menu-item-leading-spacing: 16px;
|
|
1195
|
+
--mat-menu-item-trailing-spacing: 16px;
|
|
1196
|
+
--mat-menu-item-with-icon-leading-spacing: 16px;
|
|
1197
|
+
--mat-menu-item-with-icon-trailing-spacing: 16px;
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1207
1200
|
html {
|
|
1208
1201
|
--mat-menu-item-label-text-color: rgba(0, 0, 0, 0.87);
|
|
1209
1202
|
--mat-menu-item-icon-color: rgba(0, 0, 0, 0.87);
|
|
1210
1203
|
--mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, 0.04);
|
|
1211
1204
|
--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, 0.04);
|
|
1212
1205
|
--mat-menu-container-color: white;
|
|
1206
|
+
--mat-menu-divider-color: rgba(0, 0, 0, 0.12);
|
|
1213
1207
|
}
|
|
1214
1208
|
|
|
1215
1209
|
html {
|
|
@@ -1220,7 +1214,25 @@ html {
|
|
|
1220
1214
|
--mat-menu-item-label-text-weight: 400;
|
|
1221
1215
|
}
|
|
1222
1216
|
|
|
1223
|
-
|
|
1217
|
+
html {
|
|
1218
|
+
--mdc-list-list-item-container-shape: 0;
|
|
1219
|
+
--mdc-list-list-item-leading-avatar-shape: 50%;
|
|
1220
|
+
--mdc-list-list-item-container-color: transparent;
|
|
1221
|
+
--mdc-list-list-item-selected-container-color: transparent;
|
|
1222
|
+
--mdc-list-list-item-leading-avatar-color: transparent;
|
|
1223
|
+
--mdc-list-list-item-leading-icon-size: 24px;
|
|
1224
|
+
--mdc-list-list-item-leading-avatar-size: 40px;
|
|
1225
|
+
--mdc-list-list-item-trailing-icon-size: 24px;
|
|
1226
|
+
--mdc-list-list-item-disabled-state-layer-color: transparent;
|
|
1227
|
+
--mdc-list-list-item-disabled-state-layer-opacity: 0;
|
|
1228
|
+
--mdc-list-list-item-disabled-label-text-opacity: 0.38;
|
|
1229
|
+
--mdc-list-list-item-disabled-leading-icon-opacity: 0.38;
|
|
1230
|
+
--mdc-list-list-item-disabled-trailing-icon-opacity: 0.38;
|
|
1231
|
+
--mat-list-active-indicator-color: transparent;
|
|
1232
|
+
--mat-list-active-indicator-shape: 0;
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1235
|
+
html {
|
|
1224
1236
|
--mdc-list-list-item-label-text-color: rgba(0, 0, 0, 0.87);
|
|
1225
1237
|
--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, 0.54);
|
|
1226
1238
|
--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, 0.38);
|
|
@@ -1242,8 +1254,8 @@ html {
|
|
|
1242
1254
|
|
|
1243
1255
|
.mdc-list-item__start,
|
|
1244
1256
|
.mdc-list-item__end {
|
|
1245
|
-
--mdc-radio-disabled-selected-icon-color:
|
|
1246
|
-
--mdc-radio-disabled-unselected-icon-color:
|
|
1257
|
+
--mdc-radio-disabled-selected-icon-color: black;
|
|
1258
|
+
--mdc-radio-disabled-unselected-icon-color: black;
|
|
1247
1259
|
--mdc-radio-unselected-hover-icon-color: #212121;
|
|
1248
1260
|
--mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
|
|
1249
1261
|
--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
|
|
@@ -1255,8 +1267,8 @@ html {
|
|
|
1255
1267
|
|
|
1256
1268
|
.mat-accent .mdc-list-item__start,
|
|
1257
1269
|
.mat-accent .mdc-list-item__end {
|
|
1258
|
-
--mdc-radio-disabled-selected-icon-color:
|
|
1259
|
-
--mdc-radio-disabled-unselected-icon-color:
|
|
1270
|
+
--mdc-radio-disabled-selected-icon-color: black;
|
|
1271
|
+
--mdc-radio-disabled-unselected-icon-color: black;
|
|
1260
1272
|
--mdc-radio-unselected-hover-icon-color: #212121;
|
|
1261
1273
|
--mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
|
|
1262
1274
|
--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
|
|
@@ -1268,8 +1280,8 @@ html {
|
|
|
1268
1280
|
|
|
1269
1281
|
.mat-warn .mdc-list-item__start,
|
|
1270
1282
|
.mat-warn .mdc-list-item__end {
|
|
1271
|
-
--mdc-radio-disabled-selected-icon-color:
|
|
1272
|
-
--mdc-radio-disabled-unselected-icon-color:
|
|
1283
|
+
--mdc-radio-disabled-selected-icon-color: black;
|
|
1284
|
+
--mdc-radio-disabled-unselected-icon-color: black;
|
|
1273
1285
|
--mdc-radio-unselected-hover-icon-color: #212121;
|
|
1274
1286
|
--mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
|
|
1275
1287
|
--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
|
|
@@ -1282,7 +1294,7 @@ html {
|
|
|
1282
1294
|
.mat-mdc-list-option {
|
|
1283
1295
|
--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
|
|
1284
1296
|
--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
|
|
1285
|
-
--mdc-checkbox-selected-checkmark-color:
|
|
1297
|
+
--mdc-checkbox-selected-checkmark-color: white;
|
|
1286
1298
|
--mdc-checkbox-selected-focus-icon-color: #164e62;
|
|
1287
1299
|
--mdc-checkbox-selected-hover-icon-color: #164e62;
|
|
1288
1300
|
--mdc-checkbox-selected-icon-color: #164e62;
|
|
@@ -1302,7 +1314,7 @@ html {
|
|
|
1302
1314
|
.mat-mdc-list-option.mat-accent {
|
|
1303
1315
|
--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
|
|
1304
1316
|
--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
|
|
1305
|
-
--mdc-checkbox-selected-checkmark-color:
|
|
1317
|
+
--mdc-checkbox-selected-checkmark-color: black;
|
|
1306
1318
|
--mdc-checkbox-selected-focus-icon-color: #8ba7b1;
|
|
1307
1319
|
--mdc-checkbox-selected-hover-icon-color: #8ba7b1;
|
|
1308
1320
|
--mdc-checkbox-selected-icon-color: #8ba7b1;
|
|
@@ -1322,7 +1334,7 @@ html {
|
|
|
1322
1334
|
.mat-mdc-list-option.mat-warn {
|
|
1323
1335
|
--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
|
|
1324
1336
|
--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
|
|
1325
|
-
--mdc-checkbox-selected-checkmark-color:
|
|
1337
|
+
--mdc-checkbox-selected-checkmark-color: white;
|
|
1326
1338
|
--mdc-checkbox-selected-focus-icon-color: #f44336;
|
|
1327
1339
|
--mdc-checkbox-selected-hover-icon-color: #f44336;
|
|
1328
1340
|
--mdc-checkbox-selected-icon-color: #f44336;
|
|
@@ -1354,10 +1366,17 @@ html {
|
|
|
1354
1366
|
opacity: 1;
|
|
1355
1367
|
}
|
|
1356
1368
|
|
|
1357
|
-
|
|
1369
|
+
html {
|
|
1358
1370
|
--mdc-list-list-item-one-line-container-height: 48px;
|
|
1359
1371
|
--mdc-list-list-item-two-line-container-height: 64px;
|
|
1360
1372
|
--mdc-list-list-item-three-line-container-height: 88px;
|
|
1373
|
+
--mat-list-list-item-leading-icon-start-space: 16px;
|
|
1374
|
+
--mat-list-list-item-leading-icon-end-space: 32px;
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1377
|
+
.mdc-list-item__start,
|
|
1378
|
+
.mdc-list-item__end {
|
|
1379
|
+
--mdc-radio-state-layer-size: 40px;
|
|
1361
1380
|
}
|
|
1362
1381
|
|
|
1363
1382
|
.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line, .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line, .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line {
|
|
@@ -1367,7 +1386,7 @@ html {
|
|
|
1367
1386
|
height: 72px;
|
|
1368
1387
|
}
|
|
1369
1388
|
|
|
1370
|
-
|
|
1389
|
+
html {
|
|
1371
1390
|
--mdc-list-list-item-label-text-font: Roboto, sans-serif;
|
|
1372
1391
|
--mdc-list-list-item-label-text-line-height: 22px;
|
|
1373
1392
|
--mdc-list-list-item-label-text-size: 14px;
|
|
@@ -1386,10 +1405,7 @@ html {
|
|
|
1386
1405
|
}
|
|
1387
1406
|
|
|
1388
1407
|
.mdc-list-group__subheader {
|
|
1389
|
-
font
|
|
1390
|
-
font-weight: 500;
|
|
1391
|
-
line-height: 26px;
|
|
1392
|
-
font-family: Roboto, sans-serif;
|
|
1408
|
+
font: 500 16px / 26px Roboto, sans-serif;
|
|
1393
1409
|
letter-spacing: normal;
|
|
1394
1410
|
}
|
|
1395
1411
|
|
|
@@ -1402,34 +1418,8 @@ html {
|
|
|
1402
1418
|
|
|
1403
1419
|
html {
|
|
1404
1420
|
--mat-paginator-container-size: 56px;
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
.mat-mdc-paginator .mat-mdc-form-field-infix {
|
|
1408
|
-
min-height: 40px;
|
|
1409
|
-
}
|
|
1410
|
-
.mat-mdc-paginator .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
|
|
1411
|
-
top: 20px;
|
|
1412
|
-
}
|
|
1413
|
-
.mat-mdc-paginator .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
|
|
1414
|
-
--mat-mdc-form-field-label-transform: translateY(
|
|
1415
|
-
-26.75px)
|
|
1416
|
-
scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));
|
|
1417
|
-
transform: var(--mat-mdc-form-field-label-transform);
|
|
1418
|
-
}
|
|
1419
|
-
.mat-mdc-paginator .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
|
|
1420
|
-
padding-top: 8px;
|
|
1421
|
-
padding-bottom: 8px;
|
|
1422
|
-
}
|
|
1423
|
-
.mat-mdc-paginator .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix {
|
|
1424
|
-
padding-top: 8px;
|
|
1425
|
-
padding-bottom: 8px;
|
|
1426
|
-
}
|
|
1427
|
-
.mat-mdc-paginator .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix {
|
|
1428
|
-
padding-top: 8px;
|
|
1429
|
-
padding-bottom: 8px;
|
|
1430
|
-
}
|
|
1431
|
-
.mat-mdc-paginator .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label {
|
|
1432
|
-
display: none;
|
|
1421
|
+
--mat-paginator-form-field-container-height: 40px;
|
|
1422
|
+
--mat-paginator-form-field-container-vertical-padding: 8px;
|
|
1433
1423
|
}
|
|
1434
1424
|
|
|
1435
1425
|
html {
|
|
@@ -1441,10 +1431,18 @@ html {
|
|
|
1441
1431
|
--mat-paginator-select-trigger-text-size: 12px;
|
|
1442
1432
|
}
|
|
1443
1433
|
|
|
1434
|
+
html {
|
|
1435
|
+
--mdc-tab-indicator-active-indicator-height: 2px;
|
|
1436
|
+
--mdc-tab-indicator-active-indicator-shape: 0;
|
|
1437
|
+
--mdc-secondary-navigation-tab-container-height: 48px;
|
|
1438
|
+
--mat-tab-header-divider-color: transparent;
|
|
1439
|
+
--mat-tab-header-divider-height: 0;
|
|
1440
|
+
}
|
|
1441
|
+
|
|
1444
1442
|
.mat-mdc-tab-group, .mat-mdc-tab-nav-bar {
|
|
1445
1443
|
--mdc-tab-indicator-active-indicator-color: #164e62;
|
|
1446
1444
|
--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
|
|
1447
|
-
--mat-tab-header-pagination-icon-color:
|
|
1445
|
+
--mat-tab-header-pagination-icon-color: black;
|
|
1448
1446
|
--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
|
|
1449
1447
|
--mat-tab-header-active-label-text-color: #164e62;
|
|
1450
1448
|
--mat-tab-header-active-ripple-color: #164e62;
|
|
@@ -1459,7 +1457,7 @@ html {
|
|
|
1459
1457
|
.mat-mdc-tab-group.mat-accent, .mat-mdc-tab-nav-bar.mat-accent {
|
|
1460
1458
|
--mdc-tab-indicator-active-indicator-color: #8ba7b1;
|
|
1461
1459
|
--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
|
|
1462
|
-
--mat-tab-header-pagination-icon-color:
|
|
1460
|
+
--mat-tab-header-pagination-icon-color: black;
|
|
1463
1461
|
--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
|
|
1464
1462
|
--mat-tab-header-active-label-text-color: #8ba7b1;
|
|
1465
1463
|
--mat-tab-header-active-ripple-color: #8ba7b1;
|
|
@@ -1474,7 +1472,7 @@ html {
|
|
|
1474
1472
|
.mat-mdc-tab-group.mat-warn, .mat-mdc-tab-nav-bar.mat-warn {
|
|
1475
1473
|
--mdc-tab-indicator-active-indicator-color: #f44336;
|
|
1476
1474
|
--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
|
|
1477
|
-
--mat-tab-header-pagination-icon-color:
|
|
1475
|
+
--mat-tab-header-pagination-icon-color: black;
|
|
1478
1476
|
--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
|
|
1479
1477
|
--mat-tab-header-active-label-text-color: #f44336;
|
|
1480
1478
|
--mat-tab-header-active-ripple-color: #f44336;
|
|
@@ -1511,10 +1509,20 @@ html {
|
|
|
1511
1509
|
--mat-tab-header-label-text-weight: 500;
|
|
1512
1510
|
}
|
|
1513
1511
|
|
|
1512
|
+
html {
|
|
1513
|
+
--mdc-checkbox-disabled-selected-checkmark-color: #fff;
|
|
1514
|
+
--mdc-checkbox-selected-focus-state-layer-opacity: 0.16;
|
|
1515
|
+
--mdc-checkbox-selected-hover-state-layer-opacity: 0.04;
|
|
1516
|
+
--mdc-checkbox-selected-pressed-state-layer-opacity: 0.16;
|
|
1517
|
+
--mdc-checkbox-unselected-focus-state-layer-opacity: 0.16;
|
|
1518
|
+
--mdc-checkbox-unselected-hover-state-layer-opacity: 0.04;
|
|
1519
|
+
--mdc-checkbox-unselected-pressed-state-layer-opacity: 0.16;
|
|
1520
|
+
}
|
|
1521
|
+
|
|
1514
1522
|
html {
|
|
1515
1523
|
--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
|
|
1516
1524
|
--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
|
|
1517
|
-
--mdc-checkbox-selected-checkmark-color:
|
|
1525
|
+
--mdc-checkbox-selected-checkmark-color: black;
|
|
1518
1526
|
--mdc-checkbox-selected-focus-icon-color: #8ba7b1;
|
|
1519
1527
|
--mdc-checkbox-selected-hover-icon-color: #8ba7b1;
|
|
1520
1528
|
--mdc-checkbox-selected-icon-color: #8ba7b1;
|
|
@@ -1529,12 +1537,16 @@ html {
|
|
|
1529
1537
|
--mdc-checkbox-unselected-focus-state-layer-color: black;
|
|
1530
1538
|
--mdc-checkbox-unselected-hover-state-layer-color: black;
|
|
1531
1539
|
--mdc-checkbox-unselected-pressed-state-layer-color: black;
|
|
1540
|
+
--mat-checkbox-disabled-label-color: rgba(0, 0, 0, 0.38);
|
|
1532
1541
|
}
|
|
1533
1542
|
|
|
1543
|
+
.mat-mdc-checkbox {
|
|
1544
|
+
--mdc-form-field-label-text-color: rgba(0, 0, 0, 0.87);
|
|
1545
|
+
}
|
|
1534
1546
|
.mat-mdc-checkbox.mat-primary {
|
|
1535
1547
|
--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
|
|
1536
1548
|
--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
|
|
1537
|
-
--mdc-checkbox-selected-checkmark-color:
|
|
1549
|
+
--mdc-checkbox-selected-checkmark-color: white;
|
|
1538
1550
|
--mdc-checkbox-selected-focus-icon-color: #164e62;
|
|
1539
1551
|
--mdc-checkbox-selected-hover-icon-color: #164e62;
|
|
1540
1552
|
--mdc-checkbox-selected-icon-color: #164e62;
|
|
@@ -1553,7 +1565,7 @@ html {
|
|
|
1553
1565
|
.mat-mdc-checkbox.mat-warn {
|
|
1554
1566
|
--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
|
|
1555
1567
|
--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
|
|
1556
|
-
--mdc-checkbox-selected-checkmark-color:
|
|
1568
|
+
--mdc-checkbox-selected-checkmark-color: white;
|
|
1557
1569
|
--mdc-checkbox-selected-focus-icon-color: #f44336;
|
|
1558
1570
|
--mdc-checkbox-selected-hover-icon-color: #f44336;
|
|
1559
1571
|
--mdc-checkbox-selected-icon-color: #f44336;
|
|
@@ -1569,232 +1581,231 @@ html {
|
|
|
1569
1581
|
--mdc-checkbox-unselected-hover-state-layer-color: black;
|
|
1570
1582
|
--mdc-checkbox-unselected-pressed-state-layer-color: black;
|
|
1571
1583
|
}
|
|
1572
|
-
.mat-mdc-checkbox .mdc-form-field {
|
|
1573
|
-
color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87));
|
|
1574
|
-
}
|
|
1575
|
-
.mat-mdc-checkbox.mat-mdc-checkbox-disabled label {
|
|
1576
|
-
color: rgba(0, 0, 0, 0.38);
|
|
1577
|
-
}
|
|
1578
1584
|
|
|
1579
1585
|
html {
|
|
1580
1586
|
--mdc-checkbox-state-layer-size: 40px;
|
|
1587
|
+
--mat-checkbox-touch-target-display: block;
|
|
1588
|
+
}
|
|
1589
|
+
|
|
1590
|
+
.mat-mdc-checkbox {
|
|
1591
|
+
--mdc-form-field-label-text-font: Roboto, sans-serif;
|
|
1592
|
+
--mdc-form-field-label-text-line-height: 18px;
|
|
1593
|
+
--mdc-form-field-label-text-size: 12px;
|
|
1594
|
+
--mdc-form-field-label-text-tracking: normal;
|
|
1595
|
+
--mdc-form-field-label-text-weight: 400;
|
|
1581
1596
|
}
|
|
1582
1597
|
|
|
1583
|
-
|
|
1584
|
-
-
|
|
1585
|
-
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1598
|
+
html {
|
|
1599
|
+
--mdc-text-button-container-shape: 4px;
|
|
1600
|
+
--mdc-text-button-keep-touch-target: false;
|
|
1601
|
+
--mdc-filled-button-container-shape: 4px;
|
|
1602
|
+
--mdc-filled-button-keep-touch-target: false;
|
|
1603
|
+
--mdc-protected-button-container-shape: 4px;
|
|
1604
|
+
--mdc-protected-button-keep-touch-target: false;
|
|
1605
|
+
--mdc-outlined-button-keep-touch-target: false;
|
|
1606
|
+
--mdc-outlined-button-outline-width: 1px;
|
|
1607
|
+
--mdc-outlined-button-container-shape: 4px;
|
|
1608
|
+
--mat-text-button-horizontal-padding: 8px;
|
|
1609
|
+
--mat-text-button-with-icon-horizontal-padding: 8px;
|
|
1610
|
+
--mat-text-button-icon-spacing: 8px;
|
|
1611
|
+
--mat-text-button-icon-offset: 0;
|
|
1612
|
+
--mat-filled-button-horizontal-padding: 16px;
|
|
1613
|
+
--mat-filled-button-icon-spacing: 8px;
|
|
1614
|
+
--mat-filled-button-icon-offset: -4px;
|
|
1615
|
+
--mat-protected-button-horizontal-padding: 16px;
|
|
1616
|
+
--mat-protected-button-icon-spacing: 8px;
|
|
1617
|
+
--mat-protected-button-icon-offset: -4px;
|
|
1618
|
+
--mat-outlined-button-horizontal-padding: 15px;
|
|
1619
|
+
--mat-outlined-button-icon-spacing: 8px;
|
|
1620
|
+
--mat-outlined-button-icon-offset: -4px;
|
|
1593
1621
|
}
|
|
1594
1622
|
|
|
1595
|
-
|
|
1596
|
-
--mdc-text-button-label-text-color:
|
|
1623
|
+
html {
|
|
1624
|
+
--mdc-text-button-label-text-color: black;
|
|
1625
|
+
--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
|
|
1626
|
+
--mat-text-button-state-layer-color: black;
|
|
1627
|
+
--mat-text-button-disabled-state-layer-color: black;
|
|
1628
|
+
--mat-text-button-ripple-color: rgba(0, 0, 0, 0.1);
|
|
1629
|
+
--mat-text-button-hover-state-layer-opacity: 0.04;
|
|
1630
|
+
--mat-text-button-focus-state-layer-opacity: 0.12;
|
|
1631
|
+
--mat-text-button-pressed-state-layer-opacity: 0.12;
|
|
1632
|
+
--mdc-filled-button-container-color: white;
|
|
1633
|
+
--mdc-filled-button-label-text-color: black;
|
|
1634
|
+
--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, 0.12);
|
|
1635
|
+
--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
|
|
1636
|
+
--mat-filled-button-state-layer-color: black;
|
|
1637
|
+
--mat-filled-button-disabled-state-layer-color: black;
|
|
1638
|
+
--mat-filled-button-ripple-color: rgba(0, 0, 0, 0.1);
|
|
1639
|
+
--mat-filled-button-hover-state-layer-opacity: 0.04;
|
|
1640
|
+
--mat-filled-button-focus-state-layer-opacity: 0.12;
|
|
1641
|
+
--mat-filled-button-pressed-state-layer-opacity: 0.12;
|
|
1642
|
+
--mdc-protected-button-container-color: white;
|
|
1643
|
+
--mdc-protected-button-label-text-color: black;
|
|
1644
|
+
--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, 0.12);
|
|
1645
|
+
--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
|
|
1646
|
+
--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
|
1647
|
+
--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
|
1648
|
+
--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
1649
|
+
--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
1650
|
+
--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
1651
|
+
--mdc-protected-button-container-shadow-color: #000;
|
|
1652
|
+
--mat-protected-button-state-layer-color: black;
|
|
1653
|
+
--mat-protected-button-disabled-state-layer-color: black;
|
|
1654
|
+
--mat-protected-button-ripple-color: rgba(0, 0, 0, 0.1);
|
|
1655
|
+
--mat-protected-button-hover-state-layer-opacity: 0.04;
|
|
1656
|
+
--mat-protected-button-focus-state-layer-opacity: 0.12;
|
|
1657
|
+
--mat-protected-button-pressed-state-layer-opacity: 0.12;
|
|
1658
|
+
--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, 0.12);
|
|
1659
|
+
--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
|
|
1660
|
+
--mdc-outlined-button-label-text-color: black;
|
|
1661
|
+
--mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
|
|
1662
|
+
--mat-outlined-button-state-layer-color: black;
|
|
1663
|
+
--mat-outlined-button-disabled-state-layer-color: black;
|
|
1664
|
+
--mat-outlined-button-ripple-color: rgba(0, 0, 0, 0.1);
|
|
1665
|
+
--mat-outlined-button-hover-state-layer-opacity: 0.04;
|
|
1666
|
+
--mat-outlined-button-focus-state-layer-opacity: 0.12;
|
|
1667
|
+
--mat-outlined-button-pressed-state-layer-opacity: 0.12;
|
|
1597
1668
|
}
|
|
1669
|
+
|
|
1598
1670
|
.mat-mdc-button.mat-primary {
|
|
1599
1671
|
--mdc-text-button-label-text-color: #164e62;
|
|
1672
|
+
--mat-text-button-state-layer-color: #164e62;
|
|
1673
|
+
--mat-text-button-ripple-color: rgba(22, 78, 98, 0.1);
|
|
1600
1674
|
}
|
|
1601
1675
|
.mat-mdc-button.mat-accent {
|
|
1602
1676
|
--mdc-text-button-label-text-color: #8ba7b1;
|
|
1677
|
+
--mat-text-button-state-layer-color: #8ba7b1;
|
|
1678
|
+
--mat-text-button-ripple-color: rgba(139, 167, 177, 0.1);
|
|
1603
1679
|
}
|
|
1604
1680
|
.mat-mdc-button.mat-warn {
|
|
1605
1681
|
--mdc-text-button-label-text-color: #f44336;
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
|
|
1609
|
-
--mdc-text-button-label-text-color: rgba(0, 0, 0, 0.38);
|
|
1682
|
+
--mat-text-button-state-layer-color: #f44336;
|
|
1683
|
+
--mat-text-button-ripple-color: rgba(244, 67, 54, 0.1);
|
|
1610
1684
|
}
|
|
1611
1685
|
|
|
1612
|
-
.mat-mdc-unelevated-button.mat-unthemed {
|
|
1613
|
-
--mdc-filled-button-container-color: #fff;
|
|
1614
|
-
--mdc-filled-button-label-text-color: #000;
|
|
1615
|
-
}
|
|
1616
1686
|
.mat-mdc-unelevated-button.mat-primary {
|
|
1617
1687
|
--mdc-filled-button-container-color: #164e62;
|
|
1618
|
-
--mdc-filled-button-label-text-color:
|
|
1688
|
+
--mdc-filled-button-label-text-color: white;
|
|
1689
|
+
--mat-filled-button-state-layer-color: white;
|
|
1690
|
+
--mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
|
|
1619
1691
|
}
|
|
1620
1692
|
.mat-mdc-unelevated-button.mat-accent {
|
|
1621
1693
|
--mdc-filled-button-container-color: #8ba7b1;
|
|
1622
|
-
--mdc-filled-button-label-text-color:
|
|
1694
|
+
--mdc-filled-button-label-text-color: black;
|
|
1695
|
+
--mat-filled-button-state-layer-color: black;
|
|
1696
|
+
--mat-filled-button-ripple-color: rgba(0, 0, 0, 0.1);
|
|
1623
1697
|
}
|
|
1624
1698
|
.mat-mdc-unelevated-button.mat-warn {
|
|
1625
1699
|
--mdc-filled-button-container-color: #f44336;
|
|
1626
|
-
--mdc-filled-button-label-text-color:
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, 0.12);
|
|
1630
|
-
--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
|
|
1631
|
-
--mdc-filled-button-container-color: rgba(0, 0, 0, 0.12);
|
|
1632
|
-
--mdc-filled-button-label-text-color: rgba(0, 0, 0, 0.38);
|
|
1700
|
+
--mdc-filled-button-label-text-color: white;
|
|
1701
|
+
--mat-filled-button-state-layer-color: white;
|
|
1702
|
+
--mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
|
|
1633
1703
|
}
|
|
1634
1704
|
|
|
1635
|
-
.mat-mdc-raised-button.mat-unthemed {
|
|
1636
|
-
--mdc-protected-button-container-color: #fff;
|
|
1637
|
-
--mdc-protected-button-label-text-color: #000;
|
|
1638
|
-
}
|
|
1639
1705
|
.mat-mdc-raised-button.mat-primary {
|
|
1640
1706
|
--mdc-protected-button-container-color: #164e62;
|
|
1641
|
-
--mdc-protected-button-label-text-color:
|
|
1707
|
+
--mdc-protected-button-label-text-color: white;
|
|
1708
|
+
--mat-protected-button-state-layer-color: white;
|
|
1709
|
+
--mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
|
|
1642
1710
|
}
|
|
1643
1711
|
.mat-mdc-raised-button.mat-accent {
|
|
1644
1712
|
--mdc-protected-button-container-color: #8ba7b1;
|
|
1645
|
-
--mdc-protected-button-label-text-color:
|
|
1713
|
+
--mdc-protected-button-label-text-color: black;
|
|
1714
|
+
--mat-protected-button-state-layer-color: black;
|
|
1715
|
+
--mat-protected-button-ripple-color: rgba(0, 0, 0, 0.1);
|
|
1646
1716
|
}
|
|
1647
1717
|
.mat-mdc-raised-button.mat-warn {
|
|
1648
1718
|
--mdc-protected-button-container-color: #f44336;
|
|
1649
|
-
--mdc-protected-button-label-text-color:
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, 0.12);
|
|
1653
|
-
--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
|
|
1654
|
-
--mdc-protected-button-container-color: rgba(0, 0, 0, 0.12);
|
|
1655
|
-
--mdc-protected-button-label-text-color: rgba(0, 0, 0, 0.38);
|
|
1656
|
-
--mdc-protected-button-container-elevation: 0;
|
|
1719
|
+
--mdc-protected-button-label-text-color: white;
|
|
1720
|
+
--mat-protected-button-state-layer-color: white;
|
|
1721
|
+
--mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
|
|
1657
1722
|
}
|
|
1658
1723
|
|
|
1659
|
-
.mat-mdc-outlined-button {
|
|
1660
|
-
--mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
|
|
1661
|
-
}
|
|
1662
|
-
.mat-mdc-outlined-button.mat-unthemed {
|
|
1663
|
-
--mdc-outlined-button-label-text-color: #000;
|
|
1664
|
-
}
|
|
1665
1724
|
.mat-mdc-outlined-button.mat-primary {
|
|
1666
1725
|
--mdc-outlined-button-label-text-color: #164e62;
|
|
1726
|
+
--mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
|
|
1727
|
+
--mat-outlined-button-state-layer-color: #164e62;
|
|
1728
|
+
--mat-outlined-button-ripple-color: rgba(22, 78, 98, 0.1);
|
|
1667
1729
|
}
|
|
1668
1730
|
.mat-mdc-outlined-button.mat-accent {
|
|
1669
1731
|
--mdc-outlined-button-label-text-color: #8ba7b1;
|
|
1732
|
+
--mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
|
|
1733
|
+
--mat-outlined-button-state-layer-color: #8ba7b1;
|
|
1734
|
+
--mat-outlined-button-ripple-color: rgba(139, 167, 177, 0.1);
|
|
1670
1735
|
}
|
|
1671
1736
|
.mat-mdc-outlined-button.mat-warn {
|
|
1672
1737
|
--mdc-outlined-button-label-text-color: #f44336;
|
|
1673
|
-
}
|
|
1674
|
-
.mat-mdc-outlined-button[disabled][disabled] {
|
|
1675
|
-
--mdc-outlined-button-label-text-color: rgba(0, 0, 0, 0.38);
|
|
1676
|
-
--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
|
|
1677
1738
|
--mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
|
|
1678
|
-
--
|
|
1739
|
+
--mat-outlined-button-state-layer-color: #f44336;
|
|
1740
|
+
--mat-outlined-button-ripple-color: rgba(244, 67, 54, 0.1);
|
|
1679
1741
|
}
|
|
1680
1742
|
|
|
1681
|
-
|
|
1682
|
-
--
|
|
1683
|
-
--
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
}
|
|
1691
|
-
.mat-mdc-button:active .mat-mdc-button-persistent-ripple::before, .mat-mdc-outlined-button:active .mat-mdc-button-persistent-ripple::before {
|
|
1692
|
-
opacity: 0.12;
|
|
1693
|
-
}
|
|
1694
|
-
.mat-mdc-button.mat-primary, .mat-mdc-outlined-button.mat-primary {
|
|
1695
|
-
--mat-mdc-button-persistent-ripple-color: #164e62;
|
|
1696
|
-
--mat-mdc-button-ripple-color: rgba(22, 78, 98, 0.1);
|
|
1697
|
-
}
|
|
1698
|
-
.mat-mdc-button.mat-accent, .mat-mdc-outlined-button.mat-accent {
|
|
1699
|
-
--mat-mdc-button-persistent-ripple-color: #8ba7b1;
|
|
1700
|
-
--mat-mdc-button-ripple-color: rgba(139, 167, 177, 0.1);
|
|
1701
|
-
}
|
|
1702
|
-
.mat-mdc-button.mat-warn, .mat-mdc-outlined-button.mat-warn {
|
|
1703
|
-
--mat-mdc-button-persistent-ripple-color: #f44336;
|
|
1704
|
-
--mat-mdc-button-ripple-color: rgba(244, 67, 54, 0.1);
|
|
1705
|
-
}
|
|
1706
|
-
|
|
1707
|
-
.mat-mdc-raised-button, .mat-mdc-unelevated-button {
|
|
1708
|
-
--mat-mdc-button-persistent-ripple-color: #000;
|
|
1709
|
-
--mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1);
|
|
1710
|
-
}
|
|
1711
|
-
.mat-mdc-raised-button:hover .mat-mdc-button-persistent-ripple::before, .mat-mdc-unelevated-button:hover .mat-mdc-button-persistent-ripple::before {
|
|
1712
|
-
opacity: 0.04;
|
|
1713
|
-
}
|
|
1714
|
-
.mat-mdc-raised-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .mat-mdc-raised-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before, .mat-mdc-unelevated-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .mat-mdc-unelevated-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before {
|
|
1715
|
-
opacity: 0.12;
|
|
1716
|
-
}
|
|
1717
|
-
.mat-mdc-raised-button:active .mat-mdc-button-persistent-ripple::before, .mat-mdc-unelevated-button:active .mat-mdc-button-persistent-ripple::before {
|
|
1718
|
-
opacity: 0.12;
|
|
1719
|
-
}
|
|
1720
|
-
.mat-mdc-raised-button.mat-primary, .mat-mdc-unelevated-button.mat-primary {
|
|
1721
|
-
--mat-mdc-button-persistent-ripple-color: #fff;
|
|
1722
|
-
--mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
|
|
1723
|
-
}
|
|
1724
|
-
.mat-mdc-raised-button.mat-accent, .mat-mdc-unelevated-button.mat-accent {
|
|
1725
|
-
--mat-mdc-button-persistent-ripple-color: #000;
|
|
1726
|
-
--mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1);
|
|
1727
|
-
}
|
|
1728
|
-
.mat-mdc-raised-button.mat-warn, .mat-mdc-unelevated-button.mat-warn {
|
|
1729
|
-
--mat-mdc-button-persistent-ripple-color: #fff;
|
|
1730
|
-
--mat-mdc-button-ripple-color: rgba(255, 255, 255, 0.1);
|
|
1743
|
+
html {
|
|
1744
|
+
--mdc-text-button-container-height: 36px;
|
|
1745
|
+
--mdc-filled-button-container-height: 36px;
|
|
1746
|
+
--mdc-outlined-button-container-height: 36px;
|
|
1747
|
+
--mdc-protected-button-container-height: 36px;
|
|
1748
|
+
--mat-text-button-touch-target-display: block;
|
|
1749
|
+
--mat-filled-button-touch-target-display: block;
|
|
1750
|
+
--mat-protected-button-touch-target-display: block;
|
|
1751
|
+
--mat-outlined-button-touch-target-display: block;
|
|
1731
1752
|
}
|
|
1732
1753
|
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1754
|
+
html {
|
|
1755
|
+
--mdc-text-button-label-text-font: Roboto, sans-serif;
|
|
1756
|
+
--mdc-text-button-label-text-size: 13px;
|
|
1757
|
+
--mdc-text-button-label-text-tracking: normal;
|
|
1758
|
+
--mdc-text-button-label-text-weight: 500;
|
|
1759
|
+
--mdc-text-button-label-text-transform: none;
|
|
1760
|
+
--mdc-filled-button-label-text-font: Roboto, sans-serif;
|
|
1761
|
+
--mdc-filled-button-label-text-size: 13px;
|
|
1762
|
+
--mdc-filled-button-label-text-tracking: normal;
|
|
1763
|
+
--mdc-filled-button-label-text-weight: 500;
|
|
1764
|
+
--mdc-filled-button-label-text-transform: none;
|
|
1765
|
+
--mdc-outlined-button-label-text-font: Roboto, sans-serif;
|
|
1766
|
+
--mdc-outlined-button-label-text-size: 13px;
|
|
1767
|
+
--mdc-outlined-button-label-text-tracking: normal;
|
|
1768
|
+
--mdc-outlined-button-label-text-weight: 500;
|
|
1769
|
+
--mdc-outlined-button-label-text-transform: none;
|
|
1770
|
+
--mdc-protected-button-label-text-font: Roboto, sans-serif;
|
|
1771
|
+
--mdc-protected-button-label-text-size: 13px;
|
|
1772
|
+
--mdc-protected-button-label-text-tracking: normal;
|
|
1773
|
+
--mdc-protected-button-label-text-weight: 500;
|
|
1774
|
+
--mdc-protected-button-label-text-transform: none;
|
|
1738
1775
|
}
|
|
1739
1776
|
|
|
1740
|
-
|
|
1741
|
-
-
|
|
1742
|
-
-webkit-font-smoothing: antialiased;
|
|
1743
|
-
font-family: var(--mdc-typography-button-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
|
|
1744
|
-
font-size: var(--mdc-typography-button-font-size, 13px);
|
|
1745
|
-
line-height: var(--mdc-typography-button-line-height, 13px);
|
|
1746
|
-
font-weight: var(--mdc-typography-button-font-weight, 500);
|
|
1747
|
-
letter-spacing: var(--mdc-typography-button-letter-spacing, normal);
|
|
1748
|
-
text-decoration: var(--mdc-typography-button-text-decoration, none);
|
|
1749
|
-
text-transform: var(--mdc-typography-button-text-transform, none);
|
|
1777
|
+
html {
|
|
1778
|
+
--mdc-icon-button-icon-size: 24px;
|
|
1750
1779
|
}
|
|
1751
1780
|
|
|
1752
|
-
|
|
1753
|
-
--mat-mdc-button-persistent-ripple-color: #000;
|
|
1754
|
-
--mat-mdc-button-ripple-color: rgba(0, 0, 0, 0.1);
|
|
1781
|
+
html {
|
|
1755
1782
|
--mdc-icon-button-icon-color: inherit;
|
|
1756
|
-
--
|
|
1757
|
-
--mat-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
opacity: 0.04;
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
.mat-mdc-icon-button:active .mat-mdc-button-persistent-ripple::before {
|
|
1766
|
-
opacity: 0.12;
|
|
1767
|
-
}
|
|
1768
|
-
.mat-mdc-icon-button.mat-primary {
|
|
1769
|
-
--mat-mdc-button-persistent-ripple-color: #6200ee;
|
|
1770
|
-
--mat-mdc-button-ripple-color: rgba(98, 0, 238, 0.1);
|
|
1771
|
-
}
|
|
1772
|
-
.mat-mdc-icon-button.mat-accent {
|
|
1773
|
-
--mat-mdc-button-persistent-ripple-color: #018786;
|
|
1774
|
-
--mat-mdc-button-ripple-color: rgba(1, 135, 134, 0.1);
|
|
1775
|
-
}
|
|
1776
|
-
.mat-mdc-icon-button.mat-warn {
|
|
1777
|
-
--mat-mdc-button-persistent-ripple-color: #b00020;
|
|
1778
|
-
--mat-mdc-button-ripple-color: rgba(176, 0, 32, 0.1);
|
|
1779
|
-
}
|
|
1780
|
-
.mat-mdc-icon-button.mat-primary {
|
|
1783
|
+
--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, 0.38);
|
|
1784
|
+
--mat-icon-button-state-layer-color: black;
|
|
1785
|
+
--mat-icon-button-disabled-state-layer-color: black;
|
|
1786
|
+
--mat-icon-button-ripple-color: rgba(0, 0, 0, 0.1);
|
|
1787
|
+
--mat-icon-button-hover-state-layer-opacity: 0.04;
|
|
1788
|
+
--mat-icon-button-focus-state-layer-opacity: 0.12;
|
|
1789
|
+
--mat-icon-button-pressed-state-layer-opacity: 0.12;
|
|
1790
|
+
}
|
|
1791
|
+
html .mat-mdc-icon-button.mat-primary {
|
|
1781
1792
|
--mdc-icon-button-icon-color: #164e62;
|
|
1782
|
-
--mat-
|
|
1783
|
-
--mat-
|
|
1793
|
+
--mat-icon-button-state-layer-color: #164e62;
|
|
1794
|
+
--mat-icon-button-ripple-color: rgba(22, 78, 98, 0.1);
|
|
1784
1795
|
}
|
|
1785
|
-
.mat-mdc-icon-button.mat-accent {
|
|
1796
|
+
html .mat-mdc-icon-button.mat-accent {
|
|
1786
1797
|
--mdc-icon-button-icon-color: #8ba7b1;
|
|
1787
|
-
--mat-
|
|
1788
|
-
--mat-
|
|
1798
|
+
--mat-icon-button-state-layer-color: #8ba7b1;
|
|
1799
|
+
--mat-icon-button-ripple-color: rgba(139, 167, 177, 0.1);
|
|
1789
1800
|
}
|
|
1790
|
-
.mat-mdc-icon-button.mat-warn {
|
|
1801
|
+
html .mat-mdc-icon-button.mat-warn {
|
|
1791
1802
|
--mdc-icon-button-icon-color: #f44336;
|
|
1792
|
-
--mat-
|
|
1793
|
-
--mat-
|
|
1803
|
+
--mat-icon-button-state-layer-color: #f44336;
|
|
1804
|
+
--mat-icon-button-ripple-color: rgba(244, 67, 54, 0.1);
|
|
1794
1805
|
}
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
--
|
|
1806
|
+
|
|
1807
|
+
html {
|
|
1808
|
+
--mat-icon-button-touch-target-display: block;
|
|
1798
1809
|
}
|
|
1799
1810
|
|
|
1800
1811
|
.mat-mdc-icon-button.mat-mdc-button-base {
|
|
@@ -1804,101 +1815,122 @@ html {
|
|
|
1804
1815
|
padding: 12px;
|
|
1805
1816
|
}
|
|
1806
1817
|
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
--
|
|
1810
|
-
--
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
opacity: 0.04;
|
|
1815
|
-
}
|
|
1816
|
-
.mat-mdc-fab.cdk-program-focused .mat-mdc-button-persistent-ripple::before, .mat-mdc-fab.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,
|
|
1817
|
-
.mat-mdc-mini-fab.cdk-program-focused .mat-mdc-button-persistent-ripple::before,
|
|
1818
|
-
.mat-mdc-mini-fab.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before {
|
|
1819
|
-
opacity: 0.12;
|
|
1818
|
+
html {
|
|
1819
|
+
--mdc-fab-container-shape: 50%;
|
|
1820
|
+
--mdc-fab-icon-size: 24px;
|
|
1821
|
+
--mdc-fab-small-container-shape: 50%;
|
|
1822
|
+
--mdc-fab-small-icon-size: 24px;
|
|
1823
|
+
--mdc-extended-fab-container-height: 48px;
|
|
1824
|
+
--mdc-extended-fab-container-shape: 24px;
|
|
1820
1825
|
}
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1826
|
+
|
|
1827
|
+
html {
|
|
1828
|
+
--mdc-fab-container-color: white;
|
|
1829
|
+
--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
|
|
1830
|
+
--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
1831
|
+
--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
1832
|
+
--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
|
|
1833
|
+
--mdc-fab-container-shadow-color: #000;
|
|
1834
|
+
--mat-fab-foreground-color: black;
|
|
1835
|
+
--mat-fab-state-layer-color: black;
|
|
1836
|
+
--mat-fab-disabled-state-layer-color: black;
|
|
1837
|
+
--mat-fab-ripple-color: rgba(0, 0, 0, 0.1);
|
|
1838
|
+
--mat-fab-hover-state-layer-opacity: 0.04;
|
|
1839
|
+
--mat-fab-focus-state-layer-opacity: 0.12;
|
|
1840
|
+
--mat-fab-pressed-state-layer-opacity: 0.12;
|
|
1841
|
+
--mat-fab-disabled-state-container-color: rgba(0, 0, 0, 0.12);
|
|
1842
|
+
--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, 0.38);
|
|
1843
|
+
--mdc-fab-small-container-color: white;
|
|
1844
|
+
--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
|
|
1845
|
+
--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
1846
|
+
--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
1847
|
+
--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
|
|
1848
|
+
--mdc-fab-small-container-shadow-color: #000;
|
|
1849
|
+
--mat-fab-small-foreground-color: black;
|
|
1850
|
+
--mat-fab-small-state-layer-color: black;
|
|
1851
|
+
--mat-fab-small-disabled-state-layer-color: black;
|
|
1852
|
+
--mat-fab-small-ripple-color: rgba(0, 0, 0, 0.1);
|
|
1853
|
+
--mat-fab-small-hover-state-layer-opacity: 0.04;
|
|
1854
|
+
--mat-fab-small-focus-state-layer-opacity: 0.12;
|
|
1855
|
+
--mat-fab-small-pressed-state-layer-opacity: 0.12;
|
|
1856
|
+
--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, 0.12);
|
|
1857
|
+
--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, 0.38);
|
|
1858
|
+
--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
|
|
1859
|
+
--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
1860
|
+
--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
1861
|
+
--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
|
|
1862
|
+
--mdc-extended-fab-container-shadow-color: #000;
|
|
1863
|
+
}
|
|
1864
|
+
html .mat-mdc-fab.mat-primary {
|
|
1865
|
+
--mdc-fab-container-color: #164e62;
|
|
1866
|
+
--mat-fab-foreground-color: white;
|
|
1867
|
+
--mat-fab-state-layer-color: white;
|
|
1868
|
+
--mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
|
|
1824
1869
|
}
|
|
1825
|
-
.mat-mdc-fab.mat-
|
|
1826
|
-
|
|
1827
|
-
--mat-
|
|
1828
|
-
--mat-
|
|
1870
|
+
html .mat-mdc-fab.mat-accent {
|
|
1871
|
+
--mdc-fab-container-color: #8ba7b1;
|
|
1872
|
+
--mat-fab-foreground-color: black;
|
|
1873
|
+
--mat-fab-state-layer-color: black;
|
|
1874
|
+
--mat-fab-ripple-color: rgba(0, 0, 0, 0.1);
|
|
1829
1875
|
}
|
|
1830
|
-
.mat-mdc-fab.mat-
|
|
1831
|
-
|
|
1832
|
-
--mat-
|
|
1833
|
-
--mat-
|
|
1876
|
+
html .mat-mdc-fab.mat-warn {
|
|
1877
|
+
--mdc-fab-container-color: #f44336;
|
|
1878
|
+
--mat-fab-foreground-color: white;
|
|
1879
|
+
--mat-fab-state-layer-color: white;
|
|
1880
|
+
--mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
|
|
1834
1881
|
}
|
|
1835
|
-
.mat-mdc-fab.mat-
|
|
1836
|
-
|
|
1837
|
-
--mat-
|
|
1838
|
-
--mat-
|
|
1882
|
+
html .mat-mdc-mini-fab.mat-primary {
|
|
1883
|
+
--mdc-fab-small-container-color: #164e62;
|
|
1884
|
+
--mat-fab-small-foreground-color: white;
|
|
1885
|
+
--mat-fab-small-state-layer-color: white;
|
|
1886
|
+
--mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
|
|
1839
1887
|
}
|
|
1840
|
-
.mat-mdc-fab
|
|
1841
|
-
|
|
1842
|
-
--
|
|
1843
|
-
--
|
|
1844
|
-
--mat-
|
|
1888
|
+
html .mat-mdc-mini-fab.mat-accent {
|
|
1889
|
+
--mdc-fab-small-container-color: #8ba7b1;
|
|
1890
|
+
--mat-fab-small-foreground-color: black;
|
|
1891
|
+
--mat-fab-small-state-layer-color: black;
|
|
1892
|
+
--mat-fab-small-ripple-color: rgba(0, 0, 0, 0.1);
|
|
1845
1893
|
}
|
|
1846
|
-
.mat-mdc-fab.mat-
|
|
1847
|
-
|
|
1848
|
-
--
|
|
1849
|
-
--
|
|
1850
|
-
--mat-
|
|
1894
|
+
html .mat-mdc-mini-fab.mat-warn {
|
|
1895
|
+
--mdc-fab-small-container-color: #f44336;
|
|
1896
|
+
--mat-fab-small-foreground-color: white;
|
|
1897
|
+
--mat-fab-small-state-layer-color: white;
|
|
1898
|
+
--mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
|
|
1851
1899
|
}
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
--
|
|
1855
|
-
--
|
|
1856
|
-
--mat-mdc-fab-color: #fff;
|
|
1857
|
-
}
|
|
1858
|
-
.mat-mdc-fab.mat-accent,
|
|
1859
|
-
.mat-mdc-mini-fab.mat-accent {
|
|
1860
|
-
--mdc-fab-container-color: #8ba7b1;
|
|
1861
|
-
--mdc-fab-icon-color: black;
|
|
1862
|
-
--mat-mdc-fab-color: #000;
|
|
1900
|
+
|
|
1901
|
+
html {
|
|
1902
|
+
--mat-fab-touch-target-display: block;
|
|
1903
|
+
--mat-fab-small-touch-target-display: block;
|
|
1863
1904
|
}
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
--mdc-fab-container-color: #f44336;
|
|
1867
|
-
--mdc-fab-icon-color: white;
|
|
1868
|
-
--mat-mdc-fab-color: #fff;
|
|
1869
|
-
}
|
|
1870
|
-
|
|
1871
|
-
.mdc-fab--extended {
|
|
1872
|
-
-moz-osx-font-smoothing: grayscale;
|
|
1873
|
-
-webkit-font-smoothing: antialiased;
|
|
1874
|
-
font-family: var(--mdc-typography-button-font-family, var(--mdc-typography-font-family, Roboto, sans-serif));
|
|
1875
|
-
font-size: var(--mdc-typography-button-font-size, 13px);
|
|
1876
|
-
line-height: var(--mdc-typography-button-line-height, 13px);
|
|
1877
|
-
font-weight: var(--mdc-typography-button-font-weight, 500);
|
|
1878
|
-
letter-spacing: var(--mdc-typography-button-letter-spacing, normal);
|
|
1879
|
-
text-decoration: var(--mdc-typography-button-text-decoration, none);
|
|
1880
|
-
text-transform: var(--mdc-typography-button-text-transform, none);
|
|
1881
|
-
}
|
|
1882
|
-
.mat-mdc-extended-fab {
|
|
1905
|
+
|
|
1906
|
+
html {
|
|
1883
1907
|
--mdc-extended-fab-label-text-font: Roboto, sans-serif;
|
|
1884
1908
|
--mdc-extended-fab-label-text-size: 13px;
|
|
1885
1909
|
--mdc-extended-fab-label-text-tracking: normal;
|
|
1886
1910
|
--mdc-extended-fab-label-text-weight: 500;
|
|
1887
1911
|
}
|
|
1888
1912
|
|
|
1889
|
-
|
|
1913
|
+
html {
|
|
1914
|
+
--mdc-snackbar-container-shape: 4px;
|
|
1915
|
+
}
|
|
1916
|
+
|
|
1917
|
+
html {
|
|
1890
1918
|
--mdc-snackbar-container-color: #333333;
|
|
1891
1919
|
--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, 0.87);
|
|
1892
1920
|
--mat-snack-bar-button-color: #8ba7b1;
|
|
1893
1921
|
}
|
|
1894
1922
|
|
|
1895
|
-
|
|
1923
|
+
html {
|
|
1896
1924
|
--mdc-snackbar-supporting-text-font: Roboto, sans-serif;
|
|
1897
1925
|
--mdc-snackbar-supporting-text-line-height: 18px;
|
|
1898
1926
|
--mdc-snackbar-supporting-text-size: 12px;
|
|
1899
1927
|
--mdc-snackbar-supporting-text-weight: 400;
|
|
1900
1928
|
}
|
|
1901
1929
|
|
|
1930
|
+
html {
|
|
1931
|
+
--mat-table-row-item-outline-width: 1px;
|
|
1932
|
+
}
|
|
1933
|
+
|
|
1902
1934
|
html {
|
|
1903
1935
|
--mat-table-background-color: white;
|
|
1904
1936
|
--mat-table-header-headline-color: rgba(0, 0, 0, 0.87);
|
|
@@ -1930,193 +1962,38 @@ html {
|
|
|
1930
1962
|
--mat-table-footer-supporting-text-tracking: normal;
|
|
1931
1963
|
}
|
|
1932
1964
|
|
|
1933
|
-
|
|
1965
|
+
html {
|
|
1966
|
+
--mdc-circular-progress-active-indicator-width: 4px;
|
|
1967
|
+
--mdc-circular-progress-size: 48px;
|
|
1968
|
+
}
|
|
1969
|
+
|
|
1970
|
+
html {
|
|
1934
1971
|
--mdc-circular-progress-active-indicator-color: #164e62;
|
|
1935
1972
|
}
|
|
1936
|
-
.mat-
|
|
1973
|
+
html .mat-accent {
|
|
1937
1974
|
--mdc-circular-progress-active-indicator-color: #8ba7b1;
|
|
1938
1975
|
}
|
|
1939
|
-
.mat-
|
|
1976
|
+
html .mat-warn {
|
|
1940
1977
|
--mdc-circular-progress-active-indicator-color: #f44336;
|
|
1941
1978
|
}
|
|
1942
1979
|
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
pointer-events: none;
|
|
1961
|
-
background-color: var(--mat-badge-background-color);
|
|
1962
|
-
color: var(--mat-badge-text-color);
|
|
1963
|
-
font-family: Roboto, sans-serif;
|
|
1964
|
-
/* @alternate */
|
|
1965
|
-
font-family: var(--mat-badge-text-font, Roboto, sans-serif);
|
|
1966
|
-
font-size: 12px;
|
|
1967
|
-
/* @alternate */
|
|
1968
|
-
font-size: var(--mat-badge-text-size, 12px);
|
|
1969
|
-
font-weight: 600;
|
|
1970
|
-
/* @alternate */
|
|
1971
|
-
font-weight: var(--mat-badge-text-weight, 600);
|
|
1972
|
-
}
|
|
1973
|
-
.cdk-high-contrast-active .mat-badge-content {
|
|
1974
|
-
outline: solid 1px;
|
|
1975
|
-
border-radius: 0;
|
|
1976
|
-
}
|
|
1977
|
-
|
|
1978
|
-
.mat-badge-disabled .mat-badge-content {
|
|
1979
|
-
background-color: var(--mat-badge-disabled-state-background-color);
|
|
1980
|
-
color: var(--mat-badge-disabled-state-text-color);
|
|
1981
|
-
}
|
|
1982
|
-
|
|
1983
|
-
.mat-badge-hidden .mat-badge-content {
|
|
1984
|
-
display: none;
|
|
1985
|
-
}
|
|
1986
|
-
|
|
1987
|
-
.ng-animate-disabled .mat-badge-content,
|
|
1988
|
-
.mat-badge-content._mat-animation-noopable {
|
|
1989
|
-
transition: none;
|
|
1990
|
-
}
|
|
1991
|
-
|
|
1992
|
-
.mat-badge-content.mat-badge-active {
|
|
1993
|
-
transform: none;
|
|
1994
|
-
}
|
|
1995
|
-
|
|
1996
|
-
.mat-badge-small .mat-badge-content {
|
|
1997
|
-
width: 16px;
|
|
1998
|
-
height: 16px;
|
|
1999
|
-
line-height: 16px;
|
|
2000
|
-
font-size: 9px;
|
|
2001
|
-
/* @alternate */
|
|
2002
|
-
font-size: var(--mat-badge-small-size-text-size, 9px);
|
|
2003
|
-
}
|
|
2004
|
-
.mat-badge-small.mat-badge-above .mat-badge-content {
|
|
2005
|
-
top: -8px;
|
|
2006
|
-
}
|
|
2007
|
-
.mat-badge-small.mat-badge-below .mat-badge-content {
|
|
2008
|
-
bottom: -8px;
|
|
2009
|
-
}
|
|
2010
|
-
.mat-badge-small.mat-badge-before .mat-badge-content {
|
|
2011
|
-
left: -16px;
|
|
2012
|
-
}
|
|
2013
|
-
[dir=rtl] .mat-badge-small.mat-badge-before .mat-badge-content {
|
|
2014
|
-
left: auto;
|
|
2015
|
-
right: -16px;
|
|
2016
|
-
}
|
|
2017
|
-
.mat-badge-small.mat-badge-after .mat-badge-content {
|
|
2018
|
-
right: -16px;
|
|
2019
|
-
}
|
|
2020
|
-
[dir=rtl] .mat-badge-small.mat-badge-after .mat-badge-content {
|
|
2021
|
-
right: auto;
|
|
2022
|
-
left: -16px;
|
|
2023
|
-
}
|
|
2024
|
-
.mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
|
|
2025
|
-
left: -8px;
|
|
2026
|
-
}
|
|
2027
|
-
[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
|
|
2028
|
-
left: auto;
|
|
2029
|
-
right: -8px;
|
|
2030
|
-
}
|
|
2031
|
-
.mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
|
|
2032
|
-
right: -8px;
|
|
2033
|
-
}
|
|
2034
|
-
[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
|
|
2035
|
-
right: auto;
|
|
2036
|
-
left: -8px;
|
|
2037
|
-
}
|
|
2038
|
-
|
|
2039
|
-
.mat-badge-medium .mat-badge-content {
|
|
2040
|
-
width: 22px;
|
|
2041
|
-
height: 22px;
|
|
2042
|
-
line-height: 22px;
|
|
2043
|
-
}
|
|
2044
|
-
.mat-badge-medium.mat-badge-above .mat-badge-content {
|
|
2045
|
-
top: -11px;
|
|
2046
|
-
}
|
|
2047
|
-
.mat-badge-medium.mat-badge-below .mat-badge-content {
|
|
2048
|
-
bottom: -11px;
|
|
2049
|
-
}
|
|
2050
|
-
.mat-badge-medium.mat-badge-before .mat-badge-content {
|
|
2051
|
-
left: -22px;
|
|
2052
|
-
}
|
|
2053
|
-
[dir=rtl] .mat-badge-medium.mat-badge-before .mat-badge-content {
|
|
2054
|
-
left: auto;
|
|
2055
|
-
right: -22px;
|
|
2056
|
-
}
|
|
2057
|
-
.mat-badge-medium.mat-badge-after .mat-badge-content {
|
|
2058
|
-
right: -22px;
|
|
2059
|
-
}
|
|
2060
|
-
[dir=rtl] .mat-badge-medium.mat-badge-after .mat-badge-content {
|
|
2061
|
-
right: auto;
|
|
2062
|
-
left: -22px;
|
|
2063
|
-
}
|
|
2064
|
-
.mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
|
|
2065
|
-
left: -11px;
|
|
2066
|
-
}
|
|
2067
|
-
[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
|
|
2068
|
-
left: auto;
|
|
2069
|
-
right: -11px;
|
|
2070
|
-
}
|
|
2071
|
-
.mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
|
|
2072
|
-
right: -11px;
|
|
2073
|
-
}
|
|
2074
|
-
[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
|
|
2075
|
-
right: auto;
|
|
2076
|
-
left: -11px;
|
|
2077
|
-
}
|
|
2078
|
-
|
|
2079
|
-
.mat-badge-large .mat-badge-content {
|
|
2080
|
-
width: 28px;
|
|
2081
|
-
height: 28px;
|
|
2082
|
-
line-height: 28px;
|
|
2083
|
-
font-size: 24px;
|
|
2084
|
-
/* @alternate */
|
|
2085
|
-
font-size: var(--mat-badge-large-size-text-size, 24px);
|
|
2086
|
-
}
|
|
2087
|
-
.mat-badge-large.mat-badge-above .mat-badge-content {
|
|
2088
|
-
top: -14px;
|
|
2089
|
-
}
|
|
2090
|
-
.mat-badge-large.mat-badge-below .mat-badge-content {
|
|
2091
|
-
bottom: -14px;
|
|
2092
|
-
}
|
|
2093
|
-
.mat-badge-large.mat-badge-before .mat-badge-content {
|
|
2094
|
-
left: -28px;
|
|
2095
|
-
}
|
|
2096
|
-
[dir=rtl] .mat-badge-large.mat-badge-before .mat-badge-content {
|
|
2097
|
-
left: auto;
|
|
2098
|
-
right: -28px;
|
|
2099
|
-
}
|
|
2100
|
-
.mat-badge-large.mat-badge-after .mat-badge-content {
|
|
2101
|
-
right: -28px;
|
|
2102
|
-
}
|
|
2103
|
-
[dir=rtl] .mat-badge-large.mat-badge-after .mat-badge-content {
|
|
2104
|
-
right: auto;
|
|
2105
|
-
left: -28px;
|
|
2106
|
-
}
|
|
2107
|
-
.mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
|
|
2108
|
-
left: -14px;
|
|
2109
|
-
}
|
|
2110
|
-
[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
|
|
2111
|
-
left: auto;
|
|
2112
|
-
right: -14px;
|
|
2113
|
-
}
|
|
2114
|
-
.mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
|
|
2115
|
-
right: -14px;
|
|
2116
|
-
}
|
|
2117
|
-
[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
|
|
2118
|
-
right: auto;
|
|
2119
|
-
left: -14px;
|
|
1980
|
+
html {
|
|
1981
|
+
--mat-badge-container-shape: 50%;
|
|
1982
|
+
--mat-badge-container-size: unset;
|
|
1983
|
+
--mat-badge-small-size-container-size: unset;
|
|
1984
|
+
--mat-badge-large-size-container-size: unset;
|
|
1985
|
+
--mat-badge-legacy-container-size: 22px;
|
|
1986
|
+
--mat-badge-legacy-small-size-container-size: 16px;
|
|
1987
|
+
--mat-badge-legacy-large-size-container-size: 28px;
|
|
1988
|
+
--mat-badge-container-offset: -11px 0;
|
|
1989
|
+
--mat-badge-small-size-container-offset: -8px 0;
|
|
1990
|
+
--mat-badge-large-size-container-offset: -14px 0;
|
|
1991
|
+
--mat-badge-container-overlap-offset: -11px;
|
|
1992
|
+
--mat-badge-small-size-container-overlap-offset: -8px;
|
|
1993
|
+
--mat-badge-large-size-container-overlap-offset: -14px;
|
|
1994
|
+
--mat-badge-container-padding: 0;
|
|
1995
|
+
--mat-badge-small-size-container-padding: 0;
|
|
1996
|
+
--mat-badge-large-size-container-padding: 0;
|
|
2120
1997
|
}
|
|
2121
1998
|
|
|
2122
1999
|
html {
|
|
@@ -2144,6 +2021,10 @@ html {
|
|
|
2144
2021
|
--mat-badge-large-size-text-size: 24px;
|
|
2145
2022
|
}
|
|
2146
2023
|
|
|
2024
|
+
html {
|
|
2025
|
+
--mat-bottom-sheet-container-shape: 4px;
|
|
2026
|
+
}
|
|
2027
|
+
|
|
2147
2028
|
html {
|
|
2148
2029
|
--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, 0.87);
|
|
2149
2030
|
--mat-bottom-sheet-container-background-color: white;
|
|
@@ -2157,6 +2038,15 @@ html {
|
|
|
2157
2038
|
--mat-bottom-sheet-container-text-weight: 400;
|
|
2158
2039
|
}
|
|
2159
2040
|
|
|
2041
|
+
html {
|
|
2042
|
+
--mat-legacy-button-toggle-height: 36px;
|
|
2043
|
+
--mat-legacy-button-toggle-shape: 2px;
|
|
2044
|
+
--mat-legacy-button-toggle-focus-state-layer-opacity: 1;
|
|
2045
|
+
--mat-standard-button-toggle-shape: 4px;
|
|
2046
|
+
--mat-standard-button-toggle-hover-state-layer-opacity: 0.04;
|
|
2047
|
+
--mat-standard-button-toggle-focus-state-layer-opacity: 0.12;
|
|
2048
|
+
}
|
|
2049
|
+
|
|
2160
2050
|
html {
|
|
2161
2051
|
--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, 0.38);
|
|
2162
2052
|
--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, 0.12);
|
|
@@ -2182,8 +2072,23 @@ html {
|
|
|
2182
2072
|
}
|
|
2183
2073
|
|
|
2184
2074
|
html {
|
|
2185
|
-
--mat-legacy-button-toggle-text-font: Roboto, sans-serif;
|
|
2186
|
-
--mat-
|
|
2075
|
+
--mat-legacy-button-toggle-label-text-font: Roboto, sans-serif;
|
|
2076
|
+
--mat-legacy-button-toggle-label-text-line-height: 22px;
|
|
2077
|
+
--mat-legacy-button-toggle-label-text-size: 14px;
|
|
2078
|
+
--mat-legacy-button-toggle-label-text-tracking: normal;
|
|
2079
|
+
--mat-legacy-button-toggle-label-text-weight: 400;
|
|
2080
|
+
--mat-standard-button-toggle-label-text-font: Roboto, sans-serif;
|
|
2081
|
+
--mat-standard-button-toggle-label-text-line-height: 22px;
|
|
2082
|
+
--mat-standard-button-toggle-label-text-size: 14px;
|
|
2083
|
+
--mat-standard-button-toggle-label-text-tracking: normal;
|
|
2084
|
+
--mat-standard-button-toggle-label-text-weight: 400;
|
|
2085
|
+
}
|
|
2086
|
+
|
|
2087
|
+
html {
|
|
2088
|
+
--mat-datepicker-calendar-container-shape: 4px;
|
|
2089
|
+
--mat-datepicker-calendar-container-touch-shape: 4px;
|
|
2090
|
+
--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
|
2091
|
+
--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
|
|
2187
2092
|
}
|
|
2188
2093
|
|
|
2189
2094
|
html {
|
|
@@ -2200,6 +2105,7 @@ html {
|
|
|
2200
2105
|
--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
|
|
2201
2106
|
--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, 0.54);
|
|
2202
2107
|
--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, 0.54);
|
|
2108
|
+
--mat-datepicker-calendar-period-button-text-color: black;
|
|
2203
2109
|
--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, 0.54);
|
|
2204
2110
|
--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, 0.54);
|
|
2205
2111
|
--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, 0.12);
|
|
@@ -2249,15 +2155,15 @@ html {
|
|
|
2249
2155
|
--mat-datepicker-toggle-active-state-icon-color: #f44336;
|
|
2250
2156
|
}
|
|
2251
2157
|
|
|
2158
|
+
.mat-calendar-controls {
|
|
2159
|
+
--mat-icon-button-touch-target-display: none;
|
|
2160
|
+
}
|
|
2252
2161
|
.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base {
|
|
2253
2162
|
--mdc-icon-button-state-layer-size: 40px;
|
|
2254
2163
|
width: var(--mdc-icon-button-state-layer-size);
|
|
2255
2164
|
height: var(--mdc-icon-button-state-layer-size);
|
|
2256
2165
|
padding: 8px;
|
|
2257
2166
|
}
|
|
2258
|
-
.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
|
|
2259
|
-
display: none;
|
|
2260
|
-
}
|
|
2261
2167
|
|
|
2262
2168
|
html {
|
|
2263
2169
|
--mat-datepicker-calendar-text-font: Roboto, sans-serif;
|
|
@@ -2270,10 +2176,20 @@ html {
|
|
|
2270
2176
|
--mat-datepicker-calendar-header-text-weight: 400;
|
|
2271
2177
|
}
|
|
2272
2178
|
|
|
2179
|
+
html {
|
|
2180
|
+
--mat-divider-width: 1px;
|
|
2181
|
+
}
|
|
2182
|
+
|
|
2273
2183
|
html {
|
|
2274
2184
|
--mat-divider-color: rgba(0, 0, 0, 0.12);
|
|
2275
2185
|
}
|
|
2276
2186
|
|
|
2187
|
+
html {
|
|
2188
|
+
--mat-expansion-container-shape: 4px;
|
|
2189
|
+
--mat-expansion-legacy-header-indicator-display: inline-block;
|
|
2190
|
+
--mat-expansion-header-indicator-display: none;
|
|
2191
|
+
}
|
|
2192
|
+
|
|
2277
2193
|
html {
|
|
2278
2194
|
--mat-expansion-container-background-color: white;
|
|
2279
2195
|
--mat-expansion-container-text-color: rgba(0, 0, 0, 0.87);
|
|
@@ -2325,6 +2241,12 @@ html {
|
|
|
2325
2241
|
--mat-icon-color: #f44336;
|
|
2326
2242
|
}
|
|
2327
2243
|
|
|
2244
|
+
html {
|
|
2245
|
+
--mat-sidenav-container-shape: 0;
|
|
2246
|
+
--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
|
|
2247
|
+
--mat-sidenav-container-width: auto;
|
|
2248
|
+
}
|
|
2249
|
+
|
|
2328
2250
|
html {
|
|
2329
2251
|
--mat-sidenav-container-divider-color: rgba(0, 0, 0, 0.12);
|
|
2330
2252
|
--mat-sidenav-container-background-color: white;
|
|
@@ -2387,8 +2309,8 @@ html {
|
|
|
2387
2309
|
--mat-stepper-header-selected-state-label-text-weight: 400;
|
|
2388
2310
|
}
|
|
2389
2311
|
|
|
2390
|
-
|
|
2391
|
-
color: #757575;
|
|
2312
|
+
html {
|
|
2313
|
+
--mat-sort-arrow-color: #757575;
|
|
2392
2314
|
}
|
|
2393
2315
|
|
|
2394
2316
|
html {
|
|
@@ -2422,27 +2344,19 @@ html {
|
|
|
2422
2344
|
--mat-toolbar-title-text-weight: 400;
|
|
2423
2345
|
}
|
|
2424
2346
|
|
|
2425
|
-
|
|
2426
|
-
background: white;
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
.mat-tree-node,
|
|
2430
|
-
.mat-nested-tree-node {
|
|
2431
|
-
color: rgba(0, 0, 0, 0.87);
|
|
2432
|
-
}
|
|
2433
|
-
|
|
2434
|
-
.mat-tree-node {
|
|
2435
|
-
min-height: 48px;
|
|
2347
|
+
html {
|
|
2348
|
+
--mat-tree-container-background-color: white;
|
|
2349
|
+
--mat-tree-node-text-color: rgba(0, 0, 0, 0.87);
|
|
2436
2350
|
}
|
|
2437
2351
|
|
|
2438
|
-
|
|
2439
|
-
|
|
2352
|
+
html {
|
|
2353
|
+
--mat-tree-node-min-height: 48px;
|
|
2440
2354
|
}
|
|
2441
2355
|
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2356
|
+
html {
|
|
2357
|
+
--mat-tree-node-text-font: Roboto, sans-serif;
|
|
2358
|
+
--mat-tree-node-text-size: 12px;
|
|
2359
|
+
--mat-tree-node-text-weight: 400;
|
|
2446
2360
|
}
|
|
2447
2361
|
|
|
2448
2362
|
html {
|
|
@@ -2480,19 +2394,27 @@ mat-tab-group ::ng-deep .mat-mdc-tab-body-wrapper {
|
|
|
2480
2394
|
font-weight: bold;
|
|
2481
2395
|
}
|
|
2482
2396
|
|
|
2397
|
+
igo-auth-intern .loading-container {
|
|
2398
|
+
background-color: rgba(224, 224, 224, 0.64);
|
|
2399
|
+
}
|
|
2400
|
+
|
|
2401
|
+
igo-actionbar-item {
|
|
2402
|
+
--mat-icon-button-touch-target-display: none;
|
|
2403
|
+
--mdc-list-list-item-one-line-container-height: 40px;
|
|
2404
|
+
--mdc-list-list-item-two-line-container-height: 56px;
|
|
2405
|
+
--mdc-list-list-item-three-line-container-height: 80px;
|
|
2406
|
+
--mat-list-list-item-leading-icon-start-space: 16px;
|
|
2407
|
+
--mat-list-list-item-leading-icon-end-space: 32px;
|
|
2408
|
+
}
|
|
2483
2409
|
igo-actionbar-item .mat-mdc-icon-button.mat-mdc-button-base {
|
|
2484
2410
|
--mdc-icon-button-state-layer-size: 40px;
|
|
2485
2411
|
width: var(--mdc-icon-button-state-layer-size);
|
|
2486
2412
|
height: var(--mdc-icon-button-state-layer-size);
|
|
2487
2413
|
padding: 8px;
|
|
2488
2414
|
}
|
|
2489
|
-
igo-actionbar-item .
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
igo-actionbar-item .mat-mdc-list-base {
|
|
2493
|
-
--mdc-list-list-item-one-line-container-height: 40px;
|
|
2494
|
-
--mdc-list-list-item-two-line-container-height: 56px;
|
|
2495
|
-
--mdc-list-list-item-three-line-container-height: 80px;
|
|
2415
|
+
igo-actionbar-item .mdc-list-item__start,
|
|
2416
|
+
igo-actionbar-item .mdc-list-item__end {
|
|
2417
|
+
--mdc-radio-state-layer-size: 32px;
|
|
2496
2418
|
}
|
|
2497
2419
|
igo-actionbar-item .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line, igo-actionbar-item .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line, igo-actionbar-item .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line {
|
|
2498
2420
|
height: 48px;
|
|
@@ -2533,44 +2455,31 @@ igo-entity-table {
|
|
|
2533
2455
|
--mat-table-row-item-container-height: 48px;
|
|
2534
2456
|
}
|
|
2535
2457
|
|
|
2536
|
-
igo-entity-selector
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
top:
|
|
2541
|
-
|
|
2542
|
-
igo-entity-selector .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
|
|
2543
|
-
--mat-mdc-form-field-label-transform: translateY(
|
|
2544
|
-
-30.75px)
|
|
2545
|
-
scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));
|
|
2546
|
-
transform: var(--mat-mdc-form-field-label-transform);
|
|
2547
|
-
}
|
|
2548
|
-
igo-entity-selector .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
|
|
2549
|
-
padding-top: 12px;
|
|
2550
|
-
padding-bottom: 12px;
|
|
2551
|
-
}
|
|
2552
|
-
igo-entity-selector .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix {
|
|
2553
|
-
padding-top: 12px;
|
|
2554
|
-
padding-bottom: 12px;
|
|
2555
|
-
}
|
|
2556
|
-
igo-entity-selector .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix {
|
|
2557
|
-
padding-top: 12px;
|
|
2558
|
-
padding-bottom: 12px;
|
|
2559
|
-
}
|
|
2560
|
-
igo-entity-selector .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label {
|
|
2561
|
-
display: none;
|
|
2458
|
+
igo-entity-selector {
|
|
2459
|
+
--mat-form-field-container-height: 48px;
|
|
2460
|
+
--mat-form-field-filled-label-display: none;
|
|
2461
|
+
--mat-form-field-container-vertical-padding: 12px;
|
|
2462
|
+
--mat-form-field-filled-with-label-container-padding-top: 12px;
|
|
2463
|
+
--mat-form-field-filled-with-label-container-padding-bottom: 12px;
|
|
2562
2464
|
}
|
|
2563
2465
|
|
|
2466
|
+
igo-list {
|
|
2467
|
+
--mat-icon-button-touch-target-display: block;
|
|
2468
|
+
--mdc-list-list-item-one-line-container-height: 48px;
|
|
2469
|
+
--mdc-list-list-item-two-line-container-height: 64px;
|
|
2470
|
+
--mdc-list-list-item-three-line-container-height: 88px;
|
|
2471
|
+
--mat-list-list-item-leading-icon-start-space: 16px;
|
|
2472
|
+
--mat-list-list-item-leading-icon-end-space: 32px;
|
|
2473
|
+
}
|
|
2564
2474
|
igo-list .mat-mdc-icon-button.mat-mdc-button-base {
|
|
2565
2475
|
--mdc-icon-button-state-layer-size: 48px;
|
|
2566
2476
|
width: var(--mdc-icon-button-state-layer-size);
|
|
2567
2477
|
height: var(--mdc-icon-button-state-layer-size);
|
|
2568
2478
|
padding: 12px;
|
|
2569
2479
|
}
|
|
2570
|
-
igo-list .
|
|
2571
|
-
|
|
2572
|
-
--mdc-
|
|
2573
|
-
--mdc-list-list-item-three-line-container-height: 88px;
|
|
2480
|
+
igo-list .mdc-list-item__start,
|
|
2481
|
+
igo-list .mdc-list-item__end {
|
|
2482
|
+
--mdc-radio-state-layer-size: 40px;
|
|
2574
2483
|
}
|
|
2575
2484
|
igo-list .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line, igo-list .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line, igo-list .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line {
|
|
2576
2485
|
height: 56px;
|
|
@@ -2604,15 +2513,15 @@ igo-panel > .igo-panel-header {
|
|
|
2604
2513
|
color: white;
|
|
2605
2514
|
}
|
|
2606
2515
|
|
|
2516
|
+
igo-panel {
|
|
2517
|
+
--mat-icon-button-touch-target-display: none;
|
|
2518
|
+
}
|
|
2607
2519
|
igo-panel .mat-mdc-icon-button.mat-mdc-button-base {
|
|
2608
2520
|
--mdc-icon-button-state-layer-size: 40px;
|
|
2609
2521
|
width: var(--mdc-icon-button-state-layer-size);
|
|
2610
2522
|
height: var(--mdc-icon-button-state-layer-size);
|
|
2611
2523
|
padding: 8px;
|
|
2612
2524
|
}
|
|
2613
|
-
igo-panel .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
|
|
2614
|
-
display: none;
|
|
2615
|
-
}
|
|
2616
2525
|
|
|
2617
2526
|
igo-toolbox.color-primary > igo-actionbar:not(.with-title) {
|
|
2618
2527
|
box-shadow: unset;
|
|
@@ -2660,10 +2569,16 @@ igo-toolbox > igo-actionbar mat-list.mat-mdc-list-base igo-actionbar-item mat-li
|
|
|
2660
2569
|
cursor: default;
|
|
2661
2570
|
}
|
|
2662
2571
|
|
|
2663
|
-
igo-toolbox igo-actionbar-item
|
|
2572
|
+
igo-toolbox igo-actionbar-item {
|
|
2664
2573
|
--mdc-list-list-item-one-line-container-height: 40px;
|
|
2665
2574
|
--mdc-list-list-item-two-line-container-height: 56px;
|
|
2666
2575
|
--mdc-list-list-item-three-line-container-height: 80px;
|
|
2576
|
+
--mat-list-list-item-leading-icon-start-space: 16px;
|
|
2577
|
+
--mat-list-list-item-leading-icon-end-space: 32px;
|
|
2578
|
+
}
|
|
2579
|
+
igo-toolbox igo-actionbar-item .mdc-list-item__start,
|
|
2580
|
+
igo-toolbox igo-actionbar-item .mdc-list-item__end {
|
|
2581
|
+
--mdc-radio-state-layer-size: 32px;
|
|
2667
2582
|
}
|
|
2668
2583
|
igo-toolbox igo-actionbar-item .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line, igo-toolbox igo-actionbar-item .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line, igo-toolbox igo-actionbar-item .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line {
|
|
2669
2584
|
height: 48px;
|
|
@@ -2692,19 +2607,28 @@ igo-home-button > #homeButton:hover {
|
|
|
2692
2607
|
color: black;
|
|
2693
2608
|
}
|
|
2694
2609
|
|
|
2610
|
+
igo-context-list {
|
|
2611
|
+
--mat-icon-button-touch-target-display: none;
|
|
2612
|
+
--mdc-list-list-item-one-line-container-height: 40px;
|
|
2613
|
+
--mdc-list-list-item-two-line-container-height: 56px;
|
|
2614
|
+
--mdc-list-list-item-three-line-container-height: 80px;
|
|
2615
|
+
--mat-list-list-item-leading-icon-start-space: 16px;
|
|
2616
|
+
--mat-list-list-item-leading-icon-end-space: 32px;
|
|
2617
|
+
--mat-form-field-container-height: 48px;
|
|
2618
|
+
--mat-form-field-filled-label-display: none;
|
|
2619
|
+
--mat-form-field-container-vertical-padding: 12px;
|
|
2620
|
+
--mat-form-field-filled-with-label-container-padding-top: 12px;
|
|
2621
|
+
--mat-form-field-filled-with-label-container-padding-bottom: 12px;
|
|
2622
|
+
}
|
|
2695
2623
|
igo-context-list .mat-mdc-icon-button.mat-mdc-button-base {
|
|
2696
2624
|
--mdc-icon-button-state-layer-size: 40px;
|
|
2697
2625
|
width: var(--mdc-icon-button-state-layer-size);
|
|
2698
2626
|
height: var(--mdc-icon-button-state-layer-size);
|
|
2699
2627
|
padding: 8px;
|
|
2700
2628
|
}
|
|
2701
|
-
igo-context-list .
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
igo-context-list .mat-mdc-list-base {
|
|
2705
|
-
--mdc-list-list-item-one-line-container-height: 40px;
|
|
2706
|
-
--mdc-list-list-item-two-line-container-height: 56px;
|
|
2707
|
-
--mdc-list-list-item-three-line-container-height: 80px;
|
|
2629
|
+
igo-context-list .mdc-list-item__start,
|
|
2630
|
+
igo-context-list .mdc-list-item__end {
|
|
2631
|
+
--mdc-radio-state-layer-size: 32px;
|
|
2708
2632
|
}
|
|
2709
2633
|
igo-context-list .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line, igo-context-list .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line, igo-context-list .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line {
|
|
2710
2634
|
height: 48px;
|
|
@@ -2712,43 +2636,16 @@ igo-context-list .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-
|
|
|
2712
2636
|
igo-context-list .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines, igo-context-list .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines, igo-context-list .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines {
|
|
2713
2637
|
height: 64px;
|
|
2714
2638
|
}
|
|
2715
|
-
igo-context-list .mat-mdc-form-field-infix {
|
|
2716
|
-
min-height: 48px;
|
|
2717
|
-
}
|
|
2718
|
-
igo-context-list .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
|
|
2719
|
-
top: 24px;
|
|
2720
|
-
}
|
|
2721
|
-
igo-context-list .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
|
|
2722
|
-
--mat-mdc-form-field-label-transform: translateY(
|
|
2723
|
-
-30.75px)
|
|
2724
|
-
scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));
|
|
2725
|
-
transform: var(--mat-mdc-form-field-label-transform);
|
|
2726
|
-
}
|
|
2727
|
-
igo-context-list .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
|
|
2728
|
-
padding-top: 12px;
|
|
2729
|
-
padding-bottom: 12px;
|
|
2730
|
-
}
|
|
2731
|
-
igo-context-list .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix {
|
|
2732
|
-
padding-top: 12px;
|
|
2733
|
-
padding-bottom: 12px;
|
|
2734
|
-
}
|
|
2735
|
-
igo-context-list .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix {
|
|
2736
|
-
padding-top: 12px;
|
|
2737
|
-
padding-bottom: 12px;
|
|
2738
|
-
}
|
|
2739
|
-
igo-context-list .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label {
|
|
2740
|
-
display: none;
|
|
2741
|
-
}
|
|
2742
2639
|
|
|
2640
|
+
igo-context-item {
|
|
2641
|
+
--mat-icon-button-touch-target-display: none;
|
|
2642
|
+
}
|
|
2743
2643
|
igo-context-item .mat-mdc-icon-button.mat-mdc-button-base {
|
|
2744
2644
|
--mdc-icon-button-state-layer-size: 40px;
|
|
2745
2645
|
width: var(--mdc-icon-button-state-layer-size);
|
|
2746
2646
|
height: var(--mdc-icon-button-state-layer-size);
|
|
2747
2647
|
padding: 8px;
|
|
2748
2648
|
}
|
|
2749
|
-
igo-context-item .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
|
|
2750
|
-
display: none;
|
|
2751
|
-
}
|
|
2752
2649
|
|
|
2753
2650
|
igo-directions-results mat-list-item.igo-steps:hover {
|
|
2754
2651
|
background-color: #b9cad0;
|
|
@@ -2832,42 +2729,20 @@ igo-layer-list-tool mat-form-field .mat-mdc-form-field-focus-overlay {
|
|
|
2832
2729
|
background-color: white !important;
|
|
2833
2730
|
}
|
|
2834
2731
|
|
|
2732
|
+
igo-layer-list-tool {
|
|
2733
|
+
--mat-icon-button-touch-target-display: none;
|
|
2734
|
+
--mat-form-field-container-height: 48px;
|
|
2735
|
+
--mat-form-field-filled-label-display: none;
|
|
2736
|
+
--mat-form-field-container-vertical-padding: 12px;
|
|
2737
|
+
--mat-form-field-filled-with-label-container-padding-top: 12px;
|
|
2738
|
+
--mat-form-field-filled-with-label-container-padding-bottom: 12px;
|
|
2739
|
+
}
|
|
2835
2740
|
igo-layer-list-tool .mat-mdc-icon-button.mat-mdc-button-base {
|
|
2836
2741
|
--mdc-icon-button-state-layer-size: 40px;
|
|
2837
2742
|
width: var(--mdc-icon-button-state-layer-size);
|
|
2838
2743
|
height: var(--mdc-icon-button-state-layer-size);
|
|
2839
2744
|
padding: 8px;
|
|
2840
2745
|
}
|
|
2841
|
-
igo-layer-list-tool .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
|
|
2842
|
-
display: none;
|
|
2843
|
-
}
|
|
2844
|
-
igo-layer-list-tool .mat-mdc-form-field-infix {
|
|
2845
|
-
min-height: 48px;
|
|
2846
|
-
}
|
|
2847
|
-
igo-layer-list-tool .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
|
|
2848
|
-
top: 24px;
|
|
2849
|
-
}
|
|
2850
|
-
igo-layer-list-tool .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
|
|
2851
|
-
--mat-mdc-form-field-label-transform: translateY(
|
|
2852
|
-
-30.75px)
|
|
2853
|
-
scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));
|
|
2854
|
-
transform: var(--mat-mdc-form-field-label-transform);
|
|
2855
|
-
}
|
|
2856
|
-
igo-layer-list-tool .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
|
|
2857
|
-
padding-top: 12px;
|
|
2858
|
-
padding-bottom: 12px;
|
|
2859
|
-
}
|
|
2860
|
-
igo-layer-list-tool .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix {
|
|
2861
|
-
padding-top: 12px;
|
|
2862
|
-
padding-bottom: 12px;
|
|
2863
|
-
}
|
|
2864
|
-
igo-layer-list-tool .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix {
|
|
2865
|
-
padding-top: 12px;
|
|
2866
|
-
padding-bottom: 12px;
|
|
2867
|
-
}
|
|
2868
|
-
igo-layer-list-tool .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label {
|
|
2869
|
-
display: none;
|
|
2870
|
-
}
|
|
2871
2746
|
|
|
2872
2747
|
igo-layer-item.igo-layer-item-focused > mat-list-item {
|
|
2873
2748
|
background-color: #b9cad0;
|
|
@@ -2885,15 +2760,15 @@ igo-map-browser div.ol-attribution > button {
|
|
|
2885
2760
|
background-color: white;
|
|
2886
2761
|
}
|
|
2887
2762
|
|
|
2763
|
+
igo-map-browser {
|
|
2764
|
+
--mat-icon-button-touch-target-display: none;
|
|
2765
|
+
}
|
|
2888
2766
|
igo-map-browser .mat-mdc-icon-button.mat-mdc-button-base {
|
|
2889
2767
|
--mdc-icon-button-state-layer-size: 40px;
|
|
2890
2768
|
width: var(--mdc-icon-button-state-layer-size);
|
|
2891
2769
|
height: var(--mdc-icon-button-state-layer-size);
|
|
2892
2770
|
padding: 8px;
|
|
2893
2771
|
}
|
|
2894
|
-
igo-map-browser .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target {
|
|
2895
|
-
display: none;
|
|
2896
|
-
}
|
|
2897
2772
|
|
|
2898
2773
|
igo-map-browser div.ol-attribution > ul {
|
|
2899
2774
|
font-size: 14px;
|
|
@@ -2934,29 +2809,13 @@ igo-search-bar mat-form-field .mat-mdc-form-field-focus-overlay {
|
|
|
2934
2809
|
background-color: white !important;
|
|
2935
2810
|
}
|
|
2936
2811
|
|
|
2937
|
-
igo-search-bar
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2941
|
-
top:
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
--mat-mdc-form-field-label-transform: translateY(
|
|
2945
|
-
-34.75px)
|
|
2946
|
-
scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));
|
|
2947
|
-
transform: var(--mat-mdc-form-field-label-transform);
|
|
2948
|
-
}
|
|
2949
|
-
igo-search-bar .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
|
|
2950
|
-
padding-top: 16px;
|
|
2951
|
-
padding-bottom: 16px;
|
|
2952
|
-
}
|
|
2953
|
-
igo-search-bar .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix {
|
|
2954
|
-
padding-top: 24px;
|
|
2955
|
-
padding-bottom: 8px;
|
|
2956
|
-
}
|
|
2957
|
-
igo-search-bar .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix {
|
|
2958
|
-
padding-top: 16px;
|
|
2959
|
-
padding-bottom: 16px;
|
|
2812
|
+
igo-search-bar {
|
|
2813
|
+
--mat-form-field-container-height: 56px;
|
|
2814
|
+
--mat-form-field-filled-label-display: block;
|
|
2815
|
+
--mat-form-field-container-vertical-padding: 16px;
|
|
2816
|
+
--mat-form-field-filled-with-label-container-padding-top: 24px;
|
|
2817
|
+
--mat-form-field-filled-with-label-container-padding-bottom: 8px;
|
|
2818
|
+
--mat-icon-button-touch-target-display: block;
|
|
2960
2819
|
}
|
|
2961
2820
|
igo-search-bar .mat-mdc-icon-button.mat-mdc-button-base {
|
|
2962
2821
|
--mdc-icon-button-state-layer-size: 48px;
|
|
@@ -2981,19 +2840,23 @@ igo-confirmation-popup-component h1 {
|
|
|
2981
2840
|
font-family: Roboto, "Helvetica Neue", sans-serif;
|
|
2982
2841
|
}
|
|
2983
2842
|
|
|
2843
|
+
igo-catalog-browser {
|
|
2844
|
+
--mat-icon-button-touch-target-display: none;
|
|
2845
|
+
--mdc-list-list-item-one-line-container-height: 40px;
|
|
2846
|
+
--mdc-list-list-item-two-line-container-height: 56px;
|
|
2847
|
+
--mdc-list-list-item-three-line-container-height: 80px;
|
|
2848
|
+
--mat-list-list-item-leading-icon-start-space: 16px;
|
|
2849
|
+
--mat-list-list-item-leading-icon-end-space: 32px;
|
|
2850
|
+
}
|
|
2984
2851
|
igo-catalog-browser .mat-mdc-icon-button.mat-mdc-button-base {
|
|
2985
2852
|
--mdc-icon-button-state-layer-size: 40px;
|
|
2986
2853
|
width: var(--mdc-icon-button-state-layer-size);
|
|
2987
2854
|
height: var(--mdc-icon-button-state-layer-size);
|
|
2988
2855
|
padding: 8px;
|
|
2989
2856
|
}
|
|
2990
|
-
igo-catalog-browser .
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
igo-catalog-browser .mat-mdc-list-base {
|
|
2994
|
-
--mdc-list-list-item-one-line-container-height: 40px;
|
|
2995
|
-
--mdc-list-list-item-two-line-container-height: 56px;
|
|
2996
|
-
--mdc-list-list-item-three-line-container-height: 80px;
|
|
2857
|
+
igo-catalog-browser .mdc-list-item__start,
|
|
2858
|
+
igo-catalog-browser .mdc-list-item__end {
|
|
2859
|
+
--mdc-radio-state-layer-size: 32px;
|
|
2997
2860
|
}
|
|
2998
2861
|
igo-catalog-browser .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line, igo-catalog-browser .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line, igo-catalog-browser .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line {
|
|
2999
2862
|
height: 48px;
|