@energycap/components 0.42.4-esbuild.20250131-1219 → 0.42.4-esbuild.20250131-1441
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/esm2022/energycap-components.mjs +5 -0
- package/esm2022/lib/components.module.mjs +423 -0
- package/esm2022/lib/controls/banner/banner.component.mjs +109 -0
- package/esm2022/lib/controls/button/button.component.mjs +106 -0
- package/esm2022/lib/controls/button/copy-button-base.directive.mjs +67 -0
- package/esm2022/lib/controls/button/copy-button.directive.mjs +28 -0
- package/esm2022/lib/controls/button/copy-table-button.directive.mjs +43 -0
- package/esm2022/lib/controls/calendar/calendar-item.component.mjs +91 -0
- package/esm2022/lib/controls/calendar/calendar.component.mjs +248 -0
- package/esm2022/lib/controls/calendar/calendar.types.mjs +2 -0
- package/esm2022/lib/controls/checkbox/checkbox.component.mjs +140 -0
- package/esm2022/lib/controls/collapsible-toggle/collapsible-toggle.component.mjs +38 -0
- package/esm2022/lib/controls/combobox/combobox.component.mjs +879 -0
- package/esm2022/lib/controls/date-input/date-input-selection-strategies/date-input-selection-strategy-base.mjs +57 -0
- package/esm2022/lib/controls/date-input/date-input-selection-strategies/day-selection-strategy.mjs +62 -0
- package/esm2022/lib/controls/date-input/date-input-selection-strategies/last-28-days-selection-strategy.mjs +100 -0
- package/esm2022/lib/controls/date-input/date-input-selection-strategies/last-7-days-selection-strategy.mjs +101 -0
- package/esm2022/lib/controls/date-input/date-input-selection-strategies/month-selection-strategy.mjs +76 -0
- package/esm2022/lib/controls/date-input/date-input-selection-strategies/quarter-selection-strategy.mjs +79 -0
- package/esm2022/lib/controls/date-input/date-input-selection-strategies/range-selection-strategy.mjs +210 -0
- package/esm2022/lib/controls/date-input/date-input-selection-strategies/year-selection-strategy.mjs +81 -0
- package/esm2022/lib/controls/date-input/date-input.component.mjs +464 -0
- package/esm2022/lib/controls/date-input/date-input.types.mjs +44 -0
- package/esm2022/lib/controls/dropdown/dropdown.component.mjs +243 -0
- package/esm2022/lib/controls/file-upload/file-upload.component.mjs +261 -0
- package/esm2022/lib/controls/form-control/form-control.component.mjs +98 -0
- package/esm2022/lib/controls/form-control-base.mjs +151 -0
- package/esm2022/lib/controls/form-control-label/form-control-label.component.mjs +136 -0
- package/esm2022/lib/controls/form-group/form-group.component.mjs +261 -0
- package/esm2022/lib/controls/help-popover/help-popover.component.mjs +31 -0
- package/esm2022/lib/controls/item-picker/item-picker.component.mjs +329 -0
- package/esm2022/lib/controls/link-button/link-button.component.mjs +11 -0
- package/esm2022/lib/controls/menu/menu.component.mjs +485 -0
- package/esm2022/lib/controls/navigation/link-item.mjs +2 -0
- package/esm2022/lib/controls/navigation/nav-group.mjs +39 -0
- package/esm2022/lib/controls/navigation/nav-item-active.directive.mjs +92 -0
- package/esm2022/lib/controls/navigation/nav-item.mjs +2 -0
- package/esm2022/lib/controls/numericbox/numericbox.component.mjs +372 -0
- package/esm2022/lib/controls/popover/popover.component.mjs +117 -0
- package/esm2022/lib/controls/radio-button/radio-button-option.mjs +3 -0
- package/esm2022/lib/controls/radio-button/radio-button.component.mjs +82 -0
- package/esm2022/lib/controls/select/select.component.mjs +88 -0
- package/esm2022/lib/controls/tabs/tabs.component.mjs +47 -0
- package/esm2022/lib/controls/textbox/textbox.component.mjs +155 -0
- package/esm2022/lib/core/cache.service.mjs +105 -0
- package/esm2022/lib/core/custom-validators.mjs +29 -0
- package/esm2022/lib/core/date-time-helper.mjs +228 -0
- package/esm2022/lib/core/error.service.mjs +61 -0
- package/esm2022/lib/core/router-helper.service.mjs +111 -0
- package/esm2022/lib/core/scroll.service.mjs +89 -0
- package/esm2022/lib/core/telemetry-tracker.service.mjs +16 -0
- package/esm2022/lib/core/telemetry.service.mjs +38 -0
- package/esm2022/lib/core/validation-message.service.mjs +185 -0
- package/esm2022/lib/core/validation-patterns.mjs +31 -0
- package/esm2022/lib/core/window.service.mjs +186 -0
- package/esm2022/lib/display/app-bar/app-bar.component.mjs +46 -0
- package/esm2022/lib/display/avatar/avatar.component.mjs +67 -0
- package/esm2022/lib/display/avatar/avatar.service.mjs +64 -0
- package/esm2022/lib/display/confirm/confirm.component.mjs +168 -0
- package/esm2022/lib/display/dialog/dialog-content.mjs +2 -0
- package/esm2022/lib/display/dialog/dialog-group/dialog-group.component.mjs +63 -0
- package/esm2022/lib/display/dialog/dialog-types.mjs +77 -0
- package/esm2022/lib/display/dialog/dialog.component.mjs +281 -0
- package/esm2022/lib/display/dialog/dialog.service.mjs +71 -0
- package/esm2022/lib/display/help/help-types.mjs +2 -0
- package/esm2022/lib/display/hierarchy/hierarchy-base.mjs +111 -0
- package/esm2022/lib/display/hierarchy/hierarchy-mocks.spec.mjs +54 -0
- package/esm2022/lib/display/hierarchy/hierarchy-tree/hierarchy-tree.component.mjs +61 -0
- package/esm2022/lib/display/item-display/item-display.component.mjs +81 -0
- package/esm2022/lib/display/json-display/json-display.component.mjs +47 -0
- package/esm2022/lib/display/resizable/resizable-base.mjs +120 -0
- package/esm2022/lib/display/resizable/resizable.component.mjs +57 -0
- package/esm2022/lib/display/spinner/spinner.component.mjs +12 -0
- package/esm2022/lib/display/splash/splash.component.mjs +42 -0
- package/esm2022/lib/display/splash/splash.service.mjs +35 -0
- package/esm2022/lib/display/table/resizable-column.component.mjs +20 -0
- package/esm2022/lib/display/table/resizable-table.directive.mjs +227 -0
- package/esm2022/lib/display/table/searchable-table.component.mjs +342 -0
- package/esm2022/lib/display/table/table-detail-row.component.mjs +28 -0
- package/esm2022/lib/display/table/table-locked-column.component.mjs +58 -0
- package/esm2022/lib/display/table/table-master-header-row.component.mjs +14 -0
- package/esm2022/lib/display/table/table-master-row.component.mjs +163 -0
- package/esm2022/lib/display/table/table-pagination.component.mjs +155 -0
- package/esm2022/lib/display/table/table-selectable-row.component.mjs +235 -0
- package/esm2022/lib/display/table/table.component.mjs +249 -0
- package/esm2022/lib/display/tags/tag.mjs +18 -0
- package/esm2022/lib/display/tags/tags.component.mjs +77 -0
- package/esm2022/lib/display/toast/toast/toast.component.mjs +77 -0
- package/esm2022/lib/display/toast/toast-types.mjs +8 -0
- package/esm2022/lib/display/toast/toast.service.mjs +35 -0
- package/esm2022/lib/display/toast/toaster/toaster.component.mjs +114 -0
- package/esm2022/lib/display/tooltip/tooltip.component.mjs +28 -0
- package/esm2022/lib/display/tooltip/tooltip.service.mjs +78 -0
- package/esm2022/lib/display/tooltip-directive/tooltip.directive.mjs +173 -0
- package/esm2022/lib/display/tour/tour-types.mjs +34 -0
- package/esm2022/lib/display/tour/tour.component.mjs +398 -0
- package/esm2022/lib/display/tour/tour.service.mjs +75 -0
- package/esm2022/lib/display/tree/tree.component.mjs +135 -0
- package/esm2022/lib/display/view-overlay/view-overlay.component.mjs +58 -0
- package/esm2022/lib/shared/directives/click-area-for/click-area-for.directive.mjs +32 -0
- package/esm2022/lib/shared/directives/if-viewport-width/if-viewport-width.directive.mjs +111 -0
- package/esm2022/lib/shared/directives/keyboard-nav-container/keyboard-nav-container.directive.mjs +100 -0
- package/esm2022/lib/shared/directives/popup/popup-container.directive.mjs +166 -0
- package/esm2022/lib/shared/display/pipes/date-display.pipe.mjs +50 -0
- package/esm2022/lib/shared/display/pipes/highlight-text.pipe.mjs +30 -0
- package/esm2022/lib/shared/display/pipes/relative-date.pipe.mjs +62 -0
- package/esm2022/lib/shared/display/pipes/row-count.pipe.mjs +48 -0
- package/esm2022/lib/shared/display/pipes/time-display.pipe.mjs +41 -0
- package/esm2022/lib/shared/display.mjs +6 -0
- package/esm2022/lib/shared/form-group.helper.mjs +67 -0
- package/esm2022/lib/shared/json-helper.mjs +19 -0
- package/esm2022/lib/shared/lodash-helper.mjs +52 -0
- package/esm2022/lib/shared/page/page-base/page-base.component.mjs +387 -0
- package/esm2022/lib/shared/page/page-statuses.mjs +23 -0
- package/esm2022/lib/shared/page/page-title/page-title.component.mjs +23 -0
- package/esm2022/lib/shared/page/page-view/page-view.component.mjs +147 -0
- package/esm2022/lib/shared/testing/copy-button-base-test-injector-factory.spec.mjs +17 -0
- package/esm2022/lib/shared/testing/hierarchy-base-test-injector-factory.spec.mjs +17 -0
- package/esm2022/lib/shared/testing/page-base-component-test-helper.spec.mjs +38 -0
- package/esm2022/lib/shared/testing/page-base-component-test-injector-factory.spec.mjs +98 -0
- package/esm2022/lib/shared/testing/public-mocks.spec.mjs +148 -0
- package/esm2022/lib/shared/testing/spy-factory.spec.mjs +40 -0
- package/esm2022/lib/shared/testing/translation-mocks.spec.mjs +57 -0
- package/esm2022/lib/shared/user-preference.service.mjs +17 -0
- package/esm2022/lib/shared/wizard/wizard-base/wizard-base.component.mjs +246 -0
- package/esm2022/lib/shared/wizard/wizard-buttons/wizard-buttons.component.mjs +68 -0
- package/esm2022/lib/shared/wizard/wizard-progress/wizard-progress.component.mjs +18 -0
- package/esm2022/public-api.mjs +117 -0
- package/fesm2022/energycap-components.mjs +13219 -0
- package/fesm2022/energycap-components.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components.module.d.ts +92 -0
- package/lib/controls/banner/banner.component.d.ts +50 -0
- package/lib/controls/button/button.component.d.ts +78 -0
- package/lib/controls/button/copy-button-base.directive.d.ts +20 -0
- package/lib/controls/button/copy-button.directive.d.ts +14 -0
- package/lib/controls/button/copy-table-button.directive.d.ts +19 -0
- package/lib/controls/calendar/calendar-item.component.d.ts +22 -0
- package/lib/controls/calendar/calendar.component.d.ts +52 -0
- package/lib/controls/calendar/calendar.types.d.ts +11 -0
- package/lib/controls/checkbox/checkbox.component.d.ts +65 -0
- package/lib/controls/collapsible-toggle/collapsible-toggle.component.d.ts +25 -0
- package/lib/controls/combobox/combobox.component.d.ts +418 -0
- package/lib/controls/date-input/date-input-selection-strategies/date-input-selection-strategy-base.d.ts +42 -0
- package/lib/controls/date-input/date-input-selection-strategies/day-selection-strategy.d.ts +21 -0
- package/lib/controls/date-input/date-input-selection-strategies/last-28-days-selection-strategy.d.ts +21 -0
- package/lib/controls/date-input/date-input-selection-strategies/last-7-days-selection-strategy.d.ts +21 -0
- package/lib/controls/date-input/date-input-selection-strategies/month-selection-strategy.d.ts +18 -0
- package/lib/controls/date-input/date-input-selection-strategies/quarter-selection-strategy.d.ts +18 -0
- package/lib/controls/date-input/date-input-selection-strategies/range-selection-strategy.d.ts +21 -0
- package/lib/controls/date-input/date-input-selection-strategies/year-selection-strategy.d.ts +20 -0
- package/lib/controls/date-input/date-input.component.d.ts +115 -0
- package/lib/controls/date-input/date-input.types.d.ts +62 -0
- package/lib/controls/dropdown/dropdown.component.d.ts +161 -0
- package/lib/controls/file-upload/file-upload.component.d.ts +124 -0
- package/lib/controls/form-control/form-control.component.d.ts +28 -0
- package/lib/controls/form-control-base.d.ts +110 -0
- package/lib/controls/form-control-label/form-control-label.component.d.ts +73 -0
- package/lib/controls/form-group/form-group.component.d.ts +105 -0
- package/lib/controls/help-popover/help-popover.component.d.ts +11 -0
- package/lib/controls/item-picker/item-picker.component.d.ts +164 -0
- package/lib/controls/link-button/link-button.component.d.ts +5 -0
- package/lib/controls/menu/menu.component.d.ts +255 -0
- package/lib/controls/navigation/link-item.d.ts +32 -0
- package/lib/controls/navigation/nav-group.d.ts +18 -0
- package/lib/controls/navigation/nav-item-active.directive.d.ts +42 -0
- package/lib/controls/navigation/nav-item.d.ts +31 -0
- package/lib/controls/numericbox/numericbox.component.d.ts +148 -0
- package/lib/controls/popover/popover.component.d.ts +51 -0
- package/lib/controls/radio-button/radio-button-option.d.ts +19 -0
- package/lib/controls/radio-button/radio-button.component.d.ts +53 -0
- package/lib/controls/select/select.component.d.ts +44 -0
- package/lib/controls/tabs/tabs.component.d.ts +30 -0
- package/lib/controls/textbox/textbox.component.d.ts +107 -0
- package/lib/core/cache.service.d.ts +33 -0
- package/lib/core/custom-validators.d.ts +20 -0
- package/lib/core/date-time-helper.d.ts +101 -0
- package/lib/core/error.service.d.ts +20 -0
- package/lib/core/router-helper.service.d.ts +48 -0
- package/lib/core/scroll.service.d.ts +36 -0
- package/lib/core/telemetry-tracker.service.d.ts +13 -0
- package/lib/core/telemetry.service.d.ts +31 -0
- package/lib/core/validation-message.service.d.ts +26 -0
- package/lib/core/validation-patterns.d.ts +22 -0
- package/lib/core/window.service.d.ts +116 -0
- package/lib/display/app-bar/app-bar.component.d.ts +20 -0
- package/lib/display/avatar/avatar.component.d.ts +35 -0
- package/lib/display/avatar/avatar.service.d.ts +24 -0
- package/lib/display/confirm/confirm.component.d.ts +123 -0
- package/lib/display/dialog/dialog-content.d.ts +19 -0
- package/lib/display/dialog/dialog-group/dialog-group.component.d.ts +32 -0
- package/lib/display/dialog/dialog-types.d.ts +130 -0
- package/lib/display/dialog/dialog.component.d.ts +120 -0
- package/lib/display/dialog/dialog.service.d.ts +48 -0
- package/lib/display/help/help-types.d.ts +33 -0
- package/lib/display/hierarchy/hierarchy-base.d.ts +97 -0
- package/lib/display/hierarchy/hierarchy-mocks.spec.d.ts +53 -0
- package/lib/display/hierarchy/hierarchy-tree/hierarchy-tree.component.d.ts +34 -0
- package/lib/display/item-display/item-display.component.d.ts +43 -0
- package/lib/display/json-display/json-display.component.d.ts +16 -0
- package/lib/display/resizable/resizable-base.d.ts +67 -0
- package/lib/display/resizable/resizable.component.d.ts +31 -0
- package/lib/display/spinner/spinner.component.d.ts +5 -0
- package/lib/display/splash/splash.component.d.ts +16 -0
- package/lib/display/splash/splash.service.d.ts +22 -0
- package/lib/display/table/resizable-column.component.d.ts +10 -0
- package/lib/display/table/resizable-table.directive.d.ts +93 -0
- package/lib/display/table/searchable-table.component.d.ts +206 -0
- package/lib/display/table/table-detail-row.component.d.ts +8 -0
- package/lib/display/table/table-locked-column.component.d.ts +20 -0
- package/lib/display/table/table-master-header-row.component.d.ts +9 -0
- package/lib/display/table/table-master-row.component.d.ts +113 -0
- package/lib/display/table/table-pagination.component.d.ts +91 -0
- package/lib/display/table/table-selectable-row.component.d.ts +102 -0
- package/lib/display/table/table.component.d.ts +121 -0
- package/lib/display/tags/tag.d.ts +18 -0
- package/lib/display/tags/tags.component.d.ts +48 -0
- package/lib/display/toast/toast/toast.component.d.ts +23 -0
- package/lib/display/toast/toast-types.d.ts +24 -0
- package/lib/display/toast/toast.service.d.ts +20 -0
- package/lib/display/toast/toaster/toaster.component.d.ts +35 -0
- package/lib/display/tooltip/tooltip.component.d.ts +70 -0
- package/lib/display/tooltip/tooltip.service.d.ts +16 -0
- package/lib/display/tooltip-directive/tooltip.directive.d.ts +44 -0
- package/lib/display/tour/tour-types.d.ts +70 -0
- package/lib/display/tour/tour.component.d.ts +147 -0
- package/lib/display/tour/tour.service.d.ts +38 -0
- package/lib/display/tree/tree.component.d.ts +75 -0
- package/lib/display/view-overlay/view-overlay.component.d.ts +38 -0
- package/lib/shared/directives/click-area-for/click-area-for.directive.d.ts +14 -0
- package/lib/shared/directives/if-viewport-width/if-viewport-width.directive.d.ts +60 -0
- package/lib/shared/directives/keyboard-nav-container/keyboard-nav-container.directive.d.ts +23 -0
- package/lib/shared/directives/popup/popup-container.directive.d.ts +101 -0
- package/lib/shared/display/pipes/date-display.pipe.d.ts +21 -0
- package/lib/shared/display/pipes/highlight-text.pipe.d.ts +9 -0
- package/lib/shared/display/pipes/relative-date.pipe.d.ts +36 -0
- package/lib/shared/display/pipes/row-count.pipe.d.ts +23 -0
- package/lib/shared/display/pipes/time-display.pipe.d.ts +18 -0
- package/lib/shared/display.d.ts +42 -0
- package/lib/shared/form-group.helper.d.ts +31 -0
- package/lib/shared/json-helper.d.ts +7 -0
- package/lib/shared/lodash-helper.d.ts +18 -0
- package/lib/shared/page/page-base/page-base.component.d.ts +259 -0
- package/lib/shared/page/page-statuses.d.ts +13 -0
- package/lib/shared/page/page-title/page-title.component.d.ts +9 -0
- package/lib/shared/page/page-view/page-view.component.d.ts +102 -0
- package/lib/shared/testing/copy-button-base-test-injector-factory.spec.d.ts +4 -0
- package/lib/shared/testing/hierarchy-base-test-injector-factory.spec.d.ts +4 -0
- package/lib/shared/testing/page-base-component-test-helper.spec.d.ts +30 -0
- package/lib/shared/testing/page-base-component-test-injector-factory.spec.d.ts +28 -0
- package/lib/shared/testing/public-mocks.spec.d.ts +90 -0
- package/lib/shared/testing/spy-factory.spec.d.ts +27 -0
- package/lib/shared/testing/translation-mocks.spec.d.ts +30 -0
- package/lib/shared/user-preference.service.d.ts +13 -0
- package/lib/shared/wizard/wizard-base/wizard-base.component.d.ts +134 -0
- package/lib/shared/wizard/wizard-buttons/wizard-buttons.component.d.ts +27 -0
- package/lib/shared/wizard/wizard-progress/wizard-progress.component.d.ts +10 -0
- package/package.json +2 -6
- package/public-api.d.ts +113 -0
- package/schematics/collection.json +10 -0
- package/schematics/rxjs-7-upgrade/index.d.ts +3 -0
- package/schematics/rxjs-7-upgrade/index.js +71 -0
- package/schematics/rxjs-7-upgrade/index.js.map +1 -0
- package/schematics/rxjs-7-upgrade/schema.d.ts +4 -0
- package/schematics/rxjs-7-upgrade/schema.js +3 -0
- package/schematics/rxjs-7-upgrade/schema.js.map +1 -0
- package/schematics/rxjs-7-upgrade/schema.json +14 -0
- package/schematics/utilities/typescript.d.ts +7 -0
- package/schematics/utilities/typescript.js +45 -0
- package/schematics/utilities/typescript.js.map +1 -0
- package/schematics/utilities/workspace.d.ts +8 -0
- package/schematics/utilities/workspace.js +72 -0
- package/schematics/utilities/workspace.js.map +1 -0
- package/src/assets/images/email-icon.png +0 -0
- package/src/assets/images/email-logo.png +0 -0
- package/src/assets/images/favicon-ech.svg +7 -0
- package/src/assets/images/favicon-esa.svg +6 -0
- package/src/assets/images/favicon-eum.svg +6 -0
- package/src/assets/images/favicon.svg +5 -0
- package/src/assets/images/icon-carbonhub.svg +10 -0
- package/src/assets/images/icon-eum.svg +5 -0
- package/src/assets/images/icon-ucp.svg +5 -0
- package/src/assets/images/icon-wattics.svg +5 -0
- package/src/assets/images/icon.svg +4 -0
- package/src/assets/images/logo.svg +3 -0
- package/src/assets/images/splash.gif +0 -0
- package/src/assets/locales/en_US.json +59 -0
- package/src/assets/scripts/unsupported-browser.js +17 -0
- package/src/styles/_base.scss +38 -0
- package/src/styles/_colors.scss +96 -0
- package/src/styles/_core.scss +4 -0
- package/src/styles/_functions.scss +114 -0
- package/src/styles/_global-variables.scss +232 -0
- package/src/styles/_icons.scss +24 -0
- package/src/styles/bootstrap/_grid.scss +34 -0
- package/src/styles/bootstrap/_reboot.scss +323 -0
- package/src/styles/components/_card.scss +21 -0
- package/src/styles/components/_link-icons.scss +38 -0
- package/src/styles/components/_splash.scss +57 -0
- package/src/styles/components/_unsupported-browsers.scss +24 -0
- package/src/styles/email/_email-base.scss +228 -0
- package/src/styles/email/email.scss +43 -0
- package/src/styles/index.scss +27 -0
- package/src/styles/mixins/_animations.scss +18 -0
- package/src/styles/mixins/_button-base.scss +185 -0
- package/src/styles/mixins/_card-base.scss +40 -0
- package/src/styles/mixins/_common.scss +52 -0
- package/src/styles/mixins/_dialog-base.scss +96 -0
- package/src/styles/mixins/_form-control-base.scss +641 -0
- package/src/styles/mixins/_login.scss +74 -0
- package/src/styles/mixins/_menu-base.scss +153 -0
- package/src/styles/mixins/_overlay-base.scss +33 -0
- package/src/styles/mixins/_resizable-base.scss +57 -0
- package/src/styles/mixins/_spinner-base.scss +34 -0
- package/src/styles/mixins/_table-base.scss +298 -0
- package/src/styles/mixins/_tabs-base.scss +110 -0
- package/src/styles/mixins/_tags-base.scss +116 -0
- package/src/styles/mixins/_text.scss +89 -0
- package/src/styles/mixins.scss +15 -0
- package/src/styles/utilities/_borders.scss +30 -0
- package/src/styles/utilities/_common.scss +49 -0
- package/src/styles/utilities/_layout.scss +116 -0
- package/src/styles/utilities/_spacing.scss +65 -0
- package/src/styles/utilities/_text.scss +139 -0
@@ -0,0 +1,232 @@
|
|
1
|
+
@import './colors';
|
2
|
+
|
3
|
+
// Global CSS variables (custom properties).
|
4
|
+
// Variable names should follow this pattern: --ec-<css-property>[-<dash delimited modifiers>].
|
5
|
+
// If the variable is the default value, don't include a modifier
|
6
|
+
// For example, the primary dark color should be named --ec-color-primary-dark
|
7
|
+
// and default border color should be --ec-border-color
|
8
|
+
|
9
|
+
:root {
|
10
|
+
// Variables for the EnergyCAP brand color pallette
|
11
|
+
// Colors go from lighter (1) to darker (8).
|
12
|
+
--ec-color-black: #{$black};
|
13
|
+
--ec-color-white: #{$white};
|
14
|
+
|
15
|
+
--ec-color-gray-1: #{$gray-1};
|
16
|
+
--ec-color-gray-2: #{$gray-2};
|
17
|
+
--ec-color-gray-3: #{$gray-3};
|
18
|
+
--ec-color-gray-4: #{$gray-4};
|
19
|
+
--ec-color-gray-5: #{$gray-5};
|
20
|
+
--ec-color-gray-6: #{$gray-6};
|
21
|
+
--ec-color-gray-7: #{$gray-7};
|
22
|
+
--ec-color-gray-8: #{$gray-8};
|
23
|
+
|
24
|
+
--ec-color-red-1: #{$red-1};
|
25
|
+
--ec-color-red-2: #{$red-2};
|
26
|
+
--ec-color-red-3: #{$red-3};
|
27
|
+
--ec-color-red-4: #{$red-4};
|
28
|
+
--ec-color-red-5: #{$red-5};
|
29
|
+
--ec-color-red-6: #{$red-6};
|
30
|
+
--ec-color-red-7: #{$red-7};
|
31
|
+
--ec-color-red-8: #{$red-8};
|
32
|
+
|
33
|
+
--ec-color-orange-1: #{$orange-1};
|
34
|
+
--ec-color-orange-2: #{$orange-2};
|
35
|
+
--ec-color-orange-3: #{$orange-3};
|
36
|
+
--ec-color-orange-4: #{$orange-4};
|
37
|
+
--ec-color-orange-5: #{$orange-5};
|
38
|
+
--ec-color-orange-6: #{$orange-6};
|
39
|
+
--ec-color-orange-7: #{$orange-7};
|
40
|
+
--ec-color-orange-8: #{$orange-8};
|
41
|
+
|
42
|
+
--ec-color-yellow-1: #{$yellow-1};
|
43
|
+
--ec-color-yellow-2: #{$yellow-2};
|
44
|
+
--ec-color-yellow-3: #{$yellow-3};
|
45
|
+
--ec-color-yellow-4: #{$yellow-4};
|
46
|
+
--ec-color-yellow-5: #{$yellow-5};
|
47
|
+
--ec-color-yellow-6: #{$yellow-6};
|
48
|
+
--ec-color-yellow-7: #{$yellow-7};
|
49
|
+
--ec-color-yellow-8: #{$yellow-8};
|
50
|
+
|
51
|
+
--ec-color-green-1: #{$green-1};
|
52
|
+
--ec-color-green-2: #{$green-2};
|
53
|
+
--ec-color-green-3: #{$green-3};
|
54
|
+
--ec-color-green-4: #{$green-4};
|
55
|
+
--ec-color-green-5: #{$green-5};
|
56
|
+
--ec-color-green-6: #{$green-6};
|
57
|
+
--ec-color-green-7: #{$green-7};
|
58
|
+
--ec-color-green-8: #{$green-8};
|
59
|
+
|
60
|
+
--ec-color-blue-1: #{$blue-1};
|
61
|
+
--ec-color-blue-2: #{$blue-2};
|
62
|
+
--ec-color-blue-3: #{$blue-3};
|
63
|
+
--ec-color-blue-4: #{$blue-4};
|
64
|
+
--ec-color-blue-5: #{$blue-5};
|
65
|
+
--ec-color-blue-6: #{$blue-6};
|
66
|
+
--ec-color-blue-7: #{$blue-7};
|
67
|
+
--ec-color-blue-8: #{$blue-8};
|
68
|
+
|
69
|
+
--ec-color-purple-1: #{$purple-1};
|
70
|
+
--ec-color-purple-2: #{$purple-2};
|
71
|
+
--ec-color-purple-3: #{$purple-3};
|
72
|
+
--ec-color-purple-4: #{$purple-4};
|
73
|
+
--ec-color-purple-5: #{$purple-5};
|
74
|
+
--ec-color-purple-6: #{$purple-6};
|
75
|
+
--ec-color-purple-7: #{$purple-7};
|
76
|
+
--ec-color-purple-8: #{$purple-8};
|
77
|
+
|
78
|
+
--ec-color-cobalt-1: #{$cobalt-1};
|
79
|
+
--ec-color-cobalt-2: #{$cobalt-2};
|
80
|
+
--ec-color-cobalt-3: #{$cobalt-3};
|
81
|
+
--ec-color-cobalt-4: #{$cobalt-4};
|
82
|
+
--ec-color-cobalt-5: #{$cobalt-5};
|
83
|
+
--ec-color-cobalt-6: #{$cobalt-6};
|
84
|
+
--ec-color-cobalt-7: #{$cobalt-7};
|
85
|
+
--ec-color-cobalt-8: #{$cobalt-8};
|
86
|
+
|
87
|
+
--ec-color-aqua-1: #{$aqua-1};
|
88
|
+
--ec-color-aqua-2: #{$aqua-2};
|
89
|
+
--ec-color-aqua-3: #{$aqua-3};
|
90
|
+
--ec-color-aqua-4: #{$aqua-4};
|
91
|
+
--ec-color-aqua-5: #{$aqua-5};
|
92
|
+
--ec-color-aqua-6: #{$aqua-6};
|
93
|
+
--ec-color-aqua-7: #{$aqua-7};
|
94
|
+
--ec-color-aqua-8: #{$aqua-8};
|
95
|
+
|
96
|
+
--ec-color-pink-1: #{$pink-1};
|
97
|
+
--ec-color-pink-2: #{$pink-2};
|
98
|
+
--ec-color-pink-3: #{$pink-3};
|
99
|
+
--ec-color-pink-4: #{$pink-4};
|
100
|
+
--ec-color-pink-5: #{$pink-5};
|
101
|
+
--ec-color-pink-6: #{$pink-6};
|
102
|
+
--ec-color-pink-7: #{$pink-7};
|
103
|
+
--ec-color-pink-8: #{$pink-8};
|
104
|
+
|
105
|
+
--ec-color-brand-green: rgb(216, 234, 83);
|
106
|
+
--ec-color-brand-black: rgb(22, 47, 59);
|
107
|
+
|
108
|
+
// Colors
|
109
|
+
--ec-color-primary-dark: var(--ec-color-black);
|
110
|
+
--ec-color-primary-light: var(--ec-color-white);
|
111
|
+
--ec-color-secondary-dark: rgba(26, 26, 35, .66);
|
112
|
+
--ec-color-secondary-light: rgba(255, 255, 255, .6);
|
113
|
+
--ec-color-hint-dark: rgba(26, 26, 35, .38);
|
114
|
+
--ec-color-hint-light: rgba(255, 255, 255, .38);
|
115
|
+
--ec-color-disabled-dark: var(--ec-color-hint-dark);
|
116
|
+
|
117
|
+
// TODO: where is this used and what would the new value be
|
118
|
+
--ec-color-shadow: rgba(26, 26, 35, .1);
|
119
|
+
// TODO: where is this used and what would the new value be
|
120
|
+
--ec-color-shadow-overlay: rgba(26, 26, 35, .2);
|
121
|
+
|
122
|
+
--ec-color-interactive: var(--ec-color-cobalt-6);
|
123
|
+
--ec-color-link: var(--ec-color-interactive);
|
124
|
+
--ec-color-link-light: var(--ec-color-blue-2);
|
125
|
+
|
126
|
+
--ec-color-info: var(--ec-color-cobalt-6);
|
127
|
+
--ec-color-success: var(--ec-color-green-6);
|
128
|
+
// Deprecated - use ec-color-success
|
129
|
+
--ec-color-good: var(--ec-color-success);
|
130
|
+
--ec-color-caution: var(--ec-color-yellow-8);
|
131
|
+
--ec-color-danger: var(--ec-color-red-7);
|
132
|
+
// Deprecated - use ec-color-danger
|
133
|
+
--ec-color-bad: var(--ec-color-danger);
|
134
|
+
--ec-color-accent: var(--ec-color-purple-6);
|
135
|
+
|
136
|
+
// TODO: where is this used and what would the new value be
|
137
|
+
--ec-color-control-invalid: var(--ec-color-caution);
|
138
|
+
|
139
|
+
// TODO: where is this used and what would the new value be
|
140
|
+
--ec-color-accrual: #{$ec-color-accrual};
|
141
|
+
|
142
|
+
--ec-color-tour-title: var(--ec-color-primary-light);
|
143
|
+
|
144
|
+
--ec-background-color: rgb(255, 255, 255);
|
145
|
+
--ec-background-color-overlay: rgba(255, 255, 255, .7);
|
146
|
+
--ec-background-color-body: rgb(241, 243, 244);
|
147
|
+
--ec-background-color-body-overlay: rgba(241, 243, 244, .7);
|
148
|
+
--ec-background-color-dark: rgb(26, 26, 35);
|
149
|
+
--ec-background-color-dialog: rgba(26, 26, 35, .5);
|
150
|
+
--ec-background-color-dialog-stacked: rgba(26, 26, 35, .25);
|
151
|
+
--ec-background-color-tour: var(--ec-color-gray-8);
|
152
|
+
--ec-background-splash: radial-gradient(104.77% 95.14% at 90.16% 85.25%, rgba(113,235,111,0.60) 0%, rgba(255, 255, 255, 0) 100%),
|
153
|
+
radial-gradient(156.88% 63.71% at 8.4% 78.12%, rgba(219, 141, 255, 0.60) 0%, rgba(255, 255, 255, 0) 100%),
|
154
|
+
radial-gradient(265.09% 182.17% at 24.49% 5.63%, rgba(0, 87, 255, 0.60) 0%, rgba(255, 255, 255, 0) 100%), #FFF;
|
155
|
+
--ec-background-color-detail: rgba(26, 26, 35, .03);
|
156
|
+
--ec-background-color-disabled: rgba(26,26,35, .1);
|
157
|
+
--ec-background-color-hover: rgb(195, 212, 247);
|
158
|
+
--ec-background-color-selected: rgb(225, 233, 249);
|
159
|
+
|
160
|
+
--ec-background-color-info: rgb(218, 229, 251);
|
161
|
+
--ec-background-color-success: rgb(227, 251, 214);
|
162
|
+
--ec-background-color-caution: rgb(255, 249, 195);
|
163
|
+
--ec-background-color-danger: rgb(255, 225, 231);
|
164
|
+
--ec-background-color-accent: rgb(237, 220, 255);
|
165
|
+
--ec-background-color-promo: linear-gradient(78deg, #4B0793 0%, #A572DC 100%);
|
166
|
+
--ec-background-color-control: var(--ec-background-color);
|
167
|
+
|
168
|
+
// Shadows
|
169
|
+
--ec-box-shadow: 0px .125rem 1rem var(--ec-color-shadow);
|
170
|
+
--ec-box-shadow-overlay: 0px .0625rem .5rem var(--ec-color-shadow-overlay);
|
171
|
+
|
172
|
+
// Borders
|
173
|
+
--ec-border-color: #D6D6D7;
|
174
|
+
--ec-border-color-dark: #383840;
|
175
|
+
--ec-border-color-hint: var(--ec-color-gray-1);
|
176
|
+
--ec-border-color-control: var(--ec-color-gray-4);
|
177
|
+
--ec-border-color-control-disabled: var(--ec-border-color-control);
|
178
|
+
--ec-border-color-control-readonly: transparent;
|
179
|
+
|
180
|
+
--ec-border-radius: .25rem;
|
181
|
+
--ec-border-radius-card: .375rem;
|
182
|
+
--ec-border-radius-dialog: .5rem;
|
183
|
+
--ec-border-color-focus: var(--ec-color-interactive);
|
184
|
+
--ec-border-width: 1px;
|
185
|
+
|
186
|
+
// Fonts
|
187
|
+
--ec-font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Oxygen", "Ubuntu", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
188
|
+
--ec-font-family-monospace: "Consolas", "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Monaco", "Courier New", Courier, monospace;
|
189
|
+
|
190
|
+
--ec-font-size: .875rem;
|
191
|
+
--ec-font-size-body: 1rem;
|
192
|
+
--ec-font-size-label: .75rem;
|
193
|
+
--ec-font-size-action: .875rem;
|
194
|
+
--ec-font-size-title: 1.25rem;
|
195
|
+
--ec-font-size-icon: 1rem;
|
196
|
+
--ec-font-size-tiny: .625rem;
|
197
|
+
|
198
|
+
--ec-font-weight-bold: bold;
|
199
|
+
--ec-font-weight-normal: normal;
|
200
|
+
|
201
|
+
// Z-indexes
|
202
|
+
--ec-z-index-sticky-header: 3;
|
203
|
+
--ec-z-index-sticky-page-header: 10;
|
204
|
+
--ec-z-index-overlay: 20;
|
205
|
+
--ec-z-index-splitter: 30;
|
206
|
+
--ec-z-index-navbar: 40;
|
207
|
+
--ec-z-index-popup: 50;
|
208
|
+
--ec-z-index-dialog: 60;
|
209
|
+
--ec-z-index-toast: 70;
|
210
|
+
|
211
|
+
// Form Controls
|
212
|
+
--ec-form-control-background-color: var(--ec-background-color);
|
213
|
+
--ec-form-control-color: var(--ec-color-primary-dark);
|
214
|
+
--ec-form-control-color-placeholder: var(--ec-color-hint-dark);
|
215
|
+
--ec-form-control-background-color-selection: var(--ec-color-interactive);
|
216
|
+
--ec-form-control-color-selection: var(--ec-color-primary-light);
|
217
|
+
--ec-form-control-border-color: var(--ec-color-gray-4);
|
218
|
+
--ec-form-control-border-radius: var(--ec-border-radius);
|
219
|
+
--ec-form-control-font-size: var(--ec-font-size-body);
|
220
|
+
--ec-form-control-border-color-focus: var(--ec-background-color);
|
221
|
+
--ec-form-control-box-shadow-focus: 0 0 0 2px var(--ec-color-interactive);
|
222
|
+
--ec-form-control-background-color-invalid: var(--ec-background-color-caution);
|
223
|
+
--ec-form-control-color-invalid: var(--ec-color-primary-dark);
|
224
|
+
--ec-form-control-border-color-invalid: var(--ec-color-caution);
|
225
|
+
--ec-form-control-background-color-disabled: var(--ec-background-color-disabled);
|
226
|
+
--ec-form-control-color-disabled: var(--ec-color-primary-dark);
|
227
|
+
--ec-form-control-border-color-disabled: var(--ec-color-gray-4);
|
228
|
+
--ec-form-control-opacity-disabled: .6;
|
229
|
+
--ec-form-control-background-color-readonly: var(--ec-background-color-disabled);
|
230
|
+
--ec-form-control-color-readonly: var(--ec-color-primary-dark);
|
231
|
+
--ec-form-control-border-color-readonly: var(--ec-color-gray-4);
|
232
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
$icon-url-prefix: 'data:image/svg+xml;charset=utf8,';
|
2
|
+
|
3
|
+
// Deprecated SCSS variables and functions for legacy background-image icons.
|
4
|
+
$icon-color-base: rgba(26, 26, 35, .66);
|
5
|
+
$required-icon: none !default; // Unused variable. Need to keep reference for backwards compatability. Overridden for ng1 controls in energycap repo.
|
6
|
+
$invalid-icon: none !default; // Unused variable. Need to keep reference for backwards compatability. Overridden for ng1 controls in energycap repo.
|
7
|
+
|
8
|
+
// Unused function. Need to keep reference for backwards compatability. Overridden for ng1 controls in energycap repo.
|
9
|
+
@function pending-icon() {
|
10
|
+
@return '';
|
11
|
+
}
|
12
|
+
|
13
|
+
// Needed for backwards compatablity of ng1 form controls in energycap repo
|
14
|
+
@mixin icon-bg-image(
|
15
|
+
$icon,
|
16
|
+
$position: 0 50%,
|
17
|
+
$size: 2rem 2rem,
|
18
|
+
$repeat: no-repeat
|
19
|
+
) {
|
20
|
+
background-image: $icon;
|
21
|
+
background-repeat: $repeat;
|
22
|
+
background-position: $position;
|
23
|
+
background-size: $size;
|
24
|
+
}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
// Bootstrap Grid
|
2
|
+
// TODO: extract only classes we need. Keeping mostly for backwards compatibility with EnergyCAP Version 7
|
3
|
+
@import 'bootstrap/dist/css/bootstrap-grid.min';
|
4
|
+
@media (min-width: 1024px) {
|
5
|
+
.container {
|
6
|
+
max-width: 100%;
|
7
|
+
}
|
8
|
+
}
|
9
|
+
|
10
|
+
// Override bootstrap's default column padding to 8px
|
11
|
+
.container,
|
12
|
+
.container-fluid,
|
13
|
+
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3,
|
14
|
+
.col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto,
|
15
|
+
.col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12,
|
16
|
+
.col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6,
|
17
|
+
.col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md,
|
18
|
+
.col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2,
|
19
|
+
.col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7,
|
20
|
+
.col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1,
|
21
|
+
.col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3,
|
22
|
+
.col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8,
|
23
|
+
.col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10,
|
24
|
+
.col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4,
|
25
|
+
.col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9,
|
26
|
+
.col-xl-auto {
|
27
|
+
padding-right: .5rem;
|
28
|
+
padding-left: .5rem;
|
29
|
+
}
|
30
|
+
|
31
|
+
.row {
|
32
|
+
margin-right: -.5rem;
|
33
|
+
margin-left: -.5rem;
|
34
|
+
}
|
@@ -0,0 +1,323 @@
|
|
1
|
+
/*!
|
2
|
+
* Bootstrap Reboot v4.1.3 (https://getbootstrap.com/)
|
3
|
+
* Copyright 2011-2018 The Bootstrap Authors
|
4
|
+
* Copyright 2011-2018 Twitter, Inc.
|
5
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
6
|
+
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
7
|
+
*/
|
8
|
+
*,
|
9
|
+
*::before,
|
10
|
+
*::after {
|
11
|
+
box-sizing: border-box;
|
12
|
+
}
|
13
|
+
|
14
|
+
html {
|
15
|
+
font-family: sans-serif;
|
16
|
+
line-height: 1.15;
|
17
|
+
-webkit-text-size-adjust: 100%;
|
18
|
+
-ms-overflow-style: scrollbar;
|
19
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
20
|
+
}
|
21
|
+
|
22
|
+
@-ms-viewport {
|
23
|
+
width: device-width;
|
24
|
+
}
|
25
|
+
|
26
|
+
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
|
27
|
+
display: block;
|
28
|
+
}
|
29
|
+
|
30
|
+
body {
|
31
|
+
margin: 0;
|
32
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, Noto Sans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
33
|
+
font-size: 1rem;
|
34
|
+
font-weight: 400;
|
35
|
+
line-height: 1.5;
|
36
|
+
color: #212529;
|
37
|
+
text-align: left;
|
38
|
+
background-color: #fff;
|
39
|
+
}
|
40
|
+
|
41
|
+
[tabindex="-1"]:focus {
|
42
|
+
outline: 0 !important;
|
43
|
+
}
|
44
|
+
|
45
|
+
hr {
|
46
|
+
box-sizing: content-box;
|
47
|
+
height: 0;
|
48
|
+
overflow: visible;
|
49
|
+
}
|
50
|
+
|
51
|
+
h1, h2, h3, h4, h5, h6 {
|
52
|
+
margin-top: 0;
|
53
|
+
margin-bottom: 0.5rem;
|
54
|
+
}
|
55
|
+
|
56
|
+
p {
|
57
|
+
margin-top: 0;
|
58
|
+
margin-bottom: 1rem;
|
59
|
+
}
|
60
|
+
|
61
|
+
abbr[title],
|
62
|
+
abbr[data-original-title] {
|
63
|
+
text-decoration: underline;
|
64
|
+
-webkit-text-decoration: underline dotted;
|
65
|
+
text-decoration: underline dotted;
|
66
|
+
cursor: help;
|
67
|
+
border-bottom: 0;
|
68
|
+
}
|
69
|
+
|
70
|
+
address {
|
71
|
+
margin-bottom: 1rem;
|
72
|
+
font-style: normal;
|
73
|
+
line-height: inherit;
|
74
|
+
}
|
75
|
+
|
76
|
+
ol,
|
77
|
+
ul,
|
78
|
+
dl {
|
79
|
+
margin-top: 0;
|
80
|
+
margin-bottom: 1rem;
|
81
|
+
}
|
82
|
+
|
83
|
+
ol ol,
|
84
|
+
ul ul,
|
85
|
+
ol ul,
|
86
|
+
ul ol {
|
87
|
+
margin-bottom: 0;
|
88
|
+
}
|
89
|
+
|
90
|
+
dt {
|
91
|
+
font-weight: 700;
|
92
|
+
}
|
93
|
+
|
94
|
+
dd {
|
95
|
+
margin-bottom: .5rem;
|
96
|
+
margin-left: 0;
|
97
|
+
}
|
98
|
+
|
99
|
+
blockquote {
|
100
|
+
margin: 0 0 1rem;
|
101
|
+
}
|
102
|
+
|
103
|
+
b,
|
104
|
+
strong {
|
105
|
+
font-weight: bolder;
|
106
|
+
}
|
107
|
+
|
108
|
+
small {
|
109
|
+
font-size: 80%;
|
110
|
+
}
|
111
|
+
|
112
|
+
sub,
|
113
|
+
sup {
|
114
|
+
position: relative;
|
115
|
+
font-size: 75%;
|
116
|
+
line-height: 0;
|
117
|
+
vertical-align: baseline;
|
118
|
+
}
|
119
|
+
|
120
|
+
sub {
|
121
|
+
bottom: -.25em;
|
122
|
+
}
|
123
|
+
|
124
|
+
sup {
|
125
|
+
top: -.5em;
|
126
|
+
}
|
127
|
+
|
128
|
+
a {
|
129
|
+
color: #007bff;
|
130
|
+
text-decoration: none;
|
131
|
+
background-color: transparent;
|
132
|
+
}
|
133
|
+
|
134
|
+
a:hover {
|
135
|
+
color: #0056b3;
|
136
|
+
text-decoration: underline;
|
137
|
+
}
|
138
|
+
|
139
|
+
a:not([href]):not([tabindex]):not(.text-link) {
|
140
|
+
color: inherit;
|
141
|
+
text-decoration: none;
|
142
|
+
}
|
143
|
+
|
144
|
+
a:not([href]):not([tabindex]):not(.text-link):hover, a:not([href]):not([tabindex]):not(.text-link):focus {
|
145
|
+
color: inherit;
|
146
|
+
text-decoration: none;
|
147
|
+
}
|
148
|
+
|
149
|
+
a:not([href]):not([tabindex]):focus {
|
150
|
+
outline: 0;
|
151
|
+
}
|
152
|
+
|
153
|
+
pre,
|
154
|
+
code,
|
155
|
+
kbd,
|
156
|
+
samp {
|
157
|
+
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
158
|
+
font-size: 1em;
|
159
|
+
}
|
160
|
+
|
161
|
+
pre {
|
162
|
+
margin-top: 0;
|
163
|
+
margin-bottom: 1rem;
|
164
|
+
overflow: auto;
|
165
|
+
-ms-overflow-style: scrollbar;
|
166
|
+
}
|
167
|
+
|
168
|
+
figure {
|
169
|
+
margin: 0 0 1rem;
|
170
|
+
}
|
171
|
+
|
172
|
+
img {
|
173
|
+
vertical-align: middle;
|
174
|
+
border-style: none;
|
175
|
+
}
|
176
|
+
|
177
|
+
svg {
|
178
|
+
overflow: hidden;
|
179
|
+
vertical-align: middle;
|
180
|
+
}
|
181
|
+
|
182
|
+
table {
|
183
|
+
border-collapse: collapse;
|
184
|
+
}
|
185
|
+
|
186
|
+
caption {
|
187
|
+
padding-top: 0.75rem;
|
188
|
+
padding-bottom: 0.75rem;
|
189
|
+
color: #6c757d;
|
190
|
+
text-align: left;
|
191
|
+
caption-side: bottom;
|
192
|
+
}
|
193
|
+
|
194
|
+
th {
|
195
|
+
text-align: inherit;
|
196
|
+
}
|
197
|
+
|
198
|
+
label {
|
199
|
+
display: inline-block;
|
200
|
+
margin-bottom: 0.5rem;
|
201
|
+
}
|
202
|
+
|
203
|
+
button {
|
204
|
+
border-radius: 0;
|
205
|
+
}
|
206
|
+
|
207
|
+
button:focus {
|
208
|
+
outline: 1px dotted;
|
209
|
+
outline: 5px auto -webkit-focus-ring-color;
|
210
|
+
}
|
211
|
+
|
212
|
+
input,
|
213
|
+
button,
|
214
|
+
select,
|
215
|
+
optgroup,
|
216
|
+
textarea {
|
217
|
+
margin: 0;
|
218
|
+
font-family: inherit;
|
219
|
+
font-size: inherit;
|
220
|
+
line-height: inherit;
|
221
|
+
}
|
222
|
+
|
223
|
+
button,
|
224
|
+
input {
|
225
|
+
overflow: visible;
|
226
|
+
}
|
227
|
+
|
228
|
+
button,
|
229
|
+
select {
|
230
|
+
text-transform: none;
|
231
|
+
}
|
232
|
+
|
233
|
+
button,
|
234
|
+
[type="button"],
|
235
|
+
[type="reset"],
|
236
|
+
[type="submit"] {
|
237
|
+
-webkit-appearance: button;
|
238
|
+
}
|
239
|
+
|
240
|
+
button::-moz-focus-inner,
|
241
|
+
[type="button"]::-moz-focus-inner,
|
242
|
+
[type="reset"]::-moz-focus-inner,
|
243
|
+
[type="submit"]::-moz-focus-inner {
|
244
|
+
padding: 0;
|
245
|
+
border-style: none;
|
246
|
+
}
|
247
|
+
|
248
|
+
input[type="radio"],
|
249
|
+
input[type="checkbox"] {
|
250
|
+
box-sizing: border-box;
|
251
|
+
padding: 0;
|
252
|
+
}
|
253
|
+
|
254
|
+
input[type="date"],
|
255
|
+
input[type="time"],
|
256
|
+
input[type="datetime-local"],
|
257
|
+
input[type="month"] {
|
258
|
+
-webkit-appearance: listbox;
|
259
|
+
}
|
260
|
+
|
261
|
+
textarea {
|
262
|
+
overflow: auto;
|
263
|
+
resize: vertical;
|
264
|
+
}
|
265
|
+
|
266
|
+
fieldset {
|
267
|
+
min-width: 0;
|
268
|
+
padding: 0;
|
269
|
+
margin: 0;
|
270
|
+
border: 0;
|
271
|
+
}
|
272
|
+
|
273
|
+
legend {
|
274
|
+
display: block;
|
275
|
+
width: 100%;
|
276
|
+
max-width: 100%;
|
277
|
+
padding: 0;
|
278
|
+
margin-bottom: .5rem;
|
279
|
+
font-size: 1.5rem;
|
280
|
+
line-height: inherit;
|
281
|
+
color: inherit;
|
282
|
+
white-space: normal;
|
283
|
+
}
|
284
|
+
|
285
|
+
progress {
|
286
|
+
vertical-align: baseline;
|
287
|
+
}
|
288
|
+
|
289
|
+
[type="number"]::-webkit-inner-spin-button,
|
290
|
+
[type="number"]::-webkit-outer-spin-button {
|
291
|
+
height: auto;
|
292
|
+
}
|
293
|
+
|
294
|
+
[type="search"] {
|
295
|
+
outline-offset: -2px;
|
296
|
+
-webkit-appearance: none;
|
297
|
+
}
|
298
|
+
|
299
|
+
[type="search"]::-webkit-search-decoration {
|
300
|
+
-webkit-appearance: none;
|
301
|
+
}
|
302
|
+
|
303
|
+
::-webkit-file-upload-button {
|
304
|
+
font: inherit;
|
305
|
+
-webkit-appearance: button;
|
306
|
+
}
|
307
|
+
|
308
|
+
output {
|
309
|
+
display: inline-block;
|
310
|
+
}
|
311
|
+
|
312
|
+
summary {
|
313
|
+
display: list-item;
|
314
|
+
cursor: pointer;
|
315
|
+
}
|
316
|
+
|
317
|
+
template {
|
318
|
+
display: none;
|
319
|
+
}
|
320
|
+
|
321
|
+
[hidden] {
|
322
|
+
display: none !important;
|
323
|
+
}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
@import '../mixins/card-base';
|
2
|
+
|
3
|
+
.card {
|
4
|
+
@include card;
|
5
|
+
}
|
6
|
+
|
7
|
+
.card-header {
|
8
|
+
@include card-header;
|
9
|
+
}
|
10
|
+
|
11
|
+
.card-title {
|
12
|
+
@include card-title;
|
13
|
+
}
|
14
|
+
|
15
|
+
.card-footer {
|
16
|
+
@include card-footer;
|
17
|
+
}
|
18
|
+
|
19
|
+
.card-actions {
|
20
|
+
@include card-actions;
|
21
|
+
}
|
@@ -0,0 +1,38 @@
|
|
1
|
+
$fa-font-path: '/assets/webfonts';
|
2
|
+
@import '@fortawesome/fontawesome-pro/scss/solid';
|
3
|
+
@import '../../../../icons/styles/core';
|
4
|
+
|
5
|
+
a[target="_blank"] {
|
6
|
+
&::after {
|
7
|
+
font: var(--fa-font-solid);
|
8
|
+
@extend .fa-solid;
|
9
|
+
content: fa-content('\\' + get-icon-unicode($icons, 'icon-external-link'));
|
10
|
+
margin-left: .125rem;
|
11
|
+
opacity: .5;
|
12
|
+
}
|
13
|
+
|
14
|
+
&.is-map-link {
|
15
|
+
&::after {
|
16
|
+
content: fa-content('\\' + get-icon-unicode($icons, 'icon-map-marker-alt'));
|
17
|
+
}
|
18
|
+
}
|
19
|
+
|
20
|
+
&.is-file-link {
|
21
|
+
&::after {
|
22
|
+
content: fa-content('\\' + get-icon-unicode($icons, 'icon-file-download'));
|
23
|
+
}
|
24
|
+
}
|
25
|
+
|
26
|
+
&.is-image-link {
|
27
|
+
&::after {
|
28
|
+
content: fa-content('\\' + get-icon-unicode($icons, 'icon-file-image'));
|
29
|
+
}
|
30
|
+
}
|
31
|
+
}
|
32
|
+
|
33
|
+
.hide-external-link-icon {
|
34
|
+
&[target="_blank"]::after,
|
35
|
+
[target="_blank"]::after {
|
36
|
+
content: '' !important;
|
37
|
+
}
|
38
|
+
}
|