@softheon/armature 10.45.5 → 15.0.1
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/assets/styles/material-overrides.scss +103 -88
- package/assets/styles/sof-styles.scss +442 -376
- package/esm2020/lib/alert-banner/alert-banner-api.mjs +10 -0
- package/esm2020/lib/alert-banner/alert-banner.module.mjs +41 -0
- package/esm2020/lib/alert-banner/components/alert-banner/alert-banner.component.mjs +83 -0
- package/esm2020/lib/alert-banner/models/alert-banner-config.mjs +2 -0
- package/esm2020/lib/alert-banner/models/alert-banner-context.mjs +2 -0
- package/esm2020/lib/alert-banner/models/constants.mjs +16 -0
- package/esm2020/lib/alert-banner/services/alert-banner.service.mjs +44 -0
- package/esm2020/lib/armature.module.mjs +176 -0
- package/esm2020/lib/base-components/base-component-api.mjs +9 -0
- package/esm2020/lib/base-components/base-component.module.mjs +93 -0
- package/esm2020/lib/base-components/sof-alert/sof-alert.component.mjs +79 -0
- package/esm2020/lib/base-components/sof-banner/sof-banner.component.mjs +49 -0
- package/esm2020/lib/base-components/sof-button-toggle-group/sof-button-toggle-group.component.mjs +188 -0
- package/esm2020/lib/base-components/sof-modal/sof-modal.component.mjs +58 -0
- package/esm2020/lib/base-components/sof-progress-bar/sof-progress-bar.component.mjs +79 -0
- package/esm2020/lib/component-save-print/components/component-save-print/component-save-print.component.mjs +91 -0
- package/esm2020/lib/component-save-print/services/component-save-print.service.mjs +30 -0
- package/esm2020/lib/component-save-print/sof-ar-component-save-print.module.mjs +32 -0
- package/esm2020/lib/core/client-generated/api/session.service.mjs +242 -0
- package/esm2020/lib/core/client-generated/configuration.mjs +59 -0
- package/esm2020/lib/core/client-generated/encoder.mjs +17 -0
- package/esm2020/lib/core/client-generated/model/applicationUserModel.mjs +20 -0
- package/esm2020/lib/core/client-generated/model/assertedUserModel.mjs +2 -0
- package/esm2020/lib/core/client-generated/model/brandingModel.mjs +2 -0
- package/esm2020/lib/core/client-generated/model/errorModel.mjs +13 -0
- package/esm2020/lib/core/client-generated/model/folderLink.mjs +13 -0
- package/esm2020/lib/core/client-generated/model/identityProfile.mjs +2 -0
- package/esm2020/lib/core/client-generated/model/models.mjs +20 -0
- package/esm2020/lib/core/client-generated/model/oAuthModel.mjs +13 -0
- package/esm2020/lib/core/client-generated/model/preferencesRow.mjs +13 -0
- package/esm2020/lib/core/client-generated/model/rolesRow.mjs +13 -0
- package/esm2020/lib/core/client-generated/model/sessionGetResponseModel.mjs +2 -0
- package/esm2020/lib/core/client-generated/model/sessionPostRequestModel.mjs +2 -0
- package/esm2020/lib/core/client-generated/model/sessionPostResponseModel.mjs +2 -0
- package/esm2020/lib/core/client-generated/model/sessionPutRequestModel.mjs +2 -0
- package/esm2020/lib/core/client-generated/model/sessionPutResponseModel.mjs +2 -0
- package/esm2020/lib/core/client-generated/model/sessionResponseModel.mjs +2 -0
- package/esm2020/lib/core/client-generated/model/settingsProfile.mjs +2 -0
- package/esm2020/lib/core/client-generated/model/themePaletteColorsModel.mjs +13 -0
- package/esm2020/lib/core/client-generated/model/themePaletteModel.mjs +2 -0
- package/esm2020/lib/core/client-generated/model/trackingModel.mjs +13 -0
- package/esm2020/lib/core/client-generated/model/validationRecordsRow.mjs +13 -0
- package/esm2020/lib/core/client-generated/variables.mjs +9 -0
- package/esm2020/lib/core/components/app-template/app-template.component.mjs +250 -0
- package/esm2020/lib/core/functions/guid.mjs +11 -0
- package/esm2020/lib/core/functions/naming-convention.mjs +33 -0
- package/esm2020/lib/core/initializer/abstract-startup-service.mjs +4 -0
- package/esm2020/lib/core/initializer/initializer.service.mjs +189 -0
- package/esm2020/lib/core/interceptors/armature-auth-token-append.interceptor.mjs +73 -0
- package/esm2020/lib/core/models/base-config.mjs +2 -0
- package/esm2020/lib/core/models/constants.mjs +13 -0
- package/esm2020/lib/core/models/data-store-config.mjs +4 -0
- package/esm2020/lib/core/models/header-config.mjs +2 -0
- package/esm2020/lib/core/models/http-verbs.mjs +9 -0
- package/esm2020/lib/core/models/navigation-config.mjs +2 -0
- package/esm2020/lib/core/models/oidc-auth-settings.mjs +2 -0
- package/esm2020/lib/core/models/route-path.mjs +7 -0
- package/esm2020/lib/core/models/session-config.mjs +4 -0
- package/esm2020/lib/core/models/styles.mjs +2 -0
- package/esm2020/lib/core/models/typed-session.mjs +4 -0
- package/esm2020/lib/core/models/user-entity-service-config.mjs +12 -0
- package/esm2020/lib/core/services/authorization.service.mjs +175 -0
- package/esm2020/lib/core/services/banner.service.mjs +43 -0
- package/esm2020/lib/core/services/base-config.service.mjs +32 -0
- package/esm2020/lib/core/services/custom-auth-config.service.mjs +4 -0
- package/esm2020/lib/core/services/default-config.service.mjs +19 -0
- package/esm2020/lib/core/services/session.service.mjs +385 -0
- package/esm2020/lib/core/services/user-entity.service.mjs +140 -0
- package/esm2020/lib/distributed-cache/client-generated/api/api.mjs +4 -0
- package/esm2020/lib/distributed-cache/client-generated/api/cache.service.mjs +213 -0
- package/esm2020/lib/distributed-cache/client-generated/configuration.mjs +59 -0
- package/esm2020/lib/distributed-cache/client-generated/encoder.mjs +17 -0
- package/esm2020/lib/distributed-cache/client-generated/model/cacheExpirationType.mjs +16 -0
- package/esm2020/lib/distributed-cache/client-generated/model/createCacheEntryRequestModel.mjs +2 -0
- package/esm2020/lib/distributed-cache/client-generated/model/models.mjs +5 -0
- package/esm2020/lib/distributed-cache/client-generated/model/retrieveCacheEntryResponseModel.mjs +13 -0
- package/esm2020/lib/distributed-cache/client-generated/model/updateCacheEntryRequestModel.mjs +13 -0
- package/esm2020/lib/distributed-cache/client-generated/variables.mjs +9 -0
- package/esm2020/lib/distributed-cache/distributed-cache-api.mjs +8 -0
- package/esm2020/lib/distributed-cache/distributed-cache.module.mjs +38 -0
- package/esm2020/lib/distributed-cache/models/constants.mjs +3 -0
- package/esm2020/lib/distributed-cache/models/policy-person.mjs +9 -0
- package/esm2020/lib/distributed-cache/services/server-cache.service.mjs +48 -0
- package/esm2020/lib/error/components/error-common/error-common.component.mjs +25 -0
- package/esm2020/lib/error/error-api.mjs +7 -0
- package/esm2020/lib/error/error.module.mjs +31 -0
- package/esm2020/lib/error/models/error-common-config.mjs +8 -0
- package/esm2020/lib/faq/components/faq/faq.component.mjs +40 -0
- package/esm2020/lib/faq/faq-api.mjs +8 -0
- package/esm2020/lib/faq/faq.module.mjs +41 -0
- package/esm2020/lib/faq/models/faq-config.mjs +4 -0
- package/esm2020/lib/faq/models/faq.mjs +8 -0
- package/esm2020/lib/footer/components/footer/footer.component.mjs +25 -0
- package/esm2020/lib/footer/components/site-map/site-map.component.mjs +25 -0
- package/esm2020/lib/footer/footer-api.mjs +10 -0
- package/esm2020/lib/footer/footer.module.mjs +45 -0
- package/esm2020/lib/footer/models/enum/site-map-direction.mjs +15 -0
- package/esm2020/lib/footer/models/footer-config.mjs +4 -0
- package/esm2020/lib/footer/models/site-map-models.mjs +2 -0
- package/esm2020/lib/forms/components/sof-address/sof-address.component.mjs +110 -0
- package/esm2020/lib/forms/directives/alphanumeric/alphanumeric.directive.mjs +78 -0
- package/esm2020/lib/forms/directives/input-trim/input-trim.directive.mjs +110 -0
- package/esm2020/lib/forms/directives/letters-only/letters-only.directive.mjs +72 -0
- package/esm2020/lib/forms/directives/numbers-only/numbers-only.directive.mjs +60 -0
- package/esm2020/lib/forms/forms-api.mjs +19 -0
- package/esm2020/lib/forms/forms.module.mjs +83 -0
- package/esm2020/lib/forms/models/address.mjs +2 -0
- package/esm2020/lib/forms/models/constants.mjs +10 -0
- package/esm2020/lib/forms/models/county.mjs +2 -0
- package/esm2020/lib/forms/models/enums/states.mjs +58 -0
- package/esm2020/lib/forms/pipes/phone-format.pipe.mjs +33 -0
- package/esm2020/lib/forms/services/alert.service.mjs +167 -0
- package/esm2020/lib/header/components/header/header.component.mjs +161 -0
- package/esm2020/lib/header/components/mobile-header-menu/mobile-header-menu.component.mjs +39 -0
- package/esm2020/lib/header/header-api.mjs +12 -0
- package/esm2020/lib/header/header.module.mjs +85 -0
- package/esm2020/lib/header/models/header-auth.settings.mjs +32 -0
- package/esm2020/lib/header/models/header-language.settings.mjs +2 -0
- package/esm2020/lib/header/models/header-theme.settings.mjs +2 -0
- package/esm2020/lib/header/models/header.settings.mjs +2 -0
- package/esm2020/lib/header/models/mobile-header-nav.settings.mjs +2 -0
- package/esm2020/lib/navigation/components/navigation/navigation.component.mjs +555 -0
- package/esm2020/lib/navigation/models/nav-theme.settings.mjs +2 -0
- package/esm2020/lib/navigation/models/nav.settings.mjs +2 -0
- package/esm2020/lib/navigation/models/navigation.mjs +2 -0
- package/esm2020/lib/navigation/navigation-api.mjs +9 -0
- package/esm2020/lib/navigation/navigation.module.mjs +126 -0
- package/esm2020/lib/oauth/models/constants.mjs +6 -0
- package/esm2020/lib/oauth/models/generated/accountManagementAssertionModel.mjs +2 -0
- package/esm2020/lib/oauth/models/generated/accountManagementRefreshRequestModel.mjs +2 -0
- package/esm2020/lib/oauth/models/generated/accountManagementResponseModel.mjs +2 -0
- package/esm2020/lib/oauth/models/generated/coverageDetail.mjs +19 -0
- package/esm2020/lib/oauth/models/generated/finance.mjs +13 -0
- package/esm2020/lib/oauth/models/generated/iSsoResponseModel.mjs +13 -0
- package/esm2020/lib/oauth/models/generated/iSsoResponseModelAccountManagementAssertionModel.mjs +2 -0
- package/esm2020/lib/oauth/models/generated/person.mjs +13 -0
- package/esm2020/lib/oauth/models/generated/policy.mjs +2 -0
- package/esm2020/lib/oauth/models/generated/refreshResponseModel.mjs +13 -0
- package/esm2020/lib/oauth/models/hybrid-saml-oauth-config.mjs +4 -0
- package/esm2020/lib/oauth/oauth-api.mjs +15 -0
- package/esm2020/lib/oauth/oauth.module.mjs +29 -0
- package/esm2020/lib/oauth/services/hybrid-saml-oauth.service.mjs +201 -0
- package/esm2020/lib/rbac/directives/rbac-action.directive.mjs +50 -0
- package/esm2020/lib/rbac/models/access-token-claims.mjs +23 -0
- package/esm2020/lib/rbac/models/constants.mjs +4 -0
- package/esm2020/lib/rbac/models/decoded-access-token.mjs +69 -0
- package/esm2020/lib/rbac/models/rbac-config.mjs +4 -0
- package/esm2020/lib/rbac/models/role-access.mjs +10 -0
- package/esm2020/lib/rbac/rbac-api.mjs +15 -0
- package/esm2020/lib/rbac/rbac.module.mjs +51 -0
- package/esm2020/lib/rbac/services/ar-role-nav.service.mjs +91 -0
- package/esm2020/lib/rbac/services/oauth2-role.service.mjs +114 -0
- package/esm2020/lib/rbac/services/role-nav.service.mjs +4 -0
- package/esm2020/lib/resize-panels/components/resize-panels/resize-panels.component.mjs +156 -0
- package/esm2020/lib/resize-panels/models/resize-event.mjs +2 -0
- package/esm2020/lib/resize-panels/resize-panels-api.mjs +5 -0
- package/esm2020/lib/resize-panels/resize-panels.module.mjs +23 -0
- package/esm2020/lib/rum/models/arm-error.mjs +29 -0
- package/esm2020/lib/rum/models/rum-config.mjs +4 -0
- package/esm2020/lib/rum/rum-api.mjs +10 -0
- package/esm2020/lib/rum/rum.module.mjs +48 -0
- package/esm2020/lib/rum/services/rum.service.mjs +115 -0
- package/esm2020/lib/rum/services/shared-error.service.mjs +45 -0
- package/esm2020/lib/rum/services/softheon-error-handler.service.mjs +76 -0
- package/esm2020/lib/saml/components/redirect-saml/redirect-saml.component.mjs +79 -0
- package/esm2020/lib/saml/models/i-saml-request.mjs +2 -0
- package/esm2020/lib/saml/models/i-saml-response.mjs +2 -0
- package/esm2020/lib/saml/models/redirect-saml-request.mjs +4 -0
- package/esm2020/lib/saml/models/sso-gateway-model.mjs +4 -0
- package/esm2020/lib/saml/saml-api.mjs +15 -0
- package/esm2020/lib/saml/saml.module.mjs +43 -0
- package/esm2020/lib/saml/services/entry/abstract-saml-entry.service.mjs +4 -0
- package/esm2020/lib/saml/services/entry/sso-gateway-entry.service.mjs +36 -0
- package/esm2020/lib/saml/services/send-off/abstract-saml.service.mjs +4 -0
- package/esm2020/lib/saml/services/send-off/saml.service.mjs +39 -0
- package/esm2020/lib/sof-pipe/constants/constants.mjs +17 -0
- package/esm2020/lib/sof-pipe/models/sof-date-pipe-format.mjs +2 -0
- package/esm2020/lib/sof-pipe/pipes/sof-blank/sof-blank.pipe.mjs +39 -0
- package/esm2020/lib/sof-pipe/pipes/sof-date/sof-date.pipe.mjs +59 -0
- package/esm2020/lib/sof-pipe/pipes/sof-ssn/sof-ssn.pipe.mjs +28 -0
- package/esm2020/lib/sof-pipe/sof-pipe.api.mjs +9 -0
- package/esm2020/lib/sof-pipe/sof-pipe.module.mjs +39 -0
- package/esm2020/lib/theming/directives/css-override.directive.mjs +69 -0
- package/esm2020/lib/theming/models/css-override.mjs +11 -0
- package/esm2020/lib/theming/services/theme.service.mjs +167 -0
- package/esm2020/lib/theming/theme-api.mjs +6 -0
- package/esm2020/lib/theming/theme.module.mjs +31 -0
- package/esm2020/public-api.mjs +48 -0
- package/esm2020/softheon-armature.mjs +5 -0
- package/fesm2015/softheon-armature.mjs +6767 -0
- package/fesm2015/softheon-armature.mjs.map +1 -0
- package/fesm2020/softheon-armature.mjs +6829 -0
- package/fesm2020/softheon-armature.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/alert-banner/alert-banner.module.d.ts +9 -0
- package/lib/alert-banner/components/alert-banner/alert-banner.component.d.ts +3 -0
- package/lib/alert-banner/services/alert-banner.service.d.ts +3 -0
- package/lib/armature.module.d.ts +15 -0
- package/lib/base-components/base-component.module.d.ts +24 -0
- package/lib/base-components/sof-alert/sof-alert.component.d.ts +3 -0
- package/lib/base-components/sof-banner/sof-banner.component.d.ts +3 -0
- package/lib/base-components/sof-button-toggle-group/sof-button-toggle-group.component.d.ts +3 -0
- package/lib/base-components/sof-modal/sof-modal.component.d.ts +3 -0
- package/lib/base-components/sof-progress-bar/sof-progress-bar.component.d.ts +3 -0
- package/lib/component-save-print/components/component-save-print/component-save-print.component.d.ts +3 -0
- package/lib/component-save-print/services/component-save-print.service.d.ts +3 -0
- package/lib/component-save-print/sof-ar-component-save-print.module.d.ts +6 -0
- package/lib/core/client-generated/api/session.service.d.ts +3 -11
- package/lib/core/components/app-template/app-template.component.d.ts +3 -0
- package/lib/core/initializer/initializer.service.d.ts +3 -0
- package/lib/core/interceptors/armature-auth-token-append.interceptor.d.ts +3 -0
- package/lib/core/models/http-verbs.d.ts +1 -1
- package/lib/core/services/authorization.service.d.ts +3 -0
- package/lib/core/services/banner.service.d.ts +3 -0
- package/lib/core/services/base-config.service.d.ts +3 -0
- package/lib/core/services/default-config.service.d.ts +3 -0
- package/lib/core/services/session.service.d.ts +3 -0
- package/lib/core/services/user-entity.service.d.ts +3 -0
- package/lib/distributed-cache/client-generated/api/cache.service.d.ts +3 -11
- package/lib/distributed-cache/client-generated/model/cacheExpirationType.d.ts +1 -1
- package/lib/distributed-cache/distributed-cache.module.d.ts +5 -0
- package/lib/distributed-cache/services/server-cache.service.d.ts +3 -0
- package/lib/error/components/error-common/error-common.component.d.ts +3 -0
- package/lib/error/error.module.d.ts +8 -0
- package/lib/faq/components/faq/faq.component.d.ts +3 -0
- package/lib/faq/faq.module.d.ts +12 -0
- package/lib/footer/components/footer/footer.component.d.ts +3 -0
- package/lib/footer/components/site-map/site-map.component.d.ts +3 -0
- package/lib/footer/footer.module.d.ts +11 -0
- package/lib/forms/components/sof-address/sof-address.component.d.ts +3 -0
- package/lib/forms/directives/alphanumeric/alphanumeric.directive.d.ts +3 -0
- package/lib/forms/directives/input-trim/input-trim.directive.d.ts +3 -0
- package/lib/forms/directives/letters-only/letters-only.directive.d.ts +3 -0
- package/lib/forms/directives/numbers-only/numbers-only.directive.d.ts +3 -0
- package/lib/forms/forms.module.d.ts +17 -0
- package/lib/forms/pipes/phone-format.pipe.d.ts +3 -0
- package/lib/forms/services/alert.service.d.ts +3 -0
- package/lib/header/components/header/header.component.d.ts +4 -1
- package/lib/header/components/mobile-header-menu/mobile-header-menu.component.d.ts +3 -0
- package/lib/header/header.module.d.ts +18 -0
- package/lib/navigation/components/navigation/navigation.component.d.ts +6 -3
- package/lib/navigation/navigation.module.d.ts +22 -0
- package/lib/oauth/oauth.module.d.ts +6 -0
- package/lib/oauth/services/hybrid-saml-oauth.service.d.ts +3 -0
- package/lib/rbac/directives/rbac-action.directive.d.ts +3 -0
- package/lib/rbac/rbac.module.d.ts +6 -0
- package/lib/rbac/services/ar-role-nav.service.d.ts +3 -0
- package/lib/rbac/services/oauth2-role.service.d.ts +3 -0
- package/lib/resize-panels/components/resize-panels/resize-panels.component.d.ts +3 -0
- package/lib/resize-panels/resize-panels.module.d.ts +6 -0
- package/lib/rum/rum.module.d.ts +5 -0
- package/lib/rum/services/rum.service.d.ts +3 -0
- package/lib/rum/services/shared-error.service.d.ts +3 -0
- package/lib/rum/services/softheon-error-handler.service.d.ts +3 -0
- package/lib/saml/components/redirect-saml/redirect-saml.component.d.ts +3 -0
- package/lib/saml/saml.module.d.ts +6 -0
- package/lib/saml/services/entry/sso-gateway-entry.service.d.ts +3 -0
- package/lib/saml/services/send-off/saml.service.d.ts +3 -0
- package/lib/sof-pipe/pipes/sof-blank/sof-blank.pipe.d.ts +3 -0
- package/lib/sof-pipe/pipes/sof-date/sof-date.pipe.d.ts +3 -0
- package/lib/sof-pipe/pipes/sof-ssn/sof-ssn.pipe.d.ts +3 -0
- package/lib/sof-pipe/sof-pipe.module.d.ts +8 -0
- package/lib/theming/directives/css-override.directive.d.ts +3 -0
- package/lib/theming/services/theme.service.d.ts +3 -0
- package/lib/theming/theme.module.d.ts +6 -0
- package/package.json +39 -27
- package/bundles/softheon-armature.umd.js +0 -7212
- package/bundles/softheon-armature.umd.js.map +0 -1
- package/bundles/softheon-armature.umd.min.js +0 -16
- package/bundles/softheon-armature.umd.min.js.map +0 -1
- package/esm2015/lib/alert-banner/alert-banner-api.js +0 -10
- package/esm2015/lib/alert-banner/alert-banner.module.js +0 -30
- package/esm2015/lib/alert-banner/components/alert-banner/alert-banner.component.js +0 -78
- package/esm2015/lib/alert-banner/models/alert-banner-config.js +0 -2
- package/esm2015/lib/alert-banner/models/alert-banner-context.js +0 -2
- package/esm2015/lib/alert-banner/models/constants.js +0 -16
- package/esm2015/lib/alert-banner/services/alert-banner.service.js +0 -43
- package/esm2015/lib/armature.module.js +0 -142
- package/esm2015/lib/base-components/base-component-api.js +0 -9
- package/esm2015/lib/base-components/base-component.module.js +0 -61
- package/esm2015/lib/base-components/sof-alert/sof-alert.component.js +0 -67
- package/esm2015/lib/base-components/sof-banner/sof-banner.component.js +0 -44
- package/esm2015/lib/base-components/sof-button-toggle-group/sof-button-toggle-group.component.js +0 -169
- package/esm2015/lib/base-components/sof-modal/sof-modal.component.js +0 -49
- package/esm2015/lib/base-components/sof-progress-bar/sof-progress-bar.component.js +0 -76
- package/esm2015/lib/component-save-print/components/component-save-print/component-save-print.component.js +0 -97
- package/esm2015/lib/component-save-print/services/component-save-print.service.js +0 -29
- package/esm2015/lib/component-save-print/sof-ar-component-save-print.module.js +0 -25
- package/esm2015/lib/core/client-generated/api/session.service.js +0 -235
- package/esm2015/lib/core/client-generated/configuration.js +0 -59
- package/esm2015/lib/core/client-generated/encoder.js +0 -17
- package/esm2015/lib/core/client-generated/model/applicationUserModel.js +0 -20
- package/esm2015/lib/core/client-generated/model/assertedUserModel.js +0 -2
- package/esm2015/lib/core/client-generated/model/brandingModel.js +0 -2
- package/esm2015/lib/core/client-generated/model/errorModel.js +0 -13
- package/esm2015/lib/core/client-generated/model/folderLink.js +0 -13
- package/esm2015/lib/core/client-generated/model/identityProfile.js +0 -2
- package/esm2015/lib/core/client-generated/model/models.js +0 -20
- package/esm2015/lib/core/client-generated/model/oAuthModel.js +0 -13
- package/esm2015/lib/core/client-generated/model/preferencesRow.js +0 -13
- package/esm2015/lib/core/client-generated/model/rolesRow.js +0 -13
- package/esm2015/lib/core/client-generated/model/sessionGetResponseModel.js +0 -2
- package/esm2015/lib/core/client-generated/model/sessionPostRequestModel.js +0 -2
- package/esm2015/lib/core/client-generated/model/sessionPostResponseModel.js +0 -2
- package/esm2015/lib/core/client-generated/model/sessionPutRequestModel.js +0 -2
- package/esm2015/lib/core/client-generated/model/sessionPutResponseModel.js +0 -2
- package/esm2015/lib/core/client-generated/model/sessionResponseModel.js +0 -2
- package/esm2015/lib/core/client-generated/model/settingsProfile.js +0 -2
- package/esm2015/lib/core/client-generated/model/themePaletteColorsModel.js +0 -13
- package/esm2015/lib/core/client-generated/model/themePaletteModel.js +0 -2
- package/esm2015/lib/core/client-generated/model/trackingModel.js +0 -13
- package/esm2015/lib/core/client-generated/model/validationRecordsRow.js +0 -13
- package/esm2015/lib/core/client-generated/variables.js +0 -9
- package/esm2015/lib/core/components/app-template/app-template.component.js +0 -249
- package/esm2015/lib/core/functions/guid.js +0 -11
- package/esm2015/lib/core/functions/naming-convention.js +0 -33
- package/esm2015/lib/core/initializer/abstract-startup-service.js +0 -4
- package/esm2015/lib/core/initializer/initializer.service.js +0 -206
- package/esm2015/lib/core/interceptors/armature-auth-token-append.interceptor.js +0 -75
- package/esm2015/lib/core/models/base-config.js +0 -2
- package/esm2015/lib/core/models/constants.js +0 -13
- package/esm2015/lib/core/models/data-store-config.js +0 -4
- package/esm2015/lib/core/models/header-config.js +0 -2
- package/esm2015/lib/core/models/http-verbs.js +0 -9
- package/esm2015/lib/core/models/navigation-config.js +0 -2
- package/esm2015/lib/core/models/oidc-auth-settings.js +0 -2
- package/esm2015/lib/core/models/route-path.js +0 -7
- package/esm2015/lib/core/models/session-config.js +0 -4
- package/esm2015/lib/core/models/styles.js +0 -2
- package/esm2015/lib/core/models/typed-session.js +0 -4
- package/esm2015/lib/core/models/user-entity-service-config.js +0 -12
- package/esm2015/lib/core/services/authorization.service.js +0 -178
- package/esm2015/lib/core/services/banner.service.js +0 -42
- package/esm2015/lib/core/services/base-config.service.js +0 -31
- package/esm2015/lib/core/services/custom-auth-config.service.js +0 -4
- package/esm2015/lib/core/services/default-config.service.js +0 -18
- package/esm2015/lib/core/services/session.service.js +0 -386
- package/esm2015/lib/core/services/user-entity.service.js +0 -147
- package/esm2015/lib/distributed-cache/client-generated/api/api.js +0 -4
- package/esm2015/lib/distributed-cache/client-generated/api/cache.service.js +0 -206
- package/esm2015/lib/distributed-cache/client-generated/configuration.js +0 -59
- package/esm2015/lib/distributed-cache/client-generated/encoder.js +0 -17
- package/esm2015/lib/distributed-cache/client-generated/model/cacheExpirationType.js +0 -16
- package/esm2015/lib/distributed-cache/client-generated/model/createCacheEntryRequestModel.js +0 -2
- package/esm2015/lib/distributed-cache/client-generated/model/models.js +0 -5
- package/esm2015/lib/distributed-cache/client-generated/model/retrieveCacheEntryResponseModel.js +0 -13
- package/esm2015/lib/distributed-cache/client-generated/model/updateCacheEntryRequestModel.js +0 -13
- package/esm2015/lib/distributed-cache/client-generated/variables.js +0 -9
- package/esm2015/lib/distributed-cache/distributed-cache-api.js +0 -8
- package/esm2015/lib/distributed-cache/distributed-cache.module.js +0 -26
- package/esm2015/lib/distributed-cache/models/constants.js +0 -3
- package/esm2015/lib/distributed-cache/models/policy-person.js +0 -9
- package/esm2015/lib/distributed-cache/services/server-cache.service.js +0 -52
- package/esm2015/lib/error/components/error-common/error-common.component.js +0 -24
- package/esm2015/lib/error/error-api.js +0 -7
- package/esm2015/lib/error/error.module.js +0 -22
- package/esm2015/lib/error/models/error-common-config.js +0 -8
- package/esm2015/lib/faq/components/faq/faq.component.js +0 -35
- package/esm2015/lib/faq/faq-api.js +0 -8
- package/esm2015/lib/faq/faq.module.js +0 -32
- package/esm2015/lib/faq/models/faq-config.js +0 -4
- package/esm2015/lib/faq/models/faq.js +0 -8
- package/esm2015/lib/footer/components/footer/footer.component.js +0 -25
- package/esm2015/lib/footer/components/site-map/site-map.component.js +0 -23
- package/esm2015/lib/footer/footer-api.js +0 -10
- package/esm2015/lib/footer/footer.module.js +0 -30
- package/esm2015/lib/footer/models/enum/site-map-direction.js +0 -15
- package/esm2015/lib/footer/models/footer-config.js +0 -4
- package/esm2015/lib/footer/models/site-map-models.js +0 -2
- package/esm2015/lib/forms/components/sof-address/sof-address.component.js +0 -99
- package/esm2015/lib/forms/directives/alphanumeric/alphanumeric.directive.js +0 -75
- package/esm2015/lib/forms/directives/input-trim/input-trim.directive.js +0 -97
- package/esm2015/lib/forms/directives/letters-only/letters-only.directive.js +0 -68
- package/esm2015/lib/forms/directives/numbers-only/numbers-only.directive.js +0 -58
- package/esm2015/lib/forms/forms-api.js +0 -19
- package/esm2015/lib/forms/forms.module.js +0 -63
- package/esm2015/lib/forms/models/address.js +0 -2
- package/esm2015/lib/forms/models/constants.js +0 -10
- package/esm2015/lib/forms/models/county.js +0 -2
- package/esm2015/lib/forms/models/enums/states.js +0 -58
- package/esm2015/lib/forms/pipes/phone-format.pipe.js +0 -29
- package/esm2015/lib/forms/services/alert.service.js +0 -170
- package/esm2015/lib/header/components/header/header.component.js +0 -157
- package/esm2015/lib/header/components/mobile-header-menu/mobile-header-menu.component.js +0 -37
- package/esm2015/lib/header/header-api.js +0 -12
- package/esm2015/lib/header/header.module.js +0 -51
- package/esm2015/lib/header/models/header-auth.settings.js +0 -32
- package/esm2015/lib/header/models/header-language.settings.js +0 -2
- package/esm2015/lib/header/models/header-theme.settings.js +0 -2
- package/esm2015/lib/header/models/header.settings.js +0 -2
- package/esm2015/lib/header/models/mobile-header-nav.settings.js +0 -2
- package/esm2015/lib/navigation/components/navigation/navigation.component.js +0 -544
- package/esm2015/lib/navigation/models/nav-theme.settings.js +0 -2
- package/esm2015/lib/navigation/models/nav.settings.js +0 -2
- package/esm2015/lib/navigation/models/navigation.js +0 -2
- package/esm2015/lib/navigation/navigation-api.js +0 -9
- package/esm2015/lib/navigation/navigation.module.js +0 -67
- package/esm2015/lib/oauth/models/constants.js +0 -6
- package/esm2015/lib/oauth/models/generated/accountManagementAssertionModel.js +0 -2
- package/esm2015/lib/oauth/models/generated/accountManagementRefreshRequestModel.js +0 -2
- package/esm2015/lib/oauth/models/generated/accountManagementResponseModel.js +0 -2
- package/esm2015/lib/oauth/models/generated/coverageDetail.js +0 -19
- package/esm2015/lib/oauth/models/generated/finance.js +0 -13
- package/esm2015/lib/oauth/models/generated/iSsoResponseModel.js +0 -13
- package/esm2015/lib/oauth/models/generated/iSsoResponseModelAccountManagementAssertionModel.js +0 -2
- package/esm2015/lib/oauth/models/generated/person.js +0 -13
- package/esm2015/lib/oauth/models/generated/policy.js +0 -2
- package/esm2015/lib/oauth/models/generated/refreshResponseModel.js +0 -13
- package/esm2015/lib/oauth/models/hybrid-saml-oauth-config.js +0 -4
- package/esm2015/lib/oauth/oauth-api.js +0 -15
- package/esm2015/lib/oauth/oauth.module.js +0 -20
- package/esm2015/lib/oauth/services/hybrid-saml-oauth.service.js +0 -202
- package/esm2015/lib/rbac/directives/rbac-action.directive.js +0 -52
- package/esm2015/lib/rbac/models/access-token-claims.js +0 -23
- package/esm2015/lib/rbac/models/constants.js +0 -4
- package/esm2015/lib/rbac/models/decoded-access-token.js +0 -69
- package/esm2015/lib/rbac/models/rbac-config.js +0 -4
- package/esm2015/lib/rbac/models/role-access.js +0 -10
- package/esm2015/lib/rbac/rbac-api.js +0 -15
- package/esm2015/lib/rbac/rbac.module.js +0 -43
- package/esm2015/lib/rbac/services/ar-role-nav.service.js +0 -90
- package/esm2015/lib/rbac/services/oauth2-role.service.js +0 -120
- package/esm2015/lib/rbac/services/role-nav.service.js +0 -4
- package/esm2015/lib/resize-panels/components/resize-panels/resize-panels.component.js +0 -142
- package/esm2015/lib/resize-panels/models/resize-event.js +0 -2
- package/esm2015/lib/resize-panels/resize-panels-api.js +0 -5
- package/esm2015/lib/resize-panels/resize-panels.module.js +0 -18
- package/esm2015/lib/rum/models/arm-error.js +0 -29
- package/esm2015/lib/rum/models/rum-config.js +0 -4
- package/esm2015/lib/rum/rum-api.js +0 -10
- package/esm2015/lib/rum/rum.module.js +0 -40
- package/esm2015/lib/rum/services/rum.service.js +0 -118
- package/esm2015/lib/rum/services/shared-error.service.js +0 -46
- package/esm2015/lib/rum/services/softheon-error-handler.service.js +0 -81
- package/esm2015/lib/saml/components/redirect-saml/redirect-saml.component.js +0 -76
- package/esm2015/lib/saml/models/i-saml-request.js +0 -2
- package/esm2015/lib/saml/models/i-saml-response.js +0 -2
- package/esm2015/lib/saml/models/redirect-saml-request.js +0 -4
- package/esm2015/lib/saml/models/sso-gateway-model.js +0 -4
- package/esm2015/lib/saml/saml-api.js +0 -15
- package/esm2015/lib/saml/saml.module.js +0 -36
- package/esm2015/lib/saml/services/entry/abstract-saml-entry.service.js +0 -4
- package/esm2015/lib/saml/services/entry/sso-gateway-entry.service.js +0 -35
- package/esm2015/lib/saml/services/send-off/abstract-saml.service.js +0 -9
- package/esm2015/lib/saml/services/send-off/saml.service.js +0 -41
- package/esm2015/lib/sof-pipe/constants/constants.js +0 -17
- package/esm2015/lib/sof-pipe/models/sof-date-pipe-format.js +0 -2
- package/esm2015/lib/sof-pipe/pipes/sof-blank/sof-blank.pipe.js +0 -33
- package/esm2015/lib/sof-pipe/pipes/sof-date/sof-date.pipe.js +0 -54
- package/esm2015/lib/sof-pipe/pipes/sof-ssn/sof-ssn.pipe.js +0 -24
- package/esm2015/lib/sof-pipe/sof-pipe.api.js +0 -9
- package/esm2015/lib/sof-pipe/sof-pipe.module.js +0 -28
- package/esm2015/lib/theming/directives/css-override.directive.js +0 -67
- package/esm2015/lib/theming/models/css-override.js +0 -11
- package/esm2015/lib/theming/services/theme.service.js +0 -166
- package/esm2015/lib/theming/theme-api.js +0 -6
- package/esm2015/lib/theming/theme.module.js +0 -24
- package/esm2015/public-api.js +0 -48
- package/esm2015/softheon-armature.js +0 -12
- package/fesm2015/softheon-armature.js +0 -6517
- package/fesm2015/softheon-armature.js.map +0 -1
- package/softheon-armature.d.ts +0 -11
- package/softheon-armature.metadata.json +0 -1
|
@@ -1,18 +1,35 @@
|
|
|
1
|
+
@use '@angular/material' as mat;
|
|
1
2
|
@import "../../../../../node_modules/@angular/material/theming";
|
|
2
3
|
@import "./arm-theme.scss";
|
|
3
4
|
@import "./utility";
|
|
4
5
|
@import "./variables";
|
|
5
6
|
|
|
6
7
|
// Theme pallets
|
|
7
|
-
@include mat
|
|
8
|
-
$main-theme: mat-light-theme(
|
|
9
|
-
|
|
8
|
+
@include mat.core();
|
|
9
|
+
$main-theme: mat.define-light-theme((
|
|
10
|
+
color: (
|
|
11
|
+
primary: $arm-primary,
|
|
12
|
+
accent: $arm-accent,
|
|
13
|
+
error: $arm-error
|
|
14
|
+
),
|
|
15
|
+
typography: mat.define-typography-config(),
|
|
16
|
+
density: 0,
|
|
17
|
+
));
|
|
18
|
+
$main-theme-dark: mat.define-dark-theme((
|
|
19
|
+
color: (
|
|
20
|
+
primary: $arm-primary,
|
|
21
|
+
accent: $arm-accent,
|
|
22
|
+
error: $arm-error
|
|
23
|
+
),
|
|
24
|
+
typography: mat.define-typography-config(),
|
|
25
|
+
density: 0,
|
|
26
|
+
));
|
|
10
27
|
|
|
11
28
|
body {
|
|
12
29
|
letter-spacing: 0px;
|
|
13
30
|
font-family: "Poppins", sans-serif !important;
|
|
14
31
|
font-size: 14px;
|
|
15
|
-
@include
|
|
32
|
+
@include mat.core-theme($main-theme);
|
|
16
33
|
margin: 0 !important;
|
|
17
34
|
}
|
|
18
35
|
|
|
@@ -154,31 +171,31 @@ mat-form-field {
|
|
|
154
171
|
}
|
|
155
172
|
|
|
156
173
|
.color-primary {
|
|
157
|
-
color: mat-color($arm-primary, 500);
|
|
174
|
+
color: mat.get-color-from-palette($arm-primary, 500);
|
|
158
175
|
}
|
|
159
176
|
|
|
160
177
|
.color-accent {
|
|
161
|
-
color: mat-color($arm-accent, 500);
|
|
178
|
+
color: mat.get-color-from-palette($arm-accent, 500);
|
|
162
179
|
}
|
|
163
180
|
|
|
164
181
|
.color-warn {
|
|
165
|
-
color: mat-color($arm-warn, 500);
|
|
182
|
+
color: mat.get-color-from-palette($arm-warn, 500);
|
|
166
183
|
}
|
|
167
184
|
|
|
168
185
|
.color-info {
|
|
169
|
-
color: mat-color($arm-info, 500);
|
|
186
|
+
color: mat.get-color-from-palette($arm-info, 500);
|
|
170
187
|
}
|
|
171
188
|
|
|
172
189
|
.color-success {
|
|
173
|
-
color: mat-color($arm-success, 500);
|
|
190
|
+
color: mat.get-color-from-palette($arm-success, 500);
|
|
174
191
|
}
|
|
175
192
|
|
|
176
193
|
.color-error {
|
|
177
|
-
color: mat-color($arm-error, 500);
|
|
194
|
+
color: mat.get-color-from-palette($arm-error, 500);
|
|
178
195
|
}
|
|
179
196
|
|
|
180
197
|
.color-neutral {
|
|
181
|
-
color: mat-color($arm-neutral, 500);
|
|
198
|
+
color: mat.get-color-from-palette($arm-neutral, 500);
|
|
182
199
|
}
|
|
183
200
|
|
|
184
201
|
.full-width {
|
|
@@ -188,7 +205,7 @@ mat-form-field {
|
|
|
188
205
|
.delete-icon {
|
|
189
206
|
cursor: pointer;
|
|
190
207
|
font-size: 1.5em;
|
|
191
|
-
color: mat-color($arm-warn, 500);
|
|
208
|
+
color: mat.get-color-from-palette($arm-warn, 500);
|
|
192
209
|
}
|
|
193
210
|
|
|
194
211
|
.tooltip {
|
|
@@ -225,7 +242,6 @@ mat-form-field {
|
|
|
225
242
|
width: 100% !important;
|
|
226
243
|
}
|
|
227
244
|
}
|
|
228
|
-
|
|
229
245
|
.mat-button-toggle-label-content {
|
|
230
246
|
text-transform: uppercase !important;
|
|
231
247
|
font-family: "Poppins" !important;
|
|
@@ -241,58 +257,57 @@ mat-form-field {
|
|
|
241
257
|
height: 100% !important;
|
|
242
258
|
}
|
|
243
259
|
.mat-button-toggle-checked {
|
|
244
|
-
background-color: mat-color($arm-primary, 100) !important;
|
|
260
|
+
background-color: mat.get-color-from-palette($arm-primary, 100) !important;
|
|
245
261
|
}
|
|
246
262
|
.toggle-left {
|
|
247
|
-
border-top: 2px solid mat-color($arm-primary, 500) !important;
|
|
248
|
-
border-bottom: 2px solid mat-color($arm-primary, 500) !important;
|
|
249
|
-
border-left: 2px solid mat-color($arm-primary, 500) !important;
|
|
250
|
-
border-right: 1px solid mat-color($arm-primary, 500) !important;
|
|
263
|
+
border-top: 2px solid mat.get-color-from-palette($arm-primary, 500) !important;
|
|
264
|
+
border-bottom: 2px solid mat.get-color-from-palette($arm-primary, 500) !important;
|
|
265
|
+
border-left: 2px solid mat.get-color-from-palette($arm-primary, 500) !important;
|
|
266
|
+
border-right: 1px solid mat.get-color-from-palette($arm-primary, 500) !important;
|
|
251
267
|
border-radius: 6px 0px 0px 6px !important;
|
|
252
268
|
width: 120px !important;
|
|
253
269
|
}
|
|
254
270
|
.toggle-middle {
|
|
255
|
-
border-top: 2px solid mat-color($arm-primary, 500) !important;
|
|
256
|
-
border-bottom: 2px solid mat-color($arm-primary, 500) !important;
|
|
257
|
-
border-left: 1px solid mat-color($arm-primary, 500) !important;
|
|
258
|
-
border-right: 1px solid mat-color($arm-primary, 500) !important;
|
|
271
|
+
border-top: 2px solid mat.get-color-from-palette($arm-primary, 500) !important;
|
|
272
|
+
border-bottom: 2px solid mat.get-color-from-palette($arm-primary, 500) !important;
|
|
273
|
+
border-left: 1px solid mat.get-color-from-palette($arm-primary, 500) !important;
|
|
274
|
+
border-right: 1px solid mat.get-color-from-palette($arm-primary, 500) !important;
|
|
259
275
|
border-radius: 0px 0px 0px 0px !important;
|
|
260
276
|
width: 120px !important;
|
|
261
277
|
}
|
|
262
278
|
.toggle-right {
|
|
263
|
-
border-top: 2px solid mat-color($arm-primary, 500) !important;
|
|
264
|
-
border-bottom: 2px solid mat-color($arm-primary, 500) !important;
|
|
265
|
-
border-left: 1px solid mat-color($arm-primary, 500) !important;
|
|
266
|
-
border-right: 2px solid mat-color($arm-primary, 500) !important;
|
|
279
|
+
border-top: 2px solid mat.get-color-from-palette($arm-primary, 500) !important;
|
|
280
|
+
border-bottom: 2px solid mat.get-color-from-palette($arm-primary, 500) !important;
|
|
281
|
+
border-left: 1px solid mat.get-color-from-palette($arm-primary, 500) !important;
|
|
282
|
+
border-right: 2px solid mat.get-color-from-palette($arm-primary, 500) !important;
|
|
267
283
|
border-radius: 0px 6px 6px 0px !important;
|
|
268
284
|
width: 120px !important;
|
|
269
285
|
}
|
|
270
|
-
|
|
271
286
|
.mat-button-toggle-disabled {
|
|
272
287
|
&.mat-button-toggle-checked {
|
|
273
|
-
background-color: mat-color($arm-neutral, 200) !important;
|
|
288
|
+
background-color: mat.get-color-from-palette($arm-neutral, 200) !important;
|
|
274
289
|
}
|
|
275
290
|
&.toggle-left {
|
|
276
|
-
border-top: 2px solid mat-color($arm-neutral, 400) !important;
|
|
277
|
-
border-bottom: 2px solid mat-color($arm-neutral, 400) !important;
|
|
278
|
-
border-left: 2px solid mat-color($arm-neutral, 400) !important;
|
|
279
|
-
border-right: 1px solid mat-color($arm-neutral, 400) !important;
|
|
291
|
+
border-top: 2px solid mat.get-color-from-palette($arm-neutral, 400) !important;
|
|
292
|
+
border-bottom: 2px solid mat.get-color-from-palette($arm-neutral, 400) !important;
|
|
293
|
+
border-left: 2px solid mat.get-color-from-palette($arm-neutral, 400) !important;
|
|
294
|
+
border-right: 1px solid mat.get-color-from-palette($arm-neutral, 400) !important;
|
|
280
295
|
border-radius: 6px 0px 0px 6px !important;
|
|
281
296
|
width: 120px !important;
|
|
282
297
|
}
|
|
283
298
|
&.toggle-middle {
|
|
284
|
-
border-top: 2px solid mat-color($arm-neutral, 400) !important;
|
|
285
|
-
border-bottom: 2px solid mat-color($arm-neutral, 400) !important;
|
|
286
|
-
border-left: 1px solid mat-color($arm-neutral, 400) !important;
|
|
287
|
-
border-right: 1px solid mat-color($arm-neutral, 400) !important;
|
|
299
|
+
border-top: 2px solid mat.get-color-from-palette($arm-neutral, 400) !important;
|
|
300
|
+
border-bottom: 2px solid mat.get-color-from-palette($arm-neutral, 400) !important;
|
|
301
|
+
border-left: 1px solid mat.get-color-from-palette($arm-neutral, 400) !important;
|
|
302
|
+
border-right: 1px solid mat.get-color-from-palette($arm-neutral, 400) !important;
|
|
288
303
|
border-radius: 0px 0px 0px 0px !important;
|
|
289
304
|
width: 120px !important;
|
|
290
305
|
}
|
|
291
306
|
&.toggle-right {
|
|
292
|
-
border-top: 2px solid mat-color($arm-neutral, 400) !important;
|
|
293
|
-
border-bottom: 2px solid mat-color($arm-neutral, 400) !important;
|
|
294
|
-
border-left: 1px solid mat-color($arm-neutral, 400) !important;
|
|
295
|
-
border-right: 2px solid mat-color($arm-neutral, 400) !important;
|
|
307
|
+
border-top: 2px solid mat.get-color-from-palette($arm-neutral, 400) !important;
|
|
308
|
+
border-bottom: 2px solid mat.get-color-from-palette($arm-neutral, 400) !important;
|
|
309
|
+
border-left: 1px solid mat.get-color-from-palette($arm-neutral, 400) !important;
|
|
310
|
+
border-right: 2px solid mat.get-color-from-palette($arm-neutral, 400) !important;
|
|
296
311
|
border-radius: 0px 6px 6px 0px !important;
|
|
297
312
|
width: 120px !important;
|
|
298
313
|
}
|
|
@@ -312,7 +327,7 @@ mat-form-field {
|
|
|
312
327
|
|
|
313
328
|
/** Material Overrides */
|
|
314
329
|
|
|
315
|
-
button.mat-button {
|
|
330
|
+
button.mat-mdc-button {
|
|
316
331
|
&.sof-button {
|
|
317
332
|
padding: 0px 24px !important;
|
|
318
333
|
height: 48px !important;
|
|
@@ -335,66 +350,66 @@ button.mat-button {
|
|
|
335
350
|
|
|
336
351
|
&:enabled {
|
|
337
352
|
&.mat-primary {
|
|
338
|
-
color: mat-color($arm-primary, 500) !important;
|
|
353
|
+
color: mat.get-color-from-palette($arm-primary, 500) !important;
|
|
339
354
|
&:hover {
|
|
340
|
-
background-color: mat-color($arm-primary, 50);
|
|
355
|
+
background-color: mat.get-color-from-palette($arm-primary, 50);
|
|
341
356
|
}
|
|
342
357
|
&:focus {
|
|
343
|
-
background-color: mat-color($arm-primary, 100);
|
|
358
|
+
background-color: mat.get-color-from-palette($arm-primary, 100);
|
|
344
359
|
}
|
|
345
360
|
}
|
|
346
361
|
&.mat-accent {
|
|
347
|
-
color: mat-color($arm-accent, 500) !important;
|
|
362
|
+
color: mat.get-color-from-palette($arm-accent, 500) !important;
|
|
348
363
|
&:hover {
|
|
349
|
-
background-color: mat-color($arm-accent, 50);
|
|
364
|
+
background-color: mat.get-color-from-palette($arm-accent, 50);
|
|
350
365
|
}
|
|
351
366
|
&:focus {
|
|
352
|
-
background-color: mat-color($arm-accent, 100);
|
|
367
|
+
background-color: mat.get-color-from-palette($arm-accent, 100);
|
|
353
368
|
}
|
|
354
369
|
}
|
|
355
370
|
&.mat-warn {
|
|
356
|
-
color: mat-color($arm-warn, 500) !important;
|
|
371
|
+
color: mat.get-color-from-palette($arm-warn, 500) !important;
|
|
357
372
|
&:hover {
|
|
358
|
-
background-color: mat-color($arm-warn, 50);
|
|
373
|
+
background-color: mat.get-color-from-palette($arm-warn, 50);
|
|
359
374
|
}
|
|
360
375
|
&:focus {
|
|
361
|
-
background-color: mat-color($arm-warn, 100);
|
|
376
|
+
background-color: mat.get-color-from-palette($arm-warn, 100);
|
|
362
377
|
}
|
|
363
378
|
}
|
|
364
379
|
&.mat-success {
|
|
365
|
-
color: mat-color($arm-success, 500) !important;
|
|
380
|
+
color: mat.get-color-from-palette($arm-success, 500) !important;
|
|
366
381
|
&:hover {
|
|
367
|
-
background-color: mat-color($arm-success, 50);
|
|
382
|
+
background-color: mat.get-color-from-palette($arm-success, 50);
|
|
368
383
|
}
|
|
369
384
|
&:focus {
|
|
370
|
-
background-color: mat-color($arm-success, 100);
|
|
385
|
+
background-color: mat.get-color-from-palette($arm-success, 100);
|
|
371
386
|
}
|
|
372
387
|
}
|
|
373
388
|
&.mat-error {
|
|
374
|
-
color: mat-color($arm-error, 500) !important;
|
|
389
|
+
color: mat.get-color-from-palette($arm-error, 500) !important;
|
|
375
390
|
&:hover {
|
|
376
|
-
background-color: mat-color($arm-error, 50);
|
|
391
|
+
background-color: mat.get-color-from-palette($arm-error, 50);
|
|
377
392
|
}
|
|
378
393
|
&:focus {
|
|
379
|
-
background-color: mat-color($arm-error, 100);
|
|
394
|
+
background-color: mat.get-color-from-palette($arm-error, 100);
|
|
380
395
|
}
|
|
381
396
|
}
|
|
382
397
|
&.mat-info {
|
|
383
|
-
color: mat-color($arm-info, 500) !important;
|
|
398
|
+
color: mat.get-color-from-palette($arm-info, 500) !important;
|
|
384
399
|
&:hover {
|
|
385
|
-
background-color: mat-color($arm-info, 50);
|
|
400
|
+
background-color: mat.get-color-from-palette($arm-info, 50);
|
|
386
401
|
}
|
|
387
402
|
&:focus {
|
|
388
|
-
background-color: mat-color($arm-info, 100);
|
|
403
|
+
background-color: mat.get-color-from-palette($arm-info, 100);
|
|
389
404
|
}
|
|
390
405
|
}
|
|
391
406
|
&.mat-neutral {
|
|
392
407
|
color: #000000de !important;
|
|
393
408
|
&:hover {
|
|
394
|
-
background-color: mat-color($arm-neutral, 50);
|
|
409
|
+
background-color: mat.get-color-from-palette($arm-neutral, 50);
|
|
395
410
|
}
|
|
396
411
|
&:focus {
|
|
397
|
-
background-color: mat-color($arm-neutral, 100);
|
|
412
|
+
background-color: mat.get-color-from-palette($arm-neutral, 100);
|
|
398
413
|
}
|
|
399
414
|
}
|
|
400
415
|
}
|
|
@@ -434,66 +449,66 @@ button.mat-button {
|
|
|
434
449
|
|
|
435
450
|
&:enabled {
|
|
436
451
|
&.mat-primary {
|
|
437
|
-
color: mat-color($arm-primary, 500) !important;
|
|
452
|
+
color: mat.get-color-from-palette($arm-primary, 500) !important;
|
|
438
453
|
&:hover {
|
|
439
|
-
background-color: mat-color($arm-primary, 50);
|
|
454
|
+
background-color: mat.get-color-from-palette($arm-primary, 50);
|
|
440
455
|
}
|
|
441
456
|
&:focus {
|
|
442
|
-
background-color: mat-color($arm-primary, 100);
|
|
457
|
+
background-color: mat.get-color-from-palette($arm-primary, 100);
|
|
443
458
|
}
|
|
444
459
|
}
|
|
445
460
|
&.mat-accent {
|
|
446
|
-
color: mat-color($arm-accent, 500) !important;
|
|
461
|
+
color: mat.get-color-from-palette($arm-accent, 500) !important;
|
|
447
462
|
&:hover {
|
|
448
|
-
background-color: mat-color($arm-accent, 50);
|
|
463
|
+
background-color: mat.get-color-from-palette($arm-accent, 50);
|
|
449
464
|
}
|
|
450
465
|
&:focus {
|
|
451
|
-
background-color: mat-color($arm-accent, 100);
|
|
466
|
+
background-color: mat.get-color-from-palette($arm-accent, 100);
|
|
452
467
|
}
|
|
453
468
|
}
|
|
454
469
|
&.mat-warn {
|
|
455
|
-
color: mat-color($arm-warn, 500) !important;
|
|
470
|
+
color: mat.get-color-from-palette($arm-warn, 500) !important;
|
|
456
471
|
&:hover {
|
|
457
|
-
background-color: mat-color($arm-warn, 50);
|
|
472
|
+
background-color: mat.get-color-from-palette($arm-warn, 50);
|
|
458
473
|
}
|
|
459
474
|
&:focus {
|
|
460
|
-
background-color: mat-color($arm-warn, 100);
|
|
475
|
+
background-color: mat.get-color-from-palette($arm-warn, 100);
|
|
461
476
|
}
|
|
462
477
|
}
|
|
463
478
|
&.mat-success {
|
|
464
|
-
color: mat-color($arm-success, 500) !important;
|
|
479
|
+
color: mat.get-color-from-palette($arm-success, 500) !important;
|
|
465
480
|
&:hover {
|
|
466
|
-
background-color: mat-color($arm-success, 50);
|
|
481
|
+
background-color: mat.get-color-from-palette($arm-success, 50);
|
|
467
482
|
}
|
|
468
483
|
&:focus {
|
|
469
|
-
background-color: mat-color($arm-success, 100);
|
|
484
|
+
background-color: mat.get-color-from-palette($arm-success, 100);
|
|
470
485
|
}
|
|
471
486
|
}
|
|
472
487
|
&.mat-error {
|
|
473
|
-
color: mat-color($arm-error, 500) !important;
|
|
488
|
+
color: mat.get-color-from-palette($arm-error, 500) !important;
|
|
474
489
|
&:hover {
|
|
475
|
-
background-color: mat-color($arm-error, 50);
|
|
490
|
+
background-color: mat.get-color-from-palette($arm-error, 50);
|
|
476
491
|
}
|
|
477
492
|
&:focus {
|
|
478
|
-
background-color: mat-color($arm-error, 100);
|
|
493
|
+
background-color: mat.get-color-from-palette($arm-error, 100);
|
|
479
494
|
}
|
|
480
495
|
}
|
|
481
496
|
&.mat-info {
|
|
482
|
-
color: mat-color($arm-info, 500) !important;
|
|
497
|
+
color: mat.get-color-from-palette($arm-info, 500) !important;
|
|
483
498
|
&:hover {
|
|
484
|
-
background-color: mat-color($arm-info, 50);
|
|
499
|
+
background-color: mat.get-color-from-palette($arm-info, 50);
|
|
485
500
|
}
|
|
486
501
|
&:focus {
|
|
487
|
-
background-color: mat-color($arm-info, 100);
|
|
502
|
+
background-color: mat.get-color-from-palette($arm-info, 100);
|
|
488
503
|
}
|
|
489
504
|
}
|
|
490
505
|
&.mat-neutral {
|
|
491
506
|
color: #000000de !important;
|
|
492
507
|
&:hover {
|
|
493
|
-
background-color: mat-color($arm-neutral, 50);
|
|
508
|
+
background-color: mat.get-color-from-palette($arm-neutral, 50);
|
|
494
509
|
}
|
|
495
510
|
&:focus {
|
|
496
|
-
background-color: mat-color($arm-neutral, 100);
|
|
511
|
+
background-color: mat.get-color-from-palette($arm-neutral, 100);
|
|
497
512
|
}
|
|
498
513
|
}
|
|
499
514
|
}
|
|
@@ -523,7 +538,7 @@ button.mat-button {
|
|
|
523
538
|
}
|
|
524
539
|
}
|
|
525
540
|
|
|
526
|
-
button.mat-
|
|
541
|
+
button.mat-mdc-unelevated-button {
|
|
527
542
|
&.sof-flat-button {
|
|
528
543
|
padding: 0px 24px !important;
|
|
529
544
|
height: 48px !important;
|
|
@@ -547,66 +562,66 @@ button.mat-flat-button {
|
|
|
547
562
|
&:enabled {
|
|
548
563
|
color: #ffffff !important;
|
|
549
564
|
&.mat-primary {
|
|
550
|
-
background: mat-color($arm-primary, 500);
|
|
565
|
+
background: mat.get-color-from-palette($arm-primary, 500);
|
|
551
566
|
&:hover {
|
|
552
|
-
background-color: mat-color($arm-primary, 700);
|
|
567
|
+
background-color: mat.get-color-from-palette($arm-primary, 700);
|
|
553
568
|
}
|
|
554
569
|
&:focus {
|
|
555
|
-
background-color: mat-color($arm-primary, 900);
|
|
570
|
+
background-color: mat.get-color-from-palette($arm-primary, 900);
|
|
556
571
|
}
|
|
557
572
|
}
|
|
558
573
|
&.mat-accent {
|
|
559
|
-
background: mat-color($arm-accent, 500);
|
|
574
|
+
background: mat.get-color-from-palette($arm-accent, 500);
|
|
560
575
|
&:hover {
|
|
561
|
-
background-color: mat-color($arm-accent, 700);
|
|
576
|
+
background-color: mat.get-color-from-palette($arm-accent, 700);
|
|
562
577
|
}
|
|
563
578
|
&:focus {
|
|
564
|
-
background-color: mat-color($arm-accent, 900);
|
|
579
|
+
background-color: mat.get-color-from-palette($arm-accent, 900);
|
|
565
580
|
}
|
|
566
581
|
}
|
|
567
582
|
&.mat-warn {
|
|
568
|
-
background: mat-color($arm-warn, 500);
|
|
583
|
+
background: mat.get-color-from-palette($arm-warn, 500);
|
|
569
584
|
&:hover {
|
|
570
|
-
background-color: mat-color($arm-warn, 700);
|
|
585
|
+
background-color: mat.get-color-from-palette($arm-warn, 700);
|
|
571
586
|
}
|
|
572
587
|
&:focus {
|
|
573
|
-
background-color: mat-color($arm-warn, 900);
|
|
588
|
+
background-color: mat.get-color-from-palette($arm-warn, 900);
|
|
574
589
|
}
|
|
575
590
|
}
|
|
576
591
|
&.mat-success {
|
|
577
|
-
background: mat-color($arm-success, 500);
|
|
592
|
+
background: mat.get-color-from-palette($arm-success, 500);
|
|
578
593
|
&:hover {
|
|
579
|
-
background-color: mat-color($arm-success, 700);
|
|
594
|
+
background-color: mat.get-color-from-palette($arm-success, 700);
|
|
580
595
|
}
|
|
581
596
|
&:focus {
|
|
582
|
-
background-color: mat-color($arm-success, 900);
|
|
597
|
+
background-color: mat.get-color-from-palette($arm-success, 900);
|
|
583
598
|
}
|
|
584
599
|
}
|
|
585
600
|
&.mat-error {
|
|
586
|
-
background: mat-color($arm-error, 500);
|
|
601
|
+
background: mat.get-color-from-palette($arm-error, 500);
|
|
587
602
|
&:hover {
|
|
588
|
-
background-color: mat-color($arm-error, 700);
|
|
603
|
+
background-color: mat.get-color-from-palette($arm-error, 700);
|
|
589
604
|
}
|
|
590
605
|
&:focus {
|
|
591
|
-
background-color: mat-color($arm-error, 900);
|
|
606
|
+
background-color: mat.get-color-from-palette($arm-error, 900);
|
|
592
607
|
}
|
|
593
608
|
}
|
|
594
609
|
&.mat-info {
|
|
595
|
-
background: mat-color($arm-info, 500);
|
|
610
|
+
background: mat.get-color-from-palette($arm-info, 500);
|
|
596
611
|
&:hover {
|
|
597
|
-
background-color: mat-color($arm-info, 700);
|
|
612
|
+
background-color: mat.get-color-from-palette($arm-info, 700);
|
|
598
613
|
}
|
|
599
614
|
&:focus {
|
|
600
|
-
background-color: mat-color($arm-info, 900);
|
|
615
|
+
background-color: mat.get-color-from-palette($arm-info, 900);
|
|
601
616
|
}
|
|
602
617
|
}
|
|
603
618
|
&.mat-neutral {
|
|
604
619
|
background: #000000de;
|
|
605
620
|
&:hover {
|
|
606
|
-
background-color: mat-color($arm-neutral, 700);
|
|
621
|
+
background-color: mat.get-color-from-palette($arm-neutral, 700);
|
|
607
622
|
}
|
|
608
623
|
&:focus {
|
|
609
|
-
background-color: mat-color($arm-neutral, 900);
|
|
624
|
+
background-color: mat.get-color-from-palette($arm-neutral, 900);
|
|
610
625
|
}
|
|
611
626
|
}
|
|
612
627
|
i {
|
|
@@ -651,66 +666,66 @@ button.mat-flat-button {
|
|
|
651
666
|
&:enabled {
|
|
652
667
|
color: #ffffff !important;
|
|
653
668
|
&.mat-primary {
|
|
654
|
-
background: mat-color($arm-primary, 500);
|
|
669
|
+
background: mat.get-color-from-palette($arm-primary, 500);
|
|
655
670
|
&:hover {
|
|
656
|
-
background-color: mat-color($arm-primary, 700);
|
|
671
|
+
background-color: mat.get-color-from-palette($arm-primary, 700);
|
|
657
672
|
}
|
|
658
673
|
&:focus {
|
|
659
|
-
background-color: mat-color($arm-primary, 900);
|
|
674
|
+
background-color: mat.get-color-from-palette($arm-primary, 900);
|
|
660
675
|
}
|
|
661
676
|
}
|
|
662
677
|
&.mat-accent {
|
|
663
|
-
background: mat-color($arm-accent, 500);
|
|
678
|
+
background: mat.get-color-from-palette($arm-accent, 500);
|
|
664
679
|
&:hover {
|
|
665
|
-
background-color: mat-color($arm-accent, 700);
|
|
680
|
+
background-color: mat.get-color-from-palette($arm-accent, 700);
|
|
666
681
|
}
|
|
667
682
|
&:focus {
|
|
668
|
-
background-color: mat-color($arm-accent, 900);
|
|
683
|
+
background-color: mat.get-color-from-palette($arm-accent, 900);
|
|
669
684
|
}
|
|
670
685
|
}
|
|
671
686
|
&.mat-warn {
|
|
672
|
-
background: mat-color($arm-warn, 500);
|
|
687
|
+
background: mat.get-color-from-palette($arm-warn, 500);
|
|
673
688
|
&:hover {
|
|
674
|
-
background-color: mat-color($arm-warn, 700);
|
|
689
|
+
background-color: mat.get-color-from-palette($arm-warn, 700);
|
|
675
690
|
}
|
|
676
691
|
&:focus {
|
|
677
|
-
background-color: mat-color($arm-warn, 900);
|
|
692
|
+
background-color: mat.get-color-from-palette($arm-warn, 900);
|
|
678
693
|
}
|
|
679
694
|
}
|
|
680
695
|
&.mat-success {
|
|
681
|
-
background: mat-color($arm-success, 500);
|
|
696
|
+
background: mat.get-color-from-palette($arm-success, 500);
|
|
682
697
|
&:hover {
|
|
683
|
-
background-color: mat-color($arm-success, 700);
|
|
698
|
+
background-color: mat.get-color-from-palette($arm-success, 700);
|
|
684
699
|
}
|
|
685
700
|
&:focus {
|
|
686
|
-
background-color: mat-color($arm-success, 900);
|
|
701
|
+
background-color: mat.get-color-from-palette($arm-success, 900);
|
|
687
702
|
}
|
|
688
703
|
}
|
|
689
704
|
&.mat-error {
|
|
690
|
-
background: mat-color($arm-error, 500);
|
|
705
|
+
background: mat.get-color-from-palette($arm-error, 500);
|
|
691
706
|
&:hover {
|
|
692
|
-
background-color: mat-color($arm-error, 700);
|
|
707
|
+
background-color: mat.get-color-from-palette($arm-error, 700);
|
|
693
708
|
}
|
|
694
709
|
&:focus {
|
|
695
|
-
background-color: mat-color($arm-error, 900);
|
|
710
|
+
background-color: mat.get-color-from-palette($arm-error, 900);
|
|
696
711
|
}
|
|
697
712
|
}
|
|
698
713
|
&.mat-info {
|
|
699
|
-
background: mat-color($arm-info, 500);
|
|
714
|
+
background: mat.get-color-from-palette($arm-info, 500);
|
|
700
715
|
&:hover {
|
|
701
|
-
background-color: mat-color($arm-info, 700);
|
|
716
|
+
background-color: mat.get-color-from-palette($arm-info, 700);
|
|
702
717
|
}
|
|
703
718
|
&:focus {
|
|
704
|
-
background-color: mat-color($arm-info, 900);
|
|
719
|
+
background-color: mat.get-color-from-palette($arm-info, 900);
|
|
705
720
|
}
|
|
706
721
|
}
|
|
707
722
|
&.mat-neutral {
|
|
708
723
|
background: #000000de;
|
|
709
724
|
&:hover {
|
|
710
|
-
background-color: mat-color($arm-neutral, 700);
|
|
725
|
+
background-color: mat.get-color-from-palette($arm-neutral, 700);
|
|
711
726
|
}
|
|
712
727
|
&:focus {
|
|
713
|
-
background-color: mat-color($arm-neutral, 900);
|
|
728
|
+
background-color: mat.get-color-from-palette($arm-neutral, 900);
|
|
714
729
|
}
|
|
715
730
|
}
|
|
716
731
|
i {
|
|
@@ -744,7 +759,7 @@ button.mat-flat-button {
|
|
|
744
759
|
}
|
|
745
760
|
}
|
|
746
761
|
|
|
747
|
-
button.mat-
|
|
762
|
+
button.mat-mdc-outlined-button {
|
|
748
763
|
&.sof-stroked-button {
|
|
749
764
|
padding: 0px 24px !important;
|
|
750
765
|
height: 48px !important;
|
|
@@ -768,20 +783,20 @@ button.mat-stroked-button {
|
|
|
768
783
|
|
|
769
784
|
&:enabled {
|
|
770
785
|
&.mat-primary {
|
|
771
|
-
background-color: mat-color($arm-primary, 50) !important;
|
|
772
|
-
color: mat-color($arm-primary, 500) !important;
|
|
786
|
+
background-color: mat.get-color-from-palette($arm-primary, 50) !important;
|
|
787
|
+
color: mat.get-color-from-palette($arm-primary, 500) !important;
|
|
773
788
|
i {
|
|
774
|
-
color: mat-color($arm-primary, 500) !important;
|
|
789
|
+
color: mat.get-color-from-palette($arm-primary, 500) !important;
|
|
775
790
|
}
|
|
776
791
|
&:hover {
|
|
777
|
-
background-color: mat-color($arm-primary, 100) !important;
|
|
792
|
+
background-color: mat.get-color-from-palette($arm-primary, 100) !important;
|
|
778
793
|
color: white !important;
|
|
779
794
|
i {
|
|
780
795
|
color: white !important;
|
|
781
796
|
}
|
|
782
797
|
}
|
|
783
798
|
&:focus {
|
|
784
|
-
background-color: mat-color($arm-primary, 200) !important;
|
|
799
|
+
background-color: mat.get-color-from-palette($arm-primary, 200) !important;
|
|
785
800
|
color: white !important;
|
|
786
801
|
i {
|
|
787
802
|
color: white !important;
|
|
@@ -789,20 +804,20 @@ button.mat-stroked-button {
|
|
|
789
804
|
}
|
|
790
805
|
}
|
|
791
806
|
&.mat-accent {
|
|
792
|
-
background-color: mat-color($arm-accent, 50) !important;
|
|
793
|
-
color: mat-color($arm-accent, 500) !important;
|
|
807
|
+
background-color: mat.get-color-from-palette($arm-accent, 50) !important;
|
|
808
|
+
color: mat.get-color-from-palette($arm-accent, 500) !important;
|
|
794
809
|
i {
|
|
795
|
-
color: mat-color($arm-accent, 500) !important;
|
|
810
|
+
color: mat.get-color-from-palette($arm-accent, 500) !important;
|
|
796
811
|
}
|
|
797
812
|
&:hover {
|
|
798
|
-
background-color: mat-color($arm-accent, 100) !important;
|
|
813
|
+
background-color: mat.get-color-from-palette($arm-accent, 100) !important;
|
|
799
814
|
color: white !important;
|
|
800
815
|
i {
|
|
801
816
|
color: white !important;
|
|
802
817
|
}
|
|
803
818
|
}
|
|
804
819
|
&:focus {
|
|
805
|
-
background-color: mat-color($arm-accent, 200) !important;
|
|
820
|
+
background-color: mat.get-color-from-palette($arm-accent, 200) !important;
|
|
806
821
|
color: white !important;
|
|
807
822
|
i {
|
|
808
823
|
color: white !important;
|
|
@@ -810,20 +825,20 @@ button.mat-stroked-button {
|
|
|
810
825
|
}
|
|
811
826
|
}
|
|
812
827
|
&.mat-warn {
|
|
813
|
-
background-color: mat-color($arm-warn, 50) !important;
|
|
814
|
-
color: mat-color($arm-warn, 500) !important;
|
|
828
|
+
background-color: mat.get-color-from-palette($arm-warn, 50) !important;
|
|
829
|
+
color: mat.get-color-from-palette($arm-warn, 500) !important;
|
|
815
830
|
i {
|
|
816
|
-
color: mat-color($arm-warn, 500) !important;
|
|
831
|
+
color: mat.get-color-from-palette($arm-warn, 500) !important;
|
|
817
832
|
}
|
|
818
833
|
&:hover {
|
|
819
|
-
background-color: mat-color($arm-warn, 100) !important;
|
|
834
|
+
background-color: mat.get-color-from-palette($arm-warn, 100) !important;
|
|
820
835
|
color: white !important;
|
|
821
836
|
i {
|
|
822
837
|
color: white !important;
|
|
823
838
|
}
|
|
824
839
|
}
|
|
825
840
|
&:focus {
|
|
826
|
-
background-color: mat-color($arm-warn, 200) !important;
|
|
841
|
+
background-color: mat.get-color-from-palette($arm-warn, 200) !important;
|
|
827
842
|
color: white !important;
|
|
828
843
|
i {
|
|
829
844
|
color: white !important;
|
|
@@ -831,20 +846,20 @@ button.mat-stroked-button {
|
|
|
831
846
|
}
|
|
832
847
|
}
|
|
833
848
|
&.mat-success {
|
|
834
|
-
background-color: mat-color($arm-success, 50) !important;
|
|
835
|
-
color: mat-color($arm-success, 500) !important;
|
|
849
|
+
background-color: mat.get-color-from-palette($arm-success, 50) !important;
|
|
850
|
+
color: mat.get-color-from-palette($arm-success, 500) !important;
|
|
836
851
|
i {
|
|
837
|
-
color: mat-color($arm-success, 500) !important;
|
|
852
|
+
color: mat.get-color-from-palette($arm-success, 500) !important;
|
|
838
853
|
}
|
|
839
854
|
&:hover {
|
|
840
|
-
background-color: mat-color($arm-success, 100) !important;
|
|
855
|
+
background-color: mat.get-color-from-palette($arm-success, 100) !important;
|
|
841
856
|
color: white !important;
|
|
842
857
|
i {
|
|
843
858
|
color: white !important;
|
|
844
859
|
}
|
|
845
860
|
}
|
|
846
861
|
&:focus {
|
|
847
|
-
background-color: mat-color($arm-success, 200) !important;
|
|
862
|
+
background-color: mat.get-color-from-palette($arm-success, 200) !important;
|
|
848
863
|
color: white !important;
|
|
849
864
|
i {
|
|
850
865
|
color: white !important;
|
|
@@ -852,20 +867,20 @@ button.mat-stroked-button {
|
|
|
852
867
|
}
|
|
853
868
|
}
|
|
854
869
|
&.mat-info {
|
|
855
|
-
background-color: mat-color($arm-info, 50) !important;
|
|
856
|
-
color: mat-color($arm-info, 500) !important;
|
|
870
|
+
background-color: mat.get-color-from-palette($arm-info, 50) !important;
|
|
871
|
+
color: mat.get-color-from-palette($arm-info, 500) !important;
|
|
857
872
|
i {
|
|
858
|
-
color: mat-color($arm-info, 500) !important;
|
|
873
|
+
color: mat.get-color-from-palette($arm-info, 500) !important;
|
|
859
874
|
}
|
|
860
875
|
&:hover {
|
|
861
|
-
background-color: mat-color($arm-info, 100) !important;
|
|
876
|
+
background-color: mat.get-color-from-palette($arm-info, 100) !important;
|
|
862
877
|
color: white !important;
|
|
863
878
|
i {
|
|
864
879
|
color: white !important;
|
|
865
880
|
}
|
|
866
881
|
}
|
|
867
882
|
&:focus {
|
|
868
|
-
background-color: mat-color($arm-info, 200) !important;
|
|
883
|
+
background-color: mat.get-color-from-palette($arm-info, 200) !important;
|
|
869
884
|
color: white !important;
|
|
870
885
|
i {
|
|
871
886
|
color: white !important;
|
|
@@ -873,20 +888,20 @@ button.mat-stroked-button {
|
|
|
873
888
|
}
|
|
874
889
|
}
|
|
875
890
|
&.mat-error {
|
|
876
|
-
background-color: mat-color($arm-error, 50) !important;
|
|
877
|
-
color: mat-color($arm-error, 500) !important;
|
|
891
|
+
background-color: mat.get-color-from-palette($arm-error, 50) !important;
|
|
892
|
+
color: mat.get-color-from-palette($arm-error, 500) !important;
|
|
878
893
|
i {
|
|
879
|
-
color: mat-color($arm-error, 500) !important;
|
|
894
|
+
color: mat.get-color-from-palette($arm-error, 500) !important;
|
|
880
895
|
}
|
|
881
896
|
&:hover {
|
|
882
|
-
background-color: mat-color($arm-error, 100) !important;
|
|
897
|
+
background-color: mat.get-color-from-palette($arm-error, 100) !important;
|
|
883
898
|
color: white !important;
|
|
884
899
|
i {
|
|
885
900
|
color: white !important;
|
|
886
901
|
}
|
|
887
902
|
}
|
|
888
903
|
&:focus {
|
|
889
|
-
background-color: mat-color($arm-error, 200) !important;
|
|
904
|
+
background-color: mat.get-color-from-palette($arm-error, 200) !important;
|
|
890
905
|
color: white !important;
|
|
891
906
|
i {
|
|
892
907
|
color: white !important;
|
|
@@ -894,16 +909,16 @@ button.mat-stroked-button {
|
|
|
894
909
|
}
|
|
895
910
|
}
|
|
896
911
|
&.mat-neutral {
|
|
897
|
-
background-color: mat-color($arm-neutral, 50) !important;
|
|
912
|
+
background-color: mat.get-color-from-palette($arm-neutral, 50) !important;
|
|
898
913
|
color: #000000de !important;
|
|
899
914
|
i {
|
|
900
915
|
color: #000000de !important;
|
|
901
916
|
}
|
|
902
917
|
&:hover {
|
|
903
|
-
background-color: mat-color($arm-neutral, 100) !important;
|
|
918
|
+
background-color: mat.get-color-from-palette($arm-neutral, 100) !important;
|
|
904
919
|
}
|
|
905
920
|
&:focus {
|
|
906
|
-
background-color: mat-color($arm-neutral, 200) !important;
|
|
921
|
+
background-color: mat.get-color-from-palette($arm-neutral, 200) !important;
|
|
907
922
|
}
|
|
908
923
|
}
|
|
909
924
|
}
|
|
@@ -942,81 +957,81 @@ button.mat-stroked-button {
|
|
|
942
957
|
|
|
943
958
|
&:enabled {
|
|
944
959
|
&.mat-primary {
|
|
945
|
-
border: 2px solid mat-color($arm-primary, 500) !important;
|
|
946
|
-
color: mat-color($arm-primary, 500) !important;
|
|
960
|
+
border: 2px solid mat.get-color-from-palette($arm-primary, 500) !important;
|
|
961
|
+
color: mat.get-color-from-palette($arm-primary, 500) !important;
|
|
947
962
|
i {
|
|
948
|
-
color: mat-color($arm-primary, 500) !important;
|
|
963
|
+
color: mat.get-color-from-palette($arm-primary, 500) !important;
|
|
949
964
|
}
|
|
950
965
|
&:hover {
|
|
951
|
-
background-color: mat-color($arm-primary, 100) !important;
|
|
966
|
+
background-color: mat.get-color-from-palette($arm-primary, 100) !important;
|
|
952
967
|
}
|
|
953
968
|
&:focus {
|
|
954
|
-
background-color: mat-color($arm-primary, 200) !important;
|
|
969
|
+
background-color: mat.get-color-from-palette($arm-primary, 200) !important;
|
|
955
970
|
}
|
|
956
971
|
}
|
|
957
972
|
&.mat-accent {
|
|
958
|
-
border: 2px solid mat-color($arm-accent, 500) !important;
|
|
959
|
-
color: mat-color($arm-accent, 500) !important;
|
|
973
|
+
border: 2px solid mat.get-color-from-palette($arm-accent, 500) !important;
|
|
974
|
+
color: mat.get-color-from-palette($arm-accent, 500) !important;
|
|
960
975
|
i {
|
|
961
|
-
color: mat-color($arm-accent, 500) !important;
|
|
976
|
+
color: mat.get-color-from-palette($arm-accent, 500) !important;
|
|
962
977
|
}
|
|
963
978
|
&:hover {
|
|
964
|
-
background-color: mat-color($arm-accent, 100) !important;
|
|
979
|
+
background-color: mat.get-color-from-palette($arm-accent, 100) !important;
|
|
965
980
|
}
|
|
966
981
|
&:focus {
|
|
967
|
-
background-color: mat-color($arm-accent, 200) !important;
|
|
982
|
+
background-color: mat.get-color-from-palette($arm-accent, 200) !important;
|
|
968
983
|
}
|
|
969
984
|
}
|
|
970
985
|
&.mat-warn {
|
|
971
|
-
border: 2px solid mat-color($arm-warn, 500) !important;
|
|
972
|
-
color: mat-color($arm-warn, 500) !important;
|
|
986
|
+
border: 2px solid mat.get-color-from-palette($arm-warn, 500) !important;
|
|
987
|
+
color: mat.get-color-from-palette($arm-warn, 500) !important;
|
|
973
988
|
i {
|
|
974
|
-
color: mat-color($arm-warn, 500) !important;
|
|
989
|
+
color: mat.get-color-from-palette($arm-warn, 500) !important;
|
|
975
990
|
}
|
|
976
991
|
&:hover {
|
|
977
|
-
background-color: mat-color($arm-warn, 100) !important;
|
|
992
|
+
background-color: mat.get-color-from-palette($arm-warn, 100) !important;
|
|
978
993
|
}
|
|
979
994
|
&:focus {
|
|
980
|
-
background-color: mat-color($arm-warn, 200) !important;
|
|
995
|
+
background-color: mat.get-color-from-palette($arm-warn, 200) !important;
|
|
981
996
|
}
|
|
982
997
|
}
|
|
983
998
|
&.mat-success {
|
|
984
|
-
border: 2px solid mat-color($arm-success, 500) !important;
|
|
985
|
-
color: mat-color($arm-success, 500) !important;
|
|
999
|
+
border: 2px solid mat.get-color-from-palette($arm-success, 500) !important;
|
|
1000
|
+
color: mat.get-color-from-palette($arm-success, 500) !important;
|
|
986
1001
|
i {
|
|
987
|
-
color: mat-color($arm-success, 500) !important;
|
|
1002
|
+
color: mat.get-color-from-palette($arm-success, 500) !important;
|
|
988
1003
|
}
|
|
989
1004
|
&:hover {
|
|
990
|
-
background-color: mat-color($arm-success, 100) !important;
|
|
1005
|
+
background-color: mat.get-color-from-palette($arm-success, 100) !important;
|
|
991
1006
|
}
|
|
992
1007
|
&:focus {
|
|
993
|
-
background-color: mat-color($arm-success, 200) !important;
|
|
1008
|
+
background-color: mat.get-color-from-palette($arm-success, 200) !important;
|
|
994
1009
|
}
|
|
995
1010
|
}
|
|
996
1011
|
&.mat-error {
|
|
997
|
-
border: 2px solid mat-color($arm-error, 500) !important;
|
|
998
|
-
color: mat-color($arm-error, 500) !important;
|
|
1012
|
+
border: 2px solid mat.get-color-from-palette($arm-error, 500) !important;
|
|
1013
|
+
color: mat.get-color-from-palette($arm-error, 500) !important;
|
|
999
1014
|
i {
|
|
1000
|
-
color: mat-color($arm-error, 500) !important;
|
|
1015
|
+
color: mat.get-color-from-palette($arm-error, 500) !important;
|
|
1001
1016
|
}
|
|
1002
1017
|
&:hover {
|
|
1003
|
-
background-color: mat-color($arm-error, 100) !important;
|
|
1018
|
+
background-color: mat.get-color-from-palette($arm-error, 100) !important;
|
|
1004
1019
|
}
|
|
1005
1020
|
&:focus {
|
|
1006
|
-
background-color: mat-color($arm-error, 200) !important;
|
|
1021
|
+
background-color: mat.get-color-from-palette($arm-error, 200) !important;
|
|
1007
1022
|
}
|
|
1008
1023
|
}
|
|
1009
1024
|
&.mat-info {
|
|
1010
|
-
border: 2px solid mat-color($arm-info, 500) !important;
|
|
1011
|
-
color: mat-color($arm-info, 500) !important;
|
|
1025
|
+
border: 2px solid mat.get-color-from-palette($arm-info, 500) !important;
|
|
1026
|
+
color: mat.get-color-from-palette($arm-info, 500) !important;
|
|
1012
1027
|
i {
|
|
1013
|
-
color: mat-color($arm-info, 500) !important;
|
|
1028
|
+
color: mat.get-color-from-palette($arm-info, 500) !important;
|
|
1014
1029
|
}
|
|
1015
1030
|
&:hover {
|
|
1016
|
-
background-color: mat-color($arm-info, 100) !important;
|
|
1031
|
+
background-color: mat.get-color-from-palette($arm-info, 100) !important;
|
|
1017
1032
|
}
|
|
1018
1033
|
&:focus {
|
|
1019
|
-
background-color: mat-color($arm-info, 200) !important;
|
|
1034
|
+
background-color: mat.get-color-from-palette($arm-info, 200) !important;
|
|
1020
1035
|
}
|
|
1021
1036
|
}
|
|
1022
1037
|
&.mat-neutral {
|
|
@@ -1026,10 +1041,10 @@ button.mat-stroked-button {
|
|
|
1026
1041
|
color: 000000de !important;
|
|
1027
1042
|
}
|
|
1028
1043
|
&:hover {
|
|
1029
|
-
background-color: mat-color($arm-neutral, 100) !important;
|
|
1044
|
+
background-color: mat.get-color-from-palette($arm-neutral, 100) !important;
|
|
1030
1045
|
}
|
|
1031
1046
|
&:focus {
|
|
1032
|
-
background-color: mat-color($arm-neutral, 200) !important;
|
|
1047
|
+
background-color: mat.get-color-from-palette($arm-neutral, 200) !important;
|
|
1033
1048
|
}
|
|
1034
1049
|
}
|
|
1035
1050
|
}
|
|
@@ -1075,20 +1090,20 @@ button.mat-stroked-button {
|
|
|
1075
1090
|
|
|
1076
1091
|
&:enabled {
|
|
1077
1092
|
&.mat-primary {
|
|
1078
|
-
background-color: mat-color($arm-primary, 50) !important;
|
|
1079
|
-
color: mat-color($arm-primary, 500) !important;
|
|
1093
|
+
background-color: mat.get-color-from-palette($arm-primary, 50) !important;
|
|
1094
|
+
color: mat.get-color-from-palette($arm-primary, 500) !important;
|
|
1080
1095
|
i {
|
|
1081
|
-
color: mat-color($arm-primary, 500) !important;
|
|
1096
|
+
color: mat.get-color-from-palette($arm-primary, 500) !important;
|
|
1082
1097
|
}
|
|
1083
1098
|
&:hover {
|
|
1084
|
-
background-color: mat-color($arm-primary, 100) !important;
|
|
1099
|
+
background-color: mat.get-color-from-palette($arm-primary, 100) !important;
|
|
1085
1100
|
color: white !important;
|
|
1086
1101
|
i {
|
|
1087
1102
|
color: white !important;
|
|
1088
1103
|
}
|
|
1089
1104
|
}
|
|
1090
1105
|
&:focus {
|
|
1091
|
-
background-color: mat-color($arm-primary, 200) !important;
|
|
1106
|
+
background-color: mat.get-color-from-palette($arm-primary, 200) !important;
|
|
1092
1107
|
color: white !important;
|
|
1093
1108
|
i {
|
|
1094
1109
|
color: white !important;
|
|
@@ -1096,20 +1111,20 @@ button.mat-stroked-button {
|
|
|
1096
1111
|
}
|
|
1097
1112
|
}
|
|
1098
1113
|
&.mat-accent {
|
|
1099
|
-
background-color: mat-color($arm-accent, 50) !important;
|
|
1100
|
-
color: mat-color($arm-accent, 500) !important;
|
|
1114
|
+
background-color: mat.get-color-from-palette($arm-accent, 50) !important;
|
|
1115
|
+
color: mat.get-color-from-palette($arm-accent, 500) !important;
|
|
1101
1116
|
i {
|
|
1102
|
-
color: mat-color($arm-accent, 500) !important;
|
|
1117
|
+
color: mat.get-color-from-palette($arm-accent, 500) !important;
|
|
1103
1118
|
}
|
|
1104
1119
|
&:hover {
|
|
1105
|
-
background-color: mat-color($arm-accent, 100) !important;
|
|
1120
|
+
background-color: mat.get-color-from-palette($arm-accent, 100) !important;
|
|
1106
1121
|
color: white !important;
|
|
1107
1122
|
i {
|
|
1108
1123
|
color: white !important;
|
|
1109
1124
|
}
|
|
1110
1125
|
}
|
|
1111
1126
|
&:focus {
|
|
1112
|
-
background-color: mat-color($arm-accent, 200) !important;
|
|
1127
|
+
background-color: mat.get-color-from-palette($arm-accent, 200) !important;
|
|
1113
1128
|
color: white !important;
|
|
1114
1129
|
i {
|
|
1115
1130
|
color: white !important;
|
|
@@ -1117,20 +1132,20 @@ button.mat-stroked-button {
|
|
|
1117
1132
|
}
|
|
1118
1133
|
}
|
|
1119
1134
|
&.mat-warn {
|
|
1120
|
-
background-color: mat-color($arm-warn, 50) !important;
|
|
1121
|
-
color: mat-color($arm-warn, 500) !important;
|
|
1135
|
+
background-color: mat.get-color-from-palette($arm-warn, 50) !important;
|
|
1136
|
+
color: mat.get-color-from-palette($arm-warn, 500) !important;
|
|
1122
1137
|
i {
|
|
1123
|
-
color: mat-color($arm-warn, 500) !important;
|
|
1138
|
+
color: mat.get-color-from-palette($arm-warn, 500) !important;
|
|
1124
1139
|
}
|
|
1125
1140
|
&:hover {
|
|
1126
|
-
background-color: mat-color($arm-warn, 100) !important;
|
|
1141
|
+
background-color: mat.get-color-from-palette($arm-warn, 100) !important;
|
|
1127
1142
|
color: white !important;
|
|
1128
1143
|
i {
|
|
1129
1144
|
color: white !important;
|
|
1130
1145
|
}
|
|
1131
1146
|
}
|
|
1132
1147
|
&:focus {
|
|
1133
|
-
background-color: mat-color($arm-warn, 200) !important;
|
|
1148
|
+
background-color: mat.get-color-from-palette($arm-warn, 200) !important;
|
|
1134
1149
|
color: white !important;
|
|
1135
1150
|
i {
|
|
1136
1151
|
color: white !important;
|
|
@@ -1138,20 +1153,20 @@ button.mat-stroked-button {
|
|
|
1138
1153
|
}
|
|
1139
1154
|
}
|
|
1140
1155
|
&.mat-success {
|
|
1141
|
-
background-color: mat-color($arm-success, 50) !important;
|
|
1142
|
-
color: mat-color($arm-success, 500) !important;
|
|
1156
|
+
background-color: mat.get-color-from-palette($arm-success, 50) !important;
|
|
1157
|
+
color: mat.get-color-from-palette($arm-success, 500) !important;
|
|
1143
1158
|
i {
|
|
1144
|
-
color: mat-color($arm-success, 500) !important;
|
|
1159
|
+
color: mat.get-color-from-palette($arm-success, 500) !important;
|
|
1145
1160
|
}
|
|
1146
1161
|
&:hover {
|
|
1147
|
-
background-color: mat-color($arm-success, 100) !important;
|
|
1162
|
+
background-color: mat.get-color-from-palette($arm-success, 100) !important;
|
|
1148
1163
|
color: white !important;
|
|
1149
1164
|
i {
|
|
1150
1165
|
color: white !important;
|
|
1151
1166
|
}
|
|
1152
1167
|
}
|
|
1153
1168
|
&:focus {
|
|
1154
|
-
background-color: mat-color($arm-success, 200) !important;
|
|
1169
|
+
background-color: mat.get-color-from-palette($arm-success, 200) !important;
|
|
1155
1170
|
color: white !important;
|
|
1156
1171
|
i {
|
|
1157
1172
|
color: white !important;
|
|
@@ -1159,20 +1174,20 @@ button.mat-stroked-button {
|
|
|
1159
1174
|
}
|
|
1160
1175
|
}
|
|
1161
1176
|
&.mat-info {
|
|
1162
|
-
background-color: mat-color($arm-info, 50) !important;
|
|
1163
|
-
color: mat-color($arm-info, 500) !important;
|
|
1177
|
+
background-color: mat.get-color-from-palette($arm-info, 50) !important;
|
|
1178
|
+
color: mat.get-color-from-palette($arm-info, 500) !important;
|
|
1164
1179
|
i {
|
|
1165
|
-
color: mat-color($arm-info, 500) !important;
|
|
1180
|
+
color: mat.get-color-from-palette($arm-info, 500) !important;
|
|
1166
1181
|
}
|
|
1167
1182
|
&:hover {
|
|
1168
|
-
background-color: mat-color($arm-info, 100) !important;
|
|
1183
|
+
background-color: mat.get-color-from-palette($arm-info, 100) !important;
|
|
1169
1184
|
color: white !important;
|
|
1170
1185
|
i {
|
|
1171
1186
|
color: white !important;
|
|
1172
1187
|
}
|
|
1173
1188
|
}
|
|
1174
1189
|
&:focus {
|
|
1175
|
-
background-color: mat-color($arm-info, 200) !important;
|
|
1190
|
+
background-color: mat.get-color-from-palette($arm-info, 200) !important;
|
|
1176
1191
|
color: white !important;
|
|
1177
1192
|
i {
|
|
1178
1193
|
color: white !important;
|
|
@@ -1180,20 +1195,20 @@ button.mat-stroked-button {
|
|
|
1180
1195
|
}
|
|
1181
1196
|
}
|
|
1182
1197
|
&.mat-error {
|
|
1183
|
-
background-color: mat-color($arm-error, 50) !important;
|
|
1184
|
-
color: mat-color($arm-error, 500) !important;
|
|
1198
|
+
background-color: mat.get-color-from-palette($arm-error, 50) !important;
|
|
1199
|
+
color: mat.get-color-from-palette($arm-error, 500) !important;
|
|
1185
1200
|
i {
|
|
1186
|
-
color: mat-color($arm-error, 500) !important;
|
|
1201
|
+
color: mat.get-color-from-palette($arm-error, 500) !important;
|
|
1187
1202
|
}
|
|
1188
1203
|
&:hover {
|
|
1189
|
-
background-color: mat-color($arm-error, 100) !important;
|
|
1204
|
+
background-color: mat.get-color-from-palette($arm-error, 100) !important;
|
|
1190
1205
|
color: white !important;
|
|
1191
1206
|
i {
|
|
1192
1207
|
color: white !important;
|
|
1193
1208
|
}
|
|
1194
1209
|
}
|
|
1195
1210
|
&:focus {
|
|
1196
|
-
background-color: mat-color($arm-error, 200) !important;
|
|
1211
|
+
background-color: mat.get-color-from-palette($arm-error, 200) !important;
|
|
1197
1212
|
color: white !important;
|
|
1198
1213
|
i {
|
|
1199
1214
|
color: white !important;
|
|
@@ -1201,16 +1216,16 @@ button.mat-stroked-button {
|
|
|
1201
1216
|
}
|
|
1202
1217
|
}
|
|
1203
1218
|
&.mat-neutral {
|
|
1204
|
-
background-color: mat-color($arm-neutral, 50) !important;
|
|
1219
|
+
background-color: mat.get-color-from-palette($arm-neutral, 50) !important;
|
|
1205
1220
|
color: #000000de !important;
|
|
1206
1221
|
i {
|
|
1207
1222
|
color: #000000de !important;
|
|
1208
1223
|
}
|
|
1209
1224
|
&:hover {
|
|
1210
|
-
background-color: mat-color($arm-neutral, 100) !important;
|
|
1225
|
+
background-color: mat.get-color-from-palette($arm-neutral, 100) !important;
|
|
1211
1226
|
}
|
|
1212
1227
|
&:focus {
|
|
1213
|
-
background-color: mat-color($arm-neutral, 200) !important;
|
|
1228
|
+
background-color: mat.get-color-from-palette($arm-neutral, 200) !important;
|
|
1214
1229
|
}
|
|
1215
1230
|
}
|
|
1216
1231
|
}
|
|
@@ -1228,81 +1243,81 @@ button.mat-stroked-button {
|
|
|
1228
1243
|
|
|
1229
1244
|
&:enabled {
|
|
1230
1245
|
&.mat-primary {
|
|
1231
|
-
border: 2px solid mat-color($arm-primary, 500) !important;
|
|
1232
|
-
color: mat-color($arm-primary, 500) !important;
|
|
1246
|
+
border: 2px solid mat.get-color-from-palette($arm-primary, 500) !important;
|
|
1247
|
+
color: mat.get-color-from-palette($arm-primary, 500) !important;
|
|
1233
1248
|
i {
|
|
1234
|
-
color: mat-color($arm-primary, 500) !important;
|
|
1249
|
+
color: mat.get-color-from-palette($arm-primary, 500) !important;
|
|
1235
1250
|
}
|
|
1236
1251
|
&:hover {
|
|
1237
|
-
background-color: mat-color($arm-primary, 100) !important;
|
|
1252
|
+
background-color: mat.get-color-from-palette($arm-primary, 100) !important;
|
|
1238
1253
|
}
|
|
1239
1254
|
&:focus {
|
|
1240
|
-
background-color: mat-color($arm-primary, 200) !important;
|
|
1255
|
+
background-color: mat.get-color-from-palette($arm-primary, 200) !important;
|
|
1241
1256
|
}
|
|
1242
1257
|
}
|
|
1243
1258
|
&.mat-accent {
|
|
1244
|
-
border: 2px solid mat-color($arm-accent, 500) !important;
|
|
1245
|
-
color: mat-color($arm-accent, 500) !important;
|
|
1259
|
+
border: 2px solid mat.get-color-from-palette($arm-accent, 500) !important;
|
|
1260
|
+
color: mat.get-color-from-palette($arm-accent, 500) !important;
|
|
1246
1261
|
i {
|
|
1247
|
-
color: mat-color($arm-accent, 500) !important;
|
|
1262
|
+
color: mat.get-color-from-palette($arm-accent, 500) !important;
|
|
1248
1263
|
}
|
|
1249
1264
|
&:hover {
|
|
1250
|
-
background-color: mat-color($arm-accent, 100) !important;
|
|
1265
|
+
background-color: mat.get-color-from-palette($arm-accent, 100) !important;
|
|
1251
1266
|
}
|
|
1252
1267
|
&:focus {
|
|
1253
|
-
background-color: mat-color($arm-accent, 200) !important;
|
|
1268
|
+
background-color: mat.get-color-from-palette($arm-accent, 200) !important;
|
|
1254
1269
|
}
|
|
1255
1270
|
}
|
|
1256
1271
|
&.mat-warn {
|
|
1257
|
-
border: 2px solid mat-color($arm-warn, 500) !important;
|
|
1258
|
-
color: mat-color($arm-warn, 500) !important;
|
|
1272
|
+
border: 2px solid mat.get-color-from-palette($arm-warn, 500) !important;
|
|
1273
|
+
color: mat.get-color-from-palette($arm-warn, 500) !important;
|
|
1259
1274
|
i {
|
|
1260
|
-
color: mat-color($arm-warn, 500) !important;
|
|
1275
|
+
color: mat.get-color-from-palette($arm-warn, 500) !important;
|
|
1261
1276
|
}
|
|
1262
1277
|
&:hover {
|
|
1263
|
-
background-color: mat-color($arm-warn, 100) !important;
|
|
1278
|
+
background-color: mat.get-color-from-palette($arm-warn, 100) !important;
|
|
1264
1279
|
}
|
|
1265
1280
|
&:focus {
|
|
1266
|
-
background-color: mat-color($arm-warn, 200) !important;
|
|
1281
|
+
background-color: mat.get-color-from-palette($arm-warn, 200) !important;
|
|
1267
1282
|
}
|
|
1268
1283
|
}
|
|
1269
1284
|
&.mat-success {
|
|
1270
|
-
border: 2px solid mat-color($arm-success, 500) !important;
|
|
1271
|
-
color: mat-color($arm-success, 500) !important;
|
|
1285
|
+
border: 2px solid mat.get-color-from-palette($arm-success, 500) !important;
|
|
1286
|
+
color: mat.get-color-from-palette($arm-success, 500) !important;
|
|
1272
1287
|
i {
|
|
1273
|
-
color: mat-color($arm-success, 500) !important;
|
|
1288
|
+
color: mat.get-color-from-palette($arm-success, 500) !important;
|
|
1274
1289
|
}
|
|
1275
1290
|
&:hover {
|
|
1276
|
-
background-color: mat-color($arm-success, 100) !important;
|
|
1291
|
+
background-color: mat.get-color-from-palette($arm-success, 100) !important;
|
|
1277
1292
|
}
|
|
1278
1293
|
&:focus {
|
|
1279
|
-
background-color: mat-color($arm-success, 200) !important;
|
|
1294
|
+
background-color: mat.get-color-from-palette($arm-success, 200) !important;
|
|
1280
1295
|
}
|
|
1281
1296
|
}
|
|
1282
1297
|
&.mat-error {
|
|
1283
|
-
border: 2px solid mat-color($arm-error, 500) !important;
|
|
1284
|
-
color: mat-color($arm-error, 500) !important;
|
|
1298
|
+
border: 2px solid mat.get-color-from-palette($arm-error, 500) !important;
|
|
1299
|
+
color: mat.get-color-from-palette($arm-error, 500) !important;
|
|
1285
1300
|
i {
|
|
1286
|
-
color: mat-color($arm-error, 500) !important;
|
|
1301
|
+
color: mat.get-color-from-palette($arm-error, 500) !important;
|
|
1287
1302
|
}
|
|
1288
1303
|
&:hover {
|
|
1289
|
-
background-color: mat-color($arm-error, 100) !important;
|
|
1304
|
+
background-color: mat.get-color-from-palette($arm-error, 100) !important;
|
|
1290
1305
|
}
|
|
1291
1306
|
&:focus {
|
|
1292
|
-
background-color: mat-color($arm-error, 200) !important;
|
|
1307
|
+
background-color: mat.get-color-from-palette($arm-error, 200) !important;
|
|
1293
1308
|
}
|
|
1294
1309
|
}
|
|
1295
1310
|
&.mat-info {
|
|
1296
|
-
border: 2px solid mat-color($arm-info, 500) !important;
|
|
1297
|
-
color: mat-color($arm-info, 500) !important;
|
|
1311
|
+
border: 2px solid mat.get-color-from-palette($arm-info, 500) !important;
|
|
1312
|
+
color: mat.get-color-from-palette($arm-info, 500) !important;
|
|
1298
1313
|
i {
|
|
1299
|
-
color: mat-color($arm-info, 500) !important;
|
|
1314
|
+
color: mat.get-color-from-palette($arm-info, 500) !important;
|
|
1300
1315
|
}
|
|
1301
1316
|
&:hover {
|
|
1302
|
-
background-color: mat-color($arm-info, 100) !important;
|
|
1317
|
+
background-color: mat.get-color-from-palette($arm-info, 100) !important;
|
|
1303
1318
|
}
|
|
1304
1319
|
&:focus {
|
|
1305
|
-
background-color: mat-color($arm-info, 200) !important;
|
|
1320
|
+
background-color: mat.get-color-from-palette($arm-info, 200) !important;
|
|
1306
1321
|
}
|
|
1307
1322
|
}
|
|
1308
1323
|
&.mat-neutral {
|
|
@@ -1312,10 +1327,10 @@ button.mat-stroked-button {
|
|
|
1312
1327
|
color: 000000de !important;
|
|
1313
1328
|
}
|
|
1314
1329
|
&:hover {
|
|
1315
|
-
background-color: mat-color($arm-neutral, 100) !important;
|
|
1330
|
+
background-color: mat.get-color-from-palette($arm-neutral, 100) !important;
|
|
1316
1331
|
}
|
|
1317
1332
|
&:focus {
|
|
1318
|
-
background-color: mat-color($arm-neutral, 200) !important;
|
|
1333
|
+
background-color: mat.get-color-from-palette($arm-neutral, 200) !important;
|
|
1319
1334
|
}
|
|
1320
1335
|
}
|
|
1321
1336
|
}
|
|
@@ -1351,7 +1366,7 @@ button.mat-stroked-button {
|
|
|
1351
1366
|
}
|
|
1352
1367
|
|
|
1353
1368
|
mat-card {
|
|
1354
|
-
&.mat-card.item-list {
|
|
1369
|
+
&.mat-mdc-card.item-list {
|
|
1355
1370
|
box-shadow: 0px 1px 7px rgb(166 159 159 / 25%) !important;
|
|
1356
1371
|
border-radius: 10px !important;
|
|
1357
1372
|
overflow: overlay !important;
|
|
@@ -1360,7 +1375,7 @@ mat-card {
|
|
|
1360
1375
|
}
|
|
1361
1376
|
}
|
|
1362
1377
|
|
|
1363
|
-
.mat-dialog-title {
|
|
1378
|
+
.mat-mdc-dialog-title {
|
|
1364
1379
|
font-family: Poppins !important;
|
|
1365
1380
|
font-style: normal !important;
|
|
1366
1381
|
font-weight: 500 !important;
|
|
@@ -1369,7 +1384,7 @@ mat-card {
|
|
|
1369
1384
|
letter-spacing: normal !important;
|
|
1370
1385
|
}
|
|
1371
1386
|
|
|
1372
|
-
.mat-dialog-content {
|
|
1387
|
+
.mat-mdc-dialog-content {
|
|
1373
1388
|
display: block !important;
|
|
1374
1389
|
margin: 0 -24px !important;
|
|
1375
1390
|
padding: 0 0px !important ;
|
|
@@ -1377,7 +1392,7 @@ mat-card {
|
|
|
1377
1392
|
overflow: auto !important;
|
|
1378
1393
|
}
|
|
1379
1394
|
|
|
1380
|
-
.mat-dialog-container {
|
|
1395
|
+
.mat-mdc-dialog-container {
|
|
1381
1396
|
display: block !important;
|
|
1382
1397
|
background: #ffffff !important;
|
|
1383
1398
|
border: 1px solid #dfdfdf !important;
|
|
@@ -1391,11 +1406,11 @@ mat-card {
|
|
|
1391
1406
|
max-height: inherit !important;
|
|
1392
1407
|
}
|
|
1393
1408
|
|
|
1394
|
-
.mat-list-base {
|
|
1409
|
+
.mat-mdc-list-base {
|
|
1395
1410
|
padding-top: 0px !important;
|
|
1396
1411
|
}
|
|
1397
1412
|
|
|
1398
|
-
::ng-deep .mat-tooltip {
|
|
1413
|
+
::ng-deep .mat-mdc-tooltip {
|
|
1399
1414
|
cursor: pointer !important;
|
|
1400
1415
|
width: 234px !important;
|
|
1401
1416
|
height: auto !important;
|
|
@@ -1412,7 +1427,7 @@ mat-card {
|
|
|
1412
1427
|
background-color: #333333 !important;
|
|
1413
1428
|
}
|
|
1414
1429
|
|
|
1415
|
-
.mat-chip {
|
|
1430
|
+
.mat-mdc-chip {
|
|
1416
1431
|
font-style: normal !important;
|
|
1417
1432
|
font-weight: 500 !important;
|
|
1418
1433
|
font-size: 12px !important;
|
|
@@ -1424,54 +1439,57 @@ mat-card {
|
|
|
1424
1439
|
::ng-deep mat-form-field.sof-form-field {
|
|
1425
1440
|
font-family: "Poppins" !important;
|
|
1426
1441
|
&.mat-form-field-invalid {
|
|
1427
|
-
.mat-form-field-flex > div.
|
|
1428
|
-
color: mat-color($arm-error, 900) !important;
|
|
1442
|
+
.mat-mdc-form-field-flex > div.mdc-notched-outline > * {
|
|
1443
|
+
border-color: mat.get-color-from-palette($arm-error, 900) !important;
|
|
1429
1444
|
}
|
|
1430
|
-
.
|
|
1431
|
-
|
|
1445
|
+
.mdc-notched-outline__notch {
|
|
1446
|
+
border-left: none !important;
|
|
1447
|
+
}
|
|
1448
|
+
.mat-mdc-floating-label {
|
|
1449
|
+
color: mat.get-color-from-palette($arm-error, 900) !important;
|
|
1432
1450
|
}
|
|
1433
1451
|
}
|
|
1434
|
-
&.mat-
|
|
1452
|
+
&.mat-focused {
|
|
1435
1453
|
font-weight: 600 !important; // Should be 500, but 400/500 are the same.
|
|
1436
1454
|
input,
|
|
1437
|
-
span.mat-select-value-text {
|
|
1455
|
+
span.mat-mdc-select-value-text {
|
|
1438
1456
|
font-weight: 400 !important;
|
|
1439
1457
|
}
|
|
1440
1458
|
}
|
|
1441
|
-
&.mat-form-field-disabled .
|
|
1459
|
+
&.mat-form-field-disabled .mdc-notched-outline {
|
|
1442
1460
|
background-color: #F7F7F7 !important;
|
|
1443
|
-
}
|
|
1444
|
-
.mat-form-field-flex > div.mat-form-field-outline.mat-form-field-outline-thick {
|
|
1445
|
-
color: mat-color($arm-primary, 500) !important;
|
|
1446
1461
|
}
|
|
1447
|
-
.mat-form-field-
|
|
1462
|
+
.mat-mdc-form-field-flex > div.mdc-notched-outline {
|
|
1463
|
+
color: mat.get-color-from-palette($arm-primary, 500) !important;
|
|
1464
|
+
}
|
|
1465
|
+
.mat-mdc-text-field-wrapper {
|
|
1448
1466
|
padding: 0px !important;
|
|
1449
1467
|
}
|
|
1450
|
-
.mat-form-field-flex {
|
|
1468
|
+
.mat-mdc-form-field-flex {
|
|
1451
1469
|
padding: 0 16px 0 16px !important;
|
|
1452
1470
|
}
|
|
1453
|
-
.mat-
|
|
1471
|
+
.mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-form-field-icon-prefix {
|
|
1454
1472
|
top: 0em !important;
|
|
1455
|
-
color: mat-color($arm-neutral, 300) !important;
|
|
1473
|
+
color: mat.get-color-from-palette($arm-neutral, 300) !important;
|
|
1456
1474
|
padding-right: 0.5em !important;
|
|
1457
1475
|
font-size: 1.5em !important;
|
|
1458
1476
|
}
|
|
1459
|
-
.mat-
|
|
1477
|
+
.mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-form-field-icon-suffix {
|
|
1460
1478
|
top: 0em !important;
|
|
1461
1479
|
font-size: 1.5em !important;
|
|
1462
|
-
color: mat-color($arm-neutral, 300) !important;
|
|
1480
|
+
color: mat.get-color-from-palette($arm-neutral, 300) !important;
|
|
1463
1481
|
.error {
|
|
1464
|
-
color: mat-color($arm-error, 500) !important;
|
|
1482
|
+
color: mat.get-color-from-palette($arm-error, 500) !important;
|
|
1465
1483
|
}
|
|
1466
1484
|
}
|
|
1467
|
-
.mat-form-field-flex div.
|
|
1485
|
+
.mat-mdc-form-field-flex div.mdc-notched-outline__leading {
|
|
1468
1486
|
border-radius: 6px 0 0 6px !important;
|
|
1469
1487
|
min-width: 6px !important;
|
|
1470
1488
|
}
|
|
1471
|
-
.mat-form-field-flex div.
|
|
1489
|
+
.mat-mdc-form-field-flex div.mdc-notched-outline__trailing {
|
|
1472
1490
|
border-radius: 0 6px 6px 0 !important;
|
|
1473
1491
|
}
|
|
1474
|
-
.mat-form-field-subscript-wrapper {
|
|
1492
|
+
.mat-mdc-form-field-subscript-wrapper {
|
|
1475
1493
|
padding: 14px 16px 0px 16px !important;
|
|
1476
1494
|
}
|
|
1477
1495
|
mat-error {
|
|
@@ -1480,7 +1498,7 @@ mat-card {
|
|
|
1480
1498
|
font-weight: 600 !important; // Should be 500, but 400/500 are the same.
|
|
1481
1499
|
font-size: 12px !important;
|
|
1482
1500
|
line-height: 18px !important;
|
|
1483
|
-
color: mat-color($arm-error, 900) !important;
|
|
1501
|
+
color: mat.get-color-from-palette($arm-error, 900) !important;
|
|
1484
1502
|
}
|
|
1485
1503
|
mat-hint {
|
|
1486
1504
|
font-family: "Poppins" !important;
|
|
@@ -1489,13 +1507,21 @@ mat-card {
|
|
|
1489
1507
|
font-size: 12px !important;
|
|
1490
1508
|
line-height: 18px !important;
|
|
1491
1509
|
}
|
|
1492
|
-
&.mat-focused .
|
|
1493
|
-
color: mat-color($arm-primary, 500) !important;
|
|
1510
|
+
&.mat-focused .mdc-floating-label {
|
|
1511
|
+
color: mat.get-color-from-palette($arm-primary, 500) !important;
|
|
1512
|
+
}
|
|
1513
|
+
.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,
|
|
1514
|
+
.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,
|
|
1515
|
+
.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing {
|
|
1516
|
+
border-color: mat.get-color-from-palette($arm-primary, 500);
|
|
1517
|
+
}
|
|
1518
|
+
.mat-mdc-text-field-wrapper {
|
|
1519
|
+
--mat-mdc-form-field-label-offset-x: 0px;
|
|
1494
1520
|
}
|
|
1495
1521
|
}
|
|
1496
1522
|
|
|
1497
|
-
::ng-deep .mat-primary .mat-option.
|
|
1498
|
-
color: mat-color($arm-primary, 500) !important;
|
|
1523
|
+
::ng-deep .mat-primary .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option.mdc-list-item--disabled){
|
|
1524
|
+
color: mat.get-color-from-palette($arm-primary, 500) !important;
|
|
1499
1525
|
}
|
|
1500
1526
|
|
|
1501
1527
|
mat-optgroup label,
|
|
@@ -1514,41 +1540,35 @@ mat-optgroup mat-option {
|
|
|
1514
1540
|
::ng-deep mat-slide-toggle {
|
|
1515
1541
|
&.sof-slide-toggle {
|
|
1516
1542
|
height: auto;
|
|
1517
|
-
.
|
|
1518
|
-
height:
|
|
1543
|
+
.mdc-switch__track {
|
|
1544
|
+
height: 22px !important;
|
|
1519
1545
|
width: 32px !important;
|
|
1520
|
-
background: #cccccc !important;
|
|
1521
|
-
border: 1px solid #cccccc !important;
|
|
1522
1546
|
border-radius: 24px !important;
|
|
1523
1547
|
}
|
|
1524
|
-
.
|
|
1548
|
+
.mdc-switch__handle {
|
|
1525
1549
|
height: 20px !important;
|
|
1526
1550
|
width: 20px !important;
|
|
1527
|
-
border: 1px solid #cccccc !important;
|
|
1528
1551
|
border-radius: 24px !important;
|
|
1529
|
-
top: -1px !important;
|
|
1530
|
-
left: -3px !important;
|
|
1531
|
-
}
|
|
1532
|
-
.mat-slide-toggle-thumb-container {
|
|
1533
|
-
top: -1px !important;
|
|
1534
1552
|
left: -3px !important;
|
|
1553
|
+
|
|
1554
|
+
.mdc-switch__shadow {
|
|
1555
|
+
background: #fff !important;
|
|
1556
|
+
}
|
|
1535
1557
|
}
|
|
1536
|
-
|
|
1558
|
+
label {
|
|
1537
1559
|
font-family: "Poppins" !important;
|
|
1538
1560
|
font-style: normal !important;
|
|
1539
1561
|
font-weight: 400 !important;
|
|
1540
1562
|
font-size: 14px !important;
|
|
1541
1563
|
line-height: 150% !important;
|
|
1542
1564
|
white-space: normal !important;
|
|
1543
|
-
}
|
|
1544
|
-
.mat-slide-toggle-label {
|
|
1545
1565
|
flex-direction: row;
|
|
1546
1566
|
align-items: start !important;
|
|
1547
1567
|
}
|
|
1548
1568
|
}
|
|
1549
1569
|
|
|
1550
1570
|
&.sof-slide-toggle[size="large"] {
|
|
1551
|
-
|
|
1571
|
+
label {
|
|
1552
1572
|
font-family: "Poppins" !important;
|
|
1553
1573
|
font-style: normal !important;
|
|
1554
1574
|
font-weight: 400 !important;
|
|
@@ -1559,96 +1579,141 @@ mat-optgroup mat-option {
|
|
|
1559
1579
|
}
|
|
1560
1580
|
}
|
|
1561
1581
|
|
|
1562
|
-
::ng-deep mat-slide-toggle.sof-slide-toggle
|
|
1582
|
+
::ng-deep mat-slide-toggle.sof-slide-toggle {
|
|
1563
1583
|
&.mat-primary {
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1584
|
+
--mdc-switch-selected-focus-state-layer-color: var(--primary-color-300-parts);
|
|
1585
|
+
--mdc-switch-selected-handle-color: var(--primary-color-300-parts);
|
|
1586
|
+
--mdc-switch-selected-hover-state-layer-color: var(--primary-color-300-parts);
|
|
1587
|
+
--mdc-switch-selected-pressed-state-layer-color: var(--primary-color-300-parts);
|
|
1588
|
+
--mdc-switch-selected-focus-handle-color: var(--primary-color-600-parts);
|
|
1589
|
+
--mdc-switch-selected-hover-handle-color: var(--primary-color-600-parts);
|
|
1590
|
+
--mdc-switch-selected-pressed-handle-color: var(--primary-color-600-parts);
|
|
1591
|
+
--mdc-switch-selected-focus-track-color: var(--primary-color-500-parts);
|
|
1592
|
+
--mdc-switch-selected-hover-track-color: var(--primary-color-500-parts);
|
|
1593
|
+
--mdc-switch-selected-pressed-track-color: var(--primary-color-500-parts);
|
|
1594
|
+
--mdc-switch-selected-track-color: var(--primary-color-500-parts);
|
|
1595
|
+
.mdc-switch.mdc-switch--selected:not(.mdc-switch.mdc-switch--disabled) {
|
|
1596
|
+
.mdc-switch__handle {
|
|
1597
|
+
border: 1px solid mat.get-color-from-palette($arm-primary, 500) !important;
|
|
1598
|
+
}
|
|
1571
1599
|
}
|
|
1572
1600
|
}
|
|
1573
1601
|
&.mat-accent {
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1602
|
+
--mdc-switch-selected-focus-state-layer-color: var(--accent-color-300-parts);
|
|
1603
|
+
--mdc-switch-selected-handle-color: var(--accent-color-300-parts);
|
|
1604
|
+
--mdc-switch-selected-hover-state-layer-color: var(--accent-color-300-parts);
|
|
1605
|
+
--mdc-switch-selected-pressed-state-layer-color: var(--accent-color-300-parts);
|
|
1606
|
+
--mdc-switch-selected-focus-handle-color: var(--accent-color-600-parts);
|
|
1607
|
+
--mdc-switch-selected-hover-handle-color: var(--accent-color-600-parts);
|
|
1608
|
+
--mdc-switch-selected-pressed-handle-color: var(--accent-color-600-parts);
|
|
1609
|
+
--mdc-switch-selected-focus-track-color: var(--accent-color-500-parts);
|
|
1610
|
+
--mdc-switch-selected-hover-track-color: var(--accent-color-500-parts);
|
|
1611
|
+
--mdc-switch-selected-pressed-track-color: var(--accent-color-500-parts);
|
|
1612
|
+
--mdc-switch-selected-track-color: var(--accent-color-500-parts);
|
|
1613
|
+
.mdc-switch.mdc-switch--selected:not(.mdc-switch.mdc-switch--disabled) {
|
|
1614
|
+
.mdc-switch__handle {
|
|
1615
|
+
border: 1px solid mat.get-color-from-palette($arm-accent, 500) !important;
|
|
1616
|
+
}
|
|
1581
1617
|
}
|
|
1582
1618
|
}
|
|
1583
1619
|
&.mat-warn {
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1620
|
+
--mdc-switch-selected-focus-state-layer-color: var(--warn-color-300-parts);
|
|
1621
|
+
--mdc-switch-selected-handle-color: var(--warn-color-300-parts);
|
|
1622
|
+
--mdc-switch-selected-hover-state-layer-color: var(--warn-color-300-parts);
|
|
1623
|
+
--mdc-switch-selected-pressed-state-layer-color: var(--warn-color-300-parts);
|
|
1624
|
+
--mdc-switch-selected-focus-handle-color: var(--warn-color-600-parts);
|
|
1625
|
+
--mdc-switch-selected-hover-handle-color: var(--warn-color-600-parts);
|
|
1626
|
+
--mdc-switch-selected-pressed-handle-color: var(--warn-color-600-parts);
|
|
1627
|
+
--mdc-switch-selected-focus-track-color: var(--warn-color-500-parts);
|
|
1628
|
+
--mdc-switch-selected-hover-track-color: var(--warn-color-500-parts);
|
|
1629
|
+
--mdc-switch-selected-pressed-track-color: var(--warn-color-500-parts);
|
|
1630
|
+
--mdc-switch-selected-track-color: var(--warn-color-500-parts);
|
|
1631
|
+
.mdc-switch.mdc-switch--selected:not(.mdc-switch.mdc-switch--disabled) {
|
|
1632
|
+
.mdc-switch__handle {
|
|
1633
|
+
border: 1px solid mat.get-color-from-palette($arm-warn, 500) !important;
|
|
1634
|
+
}
|
|
1591
1635
|
}
|
|
1592
1636
|
}
|
|
1593
1637
|
&.mat-success {
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1638
|
+
--mdc-switch-selected-focus-state-layer-color: var(--success-color-300-parts);
|
|
1639
|
+
--mdc-switch-selected-handle-color: var(--success-color-300-parts);
|
|
1640
|
+
--mdc-switch-selected-hover-state-layer-color: var(--success-color-300-parts);
|
|
1641
|
+
--mdc-switch-selected-pressed-state-layer-color: var(--success-color-300-parts);
|
|
1642
|
+
--mdc-switch-selected-focus-handle-color: var(--success-color-600-parts);
|
|
1643
|
+
--mdc-switch-selected-hover-handle-color: var(--success-color-600-parts);
|
|
1644
|
+
--mdc-switch-selected-pressed-handle-color: var(--success-color-600-parts);
|
|
1645
|
+
--mdc-switch-selected-focus-track-color: var(--success-color-500-parts);
|
|
1646
|
+
--mdc-switch-selected-hover-track-color: var(--success-color-500-parts);
|
|
1647
|
+
--mdc-switch-selected-pressed-track-color: var(--success-color-500-parts);
|
|
1648
|
+
--mdc-switch-selected-track-color: var(--success-color-500-parts);
|
|
1649
|
+
.mdc-switch.mdc-switch--selected:not(.mdc-switch.mdc-switch--disabled) {
|
|
1650
|
+
.mdc-switch__handle {
|
|
1651
|
+
border: 1px solid mat.get-color-from-palette($arm-success, 500) !important;
|
|
1652
|
+
}
|
|
1601
1653
|
}
|
|
1602
1654
|
}
|
|
1603
1655
|
&.mat-error {
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1656
|
+
--mdc-switch-selected-focus-state-layer-color: var(--error-color-300-parts);
|
|
1657
|
+
--mdc-switch-selected-handle-color: var(--error-color-300-parts);
|
|
1658
|
+
--mdc-switch-selected-hover-state-layer-color: var(--error-color-300-parts);
|
|
1659
|
+
--mdc-switch-selected-pressed-state-layer-color: var(--error-color-300-parts);
|
|
1660
|
+
--mdc-switch-selected-focus-handle-color: var(--error-color-600-parts);
|
|
1661
|
+
--mdc-switch-selected-hover-handle-color: var(--error-color-600-parts);
|
|
1662
|
+
--mdc-switch-selected-pressed-handle-color: var(--error-color-600-parts);
|
|
1663
|
+
--mdc-switch-selected-focus-track-color: var(--error-color-500-parts);
|
|
1664
|
+
--mdc-switch-selected-hover-track-color: var(--error-color-500-parts);
|
|
1665
|
+
--mdc-switch-selected-pressed-track-color: var(--error-color-500-parts);
|
|
1666
|
+
--mdc-switch-selected-track-color: var(--error-color-500-parts);
|
|
1667
|
+
.mdc-switch.mdc-switch--selected:not(.mdc-switch.mdc-switch--disabled) {
|
|
1668
|
+
.mdc-switch__handle {
|
|
1669
|
+
border: 1px solid mat.get-color-from-palette($arm-error, 500) !important;
|
|
1670
|
+
}
|
|
1611
1671
|
}
|
|
1612
1672
|
}
|
|
1613
1673
|
&.mat-info {
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1674
|
+
--mdc-switch-selected-focus-state-layer-color: var(--info-color-300-parts);
|
|
1675
|
+
--mdc-switch-selected-handle-color: var(--info-color-300-parts);
|
|
1676
|
+
--mdc-switch-selected-hover-state-layer-color: var(--info-color-300-parts);
|
|
1677
|
+
--mdc-switch-selected-pressed-state-layer-color: var(--info-color-300-parts);
|
|
1678
|
+
--mdc-switch-selected-focus-handle-color: var(--info-color-600-parts);
|
|
1679
|
+
--mdc-switch-selected-hover-handle-color: var(--info-color-600-parts);
|
|
1680
|
+
--mdc-switch-selected-pressed-handle-color: var(--info-color-600-parts);
|
|
1681
|
+
--mdc-switch-selected-focus-track-color: var(--info-color-500-parts);
|
|
1682
|
+
--mdc-switch-selected-hover-track-color: var(--info-color-500-parts);
|
|
1683
|
+
--mdc-switch-selected-pressed-track-color: var(--info-color-500-parts);
|
|
1684
|
+
--mdc-switch-selected-track-color: var(--info-color-500-parts);
|
|
1685
|
+
.mdc-switch.mdc-switch--selected:not(.mdc-switch.mdc-switch--disabled) {
|
|
1686
|
+
.mdc-switch__handle {
|
|
1687
|
+
border: 1px solid mat.get-color-from-palette($arm-info, 500) !important;
|
|
1688
|
+
}
|
|
1621
1689
|
}
|
|
1622
1690
|
}
|
|
1623
1691
|
&.mat-neutral {
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1692
|
+
--mdc-switch-selected-focus-state-layer-color: var(--neutral-color-300-parts);
|
|
1693
|
+
--mdc-switch-selected-handle-color: var(--neutral-color-300-parts);
|
|
1694
|
+
--mdc-switch-selected-hover-state-layer-color: var(--neutral-color-300-parts);
|
|
1695
|
+
--mdc-switch-selected-pressed-state-layer-color: var(--neutral-color-300-parts);
|
|
1696
|
+
--mdc-switch-selected-focus-handle-color: var(--neutral-color-600-parts);
|
|
1697
|
+
--mdc-switch-selected-hover-handle-color: var(--neutral-color-600-parts);
|
|
1698
|
+
--mdc-switch-selected-pressed-handle-color: var(--neutral-color-600-parts);
|
|
1699
|
+
--mdc-switch-selected-focus-track-color: var(--neutral-color-500-parts);
|
|
1700
|
+
--mdc-switch-selected-hover-track-color: var(--neutral-color-500-parts);
|
|
1701
|
+
--mdc-switch-selected-pressed-track-color: var(--neutral-color-500-parts);
|
|
1702
|
+
--mdc-switch-selected-track-color: var(--neutral-color-500-parts);
|
|
1703
|
+
.mdc-switch.mdc-switch--selected:not(.mdc-switch.mdc-switch--disabled) {
|
|
1704
|
+
.mdc-switch__handle {
|
|
1705
|
+
border: 1px solid #000000de !important;
|
|
1706
|
+
}
|
|
1631
1707
|
}
|
|
1632
1708
|
}
|
|
1633
1709
|
}
|
|
1634
1710
|
|
|
1635
|
-
::ng-deep mat-slide-toggle.sof-slide-toggle
|
|
1636
|
-
.
|
|
1637
|
-
background-color: #ffffff !important;
|
|
1638
|
-
border: 1px solid #f7f7f7 !important;
|
|
1639
|
-
}
|
|
1640
|
-
.mat-slide-toggle-bar {
|
|
1641
|
-
background: #e9e9e9 !important;
|
|
1642
|
-
border: 1px solid #f7f7f7 !important;
|
|
1643
|
-
}
|
|
1644
|
-
.mat-slide-toggle-content {
|
|
1711
|
+
::ng-deep mat-slide-toggle.sof-slide-toggle {
|
|
1712
|
+
&:has(.mdc-switch--disabled) label {
|
|
1645
1713
|
color: rgba(0, 0, 0, 0.87) !important;
|
|
1646
1714
|
}
|
|
1647
1715
|
}
|
|
1648
1716
|
|
|
1649
|
-
.mat-slide-toggle.mat-disabled {
|
|
1650
|
-
opacity: 1 !important;
|
|
1651
|
-
}
|
|
1652
1717
|
// MatSlideToggle class overrides [END]
|
|
1653
1718
|
|
|
1654
1719
|
.mobile-sr-only {
|
|
@@ -1733,7 +1798,7 @@ mat-optgroup mat-option {
|
|
|
1733
1798
|
}
|
|
1734
1799
|
}
|
|
1735
1800
|
|
|
1736
|
-
.word-wrap-checkboxes-override
|
|
1801
|
+
.word-wrap-checkboxes-override label {
|
|
1737
1802
|
white-space: initial !important;
|
|
1738
1803
|
@media only screen and (max-width: $mat-lt-md) {
|
|
1739
1804
|
white-space: initial;
|
|
@@ -1743,12 +1808,13 @@ mat-optgroup mat-option {
|
|
|
1743
1808
|
.sm-full-width-datepicker {
|
|
1744
1809
|
@media only screen and (max-width: $mat-lt-md) {
|
|
1745
1810
|
width: 100%;
|
|
1746
|
-
.mat-form-field-infix,
|
|
1747
|
-
.mat-form-field-infix > input {
|
|
1811
|
+
.mat-mdc-form-field-infix,
|
|
1812
|
+
.mat-mdc-form-field-infix > input {
|
|
1748
1813
|
width: 100% !important;
|
|
1749
1814
|
}
|
|
1750
1815
|
}
|
|
1751
1816
|
}
|
|
1817
|
+
|
|
1752
1818
|
.sof-tokenizer-button-btn-container {
|
|
1753
1819
|
@media only screen and (max-width: $mat-lt-md) {
|
|
1754
1820
|
flex-direction: column-reverse !important;
|
|
@@ -1799,7 +1865,7 @@ mat-optgroup mat-option {
|
|
|
1799
1865
|
}
|
|
1800
1866
|
|
|
1801
1867
|
.mat-card-mobile-header-override {
|
|
1802
|
-
background: mat-color($arm-neutral, 300);
|
|
1868
|
+
background: mat.get-color-from-palette($arm-neutral, 300);
|
|
1803
1869
|
padding: 16px;
|
|
1804
1870
|
margin: 0 -16px;
|
|
1805
1871
|
}
|
|
@@ -1897,16 +1963,16 @@ mat-optgroup mat-option {
|
|
|
1897
1963
|
max-height: none !important;
|
|
1898
1964
|
overflow-y: auto !important;
|
|
1899
1965
|
|
|
1900
|
-
.mat-table {
|
|
1966
|
+
.mat-mdc-table {
|
|
1901
1967
|
border: 0;
|
|
1902
1968
|
vertical-align: middle;
|
|
1903
1969
|
|
|
1904
|
-
.mat-header-row {
|
|
1970
|
+
.mat-mdc-header-row {
|
|
1905
1971
|
min-height: 0;
|
|
1906
1972
|
height: 0;
|
|
1907
1973
|
}
|
|
1908
1974
|
|
|
1909
|
-
.mat-header-cell {
|
|
1975
|
+
.mat-mdc-header-cell {
|
|
1910
1976
|
border: 10px solid;
|
|
1911
1977
|
clip: rect(0 0 0 0);
|
|
1912
1978
|
height: 1px;
|
|
@@ -1917,7 +1983,7 @@ mat-optgroup mat-option {
|
|
|
1917
1983
|
width: 1px;
|
|
1918
1984
|
}
|
|
1919
1985
|
|
|
1920
|
-
.mat-row {
|
|
1986
|
+
.mat-mdc-row {
|
|
1921
1987
|
padding: 10px 20px 0 20px;
|
|
1922
1988
|
border-bottom: 5px solid #ddd;
|
|
1923
1989
|
display: block;
|
|
@@ -1925,11 +1991,11 @@ mat-optgroup mat-option {
|
|
|
1925
1991
|
height: auto;
|
|
1926
1992
|
}
|
|
1927
1993
|
|
|
1928
|
-
td.mat-cell:first-of-type {
|
|
1994
|
+
td.mat-mdc-cell:first-of-type {
|
|
1929
1995
|
height: 48px;
|
|
1930
1996
|
}
|
|
1931
1997
|
|
|
1932
|
-
.mat-cell {
|
|
1998
|
+
.mat-mdc-cell {
|
|
1933
1999
|
display: block;
|
|
1934
2000
|
font-size: initial;
|
|
1935
2001
|
height: auto;
|
|
@@ -1938,7 +2004,7 @@ mat-optgroup mat-option {
|
|
|
1938
2004
|
text-align: initial;
|
|
1939
2005
|
|
|
1940
2006
|
&.action-buttons {
|
|
1941
|
-
border-top: 1px solid mat-color($arm-neutral, 300);
|
|
2007
|
+
border-top: 1px solid mat.get-color-from-palette($arm-neutral, 300);
|
|
1942
2008
|
margin-top: 24px;
|
|
1943
2009
|
display: flex;
|
|
1944
2010
|
flex-wrap: wrap;
|
|
@@ -1970,13 +2036,13 @@ mat-optgroup mat-option {
|
|
|
1970
2036
|
padding-left: 0;
|
|
1971
2037
|
margin: -10px -20px 8px -20px;
|
|
1972
2038
|
padding: 16px 20px 16px 20px;
|
|
1973
|
-
background: mat-color($arm-neutral, 300);
|
|
2039
|
+
background: mat.get-color-from-palette($arm-neutral, 300);
|
|
1974
2040
|
box-sizing: border-box;
|
|
1975
2041
|
height: auto;
|
|
1976
2042
|
}
|
|
1977
2043
|
}
|
|
1978
2044
|
|
|
1979
|
-
td.mat-cell.action-buttons {
|
|
2045
|
+
td.mat-mdc-cell.action-buttons {
|
|
1980
2046
|
margin-bottom: 8px;
|
|
1981
2047
|
}
|
|
1982
2048
|
}
|