@covalent/core 4.0.0 → 4.1.0-develop.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -4
- package/breadcrumbs/README.md +21 -17
- package/breadcrumbs/breadcrumb/breadcrumb.component.d.ts +6 -1
- package/breadcrumbs/breadcrumbs.component.d.ts +4 -0
- package/breadcrumbs/breadcrumbs.module.d.ts +8 -0
- package/breadcrumbs/covalent-core-breadcrumbs.d.ts +2 -1
- package/breadcrumbs/package.json +6 -7
- package/breadcrumbs/{public-api.d.ts → public_api.d.ts} +0 -0
- package/common/README.md +3 -0
- package/common/_common-theme.scss +3 -1
- package/common/behaviors/disable-ripple.mixin.d.ts +1 -1
- package/common/behaviors/disabled.mixin.d.ts +1 -1
- package/common/common.module.d.ts +15 -0
- package/common/covalent-core-common.d.ts +2 -3
- package/common/directives/fullscreen/fullscreen.directive.d.ts +3 -0
- package/common/forms/auto-trim/auto-trim.directive.d.ts +3 -0
- package/common/package.json +6 -7
- package/common/pipes/bytes/bytes.pipe.d.ts +3 -0
- package/common/pipes/decimal-bytes/decimal-bytes.pipe.d.ts +3 -0
- package/common/pipes/digits/digits.pipe.d.ts +3 -0
- package/common/pipes/time-ago/time-ago.pipe.d.ts +3 -0
- package/common/pipes/time-difference/time-difference.pipe.d.ts +3 -0
- package/common/pipes/time-until/time-until.pipe.d.ts +3 -0
- package/common/pipes/truncate/truncate.pipe.d.ts +4 -1
- package/common/{public-api.d.ts → public_api.d.ts} +0 -0
- package/common/services/icon.service.d.ts +3 -0
- package/common/services/router-path.service.d.ts +3 -0
- package/common/styles/font/README.md +4 -2
- package/covalent-core.d.ts +2 -1
- package/dialogs/README.md +38 -30
- package/dialogs/_dialog-theme.scss +1 -0
- package/dialogs/alert-dialog/alert-dialog.component.d.ts +6 -3
- package/dialogs/confirm-dialog/confirm-dialog.component.d.ts +5 -2
- package/dialogs/covalent-core-dialogs.d.ts +2 -2
- package/dialogs/dialog.component.d.ts +9 -0
- package/dialogs/dialogs.module.d.ts +17 -0
- package/dialogs/package.json +6 -7
- package/dialogs/prompt-dialog/prompt-dialog.component.d.ts +6 -3
- package/dialogs/{public-api.d.ts → public_api.d.ts} +1 -0
- package/dialogs/services/dialog.service.d.ts +3 -0
- package/dialogs/src/README.md +223 -0
- package/dialogs/window-dialog/window-dialog.component.d.ts +8 -5
- package/dynamic-menu/README.md +6 -6
- package/dynamic-menu/covalent-core-dynamic-menu.d.ts +2 -2
- package/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.d.ts +4 -1
- package/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.d.ts +4 -1
- package/dynamic-menu/dynamic-menu.component.d.ts +4 -22
- package/dynamic-menu/dynamic-menu.menu.d.ts +22 -0
- package/dynamic-menu/dynamic-menu.module.d.ts +13 -0
- package/dynamic-menu/package.json +6 -7
- package/dynamic-menu/public_api.d.ts +2 -0
- package/esm2020/breadcrumbs/breadcrumb/breadcrumb.component.mjs +92 -0
- package/esm2020/breadcrumbs/breadcrumbs.component.mjs +134 -0
- package/esm2020/breadcrumbs/breadcrumbs.module.mjs +20 -0
- package/esm2020/breadcrumbs/covalent-core-breadcrumbs.mjs +5 -0
- package/esm2020/breadcrumbs/public_api.mjs +4 -0
- package/esm2020/common/animations/bounce/bounce.animation.mjs +70 -0
- package/esm2020/common/animations/collapse/collapse.animation.mjs +51 -0
- package/esm2020/common/animations/common/interfaces.mjs +2 -0
- package/esm2020/common/animations/fade/fadeInOut.animation.mjs +37 -0
- package/esm2020/common/animations/flash/flash.animation.mjs +34 -0
- package/esm2020/common/animations/headshake/headshake.animation.mjs +47 -0
- package/esm2020/common/animations/jello/jello.animation.mjs +59 -0
- package/esm2020/common/animations/pulse/pulse.animation.mjs +32 -0
- package/esm2020/common/animations/rotate/rotate.animation.mjs +30 -0
- package/esm2020/common/behaviors/control-value-accesor.mixin.mjs +41 -0
- package/esm2020/common/behaviors/disable-ripple.mixin.mjs +24 -0
- package/esm2020/common/behaviors/disabled.mixin.mjs +24 -0
- package/esm2020/common/common.module.mjs +63 -0
- package/esm2020/common/covalent-core-common.mjs +5 -0
- package/esm2020/common/directives/fullscreen/fullscreen.directive.mjs +85 -0
- package/esm2020/common/forms/auto-trim/auto-trim.directive.mjs +36 -0
- package/esm2020/common/forms/validators/validators.mjs +29 -0
- package/esm2020/common/functions/clipboard.mjs +23 -0
- package/esm2020/common/functions/convert.mjs +84 -0
- package/esm2020/common/functions/download.mjs +75 -0
- package/esm2020/common/functions/file.mjs +16 -0
- package/esm2020/common/pipes/bytes/bytes.pipe.mjs +42 -0
- package/esm2020/common/pipes/decimal-bytes/decimal-bytes.pipe.mjs +42 -0
- package/esm2020/common/pipes/digits/digits.pipe.mjs +39 -0
- package/esm2020/common/pipes/time-ago/time-ago.pipe.mjs +72 -0
- package/esm2020/common/pipes/time-difference/time-difference.pipe.mjs +51 -0
- package/esm2020/common/pipes/time-until/time-until.pipe.mjs +72 -0
- package/esm2020/common/pipes/truncate/truncate.pipe.mjs +27 -0
- package/esm2020/common/public_api.mjs +39 -0
- package/esm2020/common/services/icon.service.mjs +1089 -0
- package/esm2020/common/services/router-path.service.mjs +29 -0
- package/esm2020/covalent-core.mjs +5 -0
- package/esm2020/dialogs/alert-dialog/alert-dialog.component.mjs +23 -0
- package/esm2020/dialogs/confirm-dialog/confirm-dialog.component.mjs +28 -0
- package/esm2020/dialogs/covalent-core-dialogs.mjs +5 -0
- package/esm2020/dialogs/dialog.component.mjs +56 -0
- package/esm2020/dialogs/dialogs.module.mjs +89 -0
- package/esm2020/dialogs/prompt-dialog/prompt-dialog.component.mjs +46 -0
- package/esm2020/dialogs/public_api.mjs +9 -0
- package/esm2020/dialogs/resizable-draggable-dialog/resizable-draggable-dialog.mjs +216 -0
- package/esm2020/dialogs/services/dialog.service.mjs +171 -0
- package/esm2020/dialogs/window-dialog/window-dialog.component.mjs +38 -0
- package/esm2020/dynamic-menu/covalent-core-dynamic-menu.mjs +5 -0
- package/esm2020/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.mjs +30 -0
- package/esm2020/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.mjs +24 -0
- package/esm2020/dynamic-menu/dynamic-menu.component.mjs +28 -0
- package/esm2020/dynamic-menu/dynamic-menu.menu.mjs +2 -0
- package/esm2020/dynamic-menu/dynamic-menu.module.mjs +57 -0
- package/esm2020/dynamic-menu/public_api.mjs +6 -0
- package/esm2020/file/covalent-core-file.mjs +5 -0
- package/esm2020/file/directives/file-drop.directive.mjs +147 -0
- package/esm2020/file/directives/file-select.directive.mjs +77 -0
- package/esm2020/file/file-input/file-input.component.mjs +110 -0
- package/esm2020/file/file-upload/file-upload.component.mjs +174 -0
- package/esm2020/file/file.module.mjs +58 -0
- package/esm2020/file/public_api.mjs +7 -0
- package/esm2020/file/services/file.service.mjs +64 -0
- package/esm2020/json-formatter/collapse.animation.mjs +51 -0
- package/esm2020/json-formatter/covalent-core-json-formatter.mjs +5 -0
- package/esm2020/json-formatter/json-formatter.component.mjs +217 -0
- package/esm2020/json-formatter/json-formatter.module.mjs +20 -0
- package/esm2020/json-formatter/public_api.mjs +3 -0
- package/esm2020/layout/covalent-core-layout.mjs +5 -0
- package/esm2020/layout/layout-card-over/layout-card-over.component.mjs +40 -0
- package/esm2020/layout/layout-footer/layout-footer.component.mjs +33 -0
- package/esm2020/layout/layout-manage-list/layout-manage-list.component.mjs +93 -0
- package/esm2020/layout/layout-manage-list/layout-manage-list.directives.mjs +84 -0
- package/esm2020/layout/layout-nav/layout-nav.component.mjs +50 -0
- package/esm2020/layout/layout-nav-list/layout-nav-list.component.mjs +128 -0
- package/esm2020/layout/layout-nav-list/layout-nav-list.directives.mjs +84 -0
- package/esm2020/layout/layout-toggle.class.mjs +92 -0
- package/esm2020/layout/layout.component.mjs +92 -0
- package/esm2020/layout/layout.directives.mjs +85 -0
- package/esm2020/layout/layout.module.mjs +117 -0
- package/esm2020/layout/navigation-drawer/navigation-drawer.component.mjs +161 -0
- package/esm2020/layout/public_api.mjs +13 -0
- package/esm2020/menu/covalent-core-menu.mjs +5 -0
- package/esm2020/menu/menu.component.mjs +12 -0
- package/esm2020/menu/menu.module.mjs +21 -0
- package/esm2020/menu/public_api.mjs +3 -0
- package/esm2020/message/collapse.animation.mjs +51 -0
- package/esm2020/message/covalent-core-message.mjs +5 -0
- package/esm2020/message/message.component.mjs +203 -0
- package/esm2020/message/message.module.mjs +25 -0
- package/esm2020/message/public_api.mjs +3 -0
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/search/covalent-core-search.mjs +5 -0
- package/esm2020/search/public_api.mjs +4 -0
- package/esm2020/search/search-box/search-box.component.mjs +194 -0
- package/esm2020/search/search-input/search-input.component.mjs +203 -0
- package/esm2020/search/search.module.mjs +39 -0
- package/esm2020/side-sheet/covalent-core-side-sheet.mjs +5 -0
- package/esm2020/side-sheet/public_api.mjs +6 -0
- package/esm2020/side-sheet/side-sheet-container.mjs +274 -0
- package/esm2020/side-sheet/side-sheet-ref.mjs +21 -0
- package/esm2020/side-sheet/side-sheet.animation.mjs +12 -0
- package/esm2020/side-sheet/side-sheet.config.mjs +4 -0
- package/esm2020/side-sheet/side-sheet.content-directives.mjs +201 -0
- package/esm2020/side-sheet/side-sheet.mjs +221 -0
- package/esm2020/side-sheet/side-sheet.module.mjs +45 -0
- package/esm2020/user-profile/covalent-core-user-profile.mjs +5 -0
- package/esm2020/user-profile/public_api.mjs +4 -0
- package/esm2020/user-profile/user-profile-menu/user-profile-menu.component.mjs +24 -0
- package/esm2020/user-profile/user-profile.component.mjs +19 -0
- package/esm2020/user-profile/user-profile.module.mjs +44 -0
- package/fesm2015/covalent-core-breadcrumbs.mjs +246 -0
- package/fesm2015/covalent-core-breadcrumbs.mjs.map +1 -0
- package/fesm2015/covalent-core-common.mjs +2281 -0
- package/fesm2015/covalent-core-common.mjs.map +1 -0
- package/fesm2015/covalent-core-dialogs.mjs +639 -0
- package/fesm2015/covalent-core-dialogs.mjs.map +1 -0
- package/fesm2015/covalent-core-dynamic-menu.mjs +128 -0
- package/fesm2015/covalent-core-dynamic-menu.mjs.map +1 -0
- package/fesm2015/covalent-core-file.mjs +613 -0
- package/fesm2015/covalent-core-file.mjs.map +1 -0
- package/fesm2015/covalent-core-json-formatter.mjs +298 -0
- package/fesm2015/covalent-core-json-formatter.mjs.map +1 -0
- package/fesm2015/covalent-core-layout.mjs +1024 -0
- package/fesm2015/covalent-core-layout.mjs.map +1 -0
- package/fesm2015/covalent-core-menu.mjs +37 -0
- package/fesm2015/covalent-core-menu.mjs.map +1 -0
- package/fesm2015/covalent-core-message.mjs +284 -0
- package/fesm2015/covalent-core-message.mjs.map +1 -0
- package/fesm2015/covalent-core-search.mjs +428 -0
- package/fesm2015/covalent-core-search.mjs.map +1 -0
- package/fesm2015/covalent-core-side-sheet.mjs +762 -0
- package/fesm2015/covalent-core-side-sheet.mjs.map +1 -0
- package/fesm2015/covalent-core-user-profile.mjs +86 -0
- package/fesm2015/covalent-core-user-profile.mjs.map +1 -0
- package/fesm2015/covalent-core.mjs +4 -0
- package/fesm2015/covalent-core.mjs.map +1 -0
- package/fesm2020/covalent-core-breadcrumbs.mjs +246 -0
- package/fesm2020/covalent-core-breadcrumbs.mjs.map +1 -0
- package/{fesm2015/covalent-core-common.js → fesm2020/covalent-core-common.mjs} +317 -813
- package/fesm2020/covalent-core-common.mjs.map +1 -0
- package/fesm2020/covalent-core-dialogs.mjs +634 -0
- package/fesm2020/covalent-core-dialogs.mjs.map +1 -0
- package/fesm2020/covalent-core-dynamic-menu.mjs +128 -0
- package/fesm2020/covalent-core-dynamic-menu.mjs.map +1 -0
- package/fesm2020/covalent-core-file.mjs +607 -0
- package/fesm2020/covalent-core-file.mjs.map +1 -0
- package/fesm2020/covalent-core-json-formatter.mjs +290 -0
- package/fesm2020/covalent-core-json-formatter.mjs.map +1 -0
- package/fesm2020/covalent-core-layout.mjs +1000 -0
- package/fesm2020/covalent-core-layout.mjs.map +1 -0
- package/fesm2020/covalent-core-menu.mjs +37 -0
- package/fesm2020/covalent-core-menu.mjs.map +1 -0
- package/fesm2020/covalent-core-message.mjs +282 -0
- package/fesm2020/covalent-core-message.mjs.map +1 -0
- package/fesm2020/covalent-core-search.mjs +425 -0
- package/fesm2020/covalent-core-search.mjs.map +1 -0
- package/fesm2020/covalent-core-side-sheet.mjs +757 -0
- package/fesm2020/covalent-core-side-sheet.mjs.map +1 -0
- package/fesm2020/covalent-core-user-profile.mjs +86 -0
- package/fesm2020/covalent-core-user-profile.mjs.map +1 -0
- package/fesm2020/covalent-core.mjs +4 -0
- package/fesm2020/covalent-core.mjs.map +1 -0
- package/file/_file-theme.scss +3 -1
- package/file/covalent-core-file.d.ts +2 -1
- package/file/directives/file-drop.directive.d.ts +8 -6
- package/file/directives/file-select.directive.d.ts +5 -2
- package/file/file-input/file-input.component.d.ts +10 -5
- package/file/file-upload/file-upload.component.d.ts +18 -8
- package/file/file.module.d.ts +13 -0
- package/file/package.json +6 -7
- package/file/{public-api.d.ts → public_api.d.ts} +0 -0
- package/file/services/file.service.d.ts +3 -0
- package/file/{file-input → src/file-input}/README.md +46 -37
- package/file/{file-upload → src/file-upload}/README.md +36 -27
- package/json-formatter/README.md +8 -8
- package/json-formatter/_json-formatter-theme.scss +10 -0
- package/json-formatter/collapse.animation.d.ts +24 -0
- package/json-formatter/covalent-core-json-formatter.d.ts +2 -1
- package/json-formatter/json-formatter.component.d.ts +7 -4
- package/json-formatter/json-formatter.module.d.ts +8 -0
- package/json-formatter/package.json +6 -7
- package/json-formatter/{public-api.d.ts → public_api.d.ts} +0 -0
- package/layout/README.md +48 -50
- package/layout/_layout-theme.scss +12 -0
- package/layout/covalent-core-layout.d.ts +2 -1
- package/layout/layout-card-over/layout-card-over.component.d.ts +6 -3
- package/layout/layout-footer/layout-footer.component.d.ts +6 -3
- package/layout/layout-manage-list/layout-manage-list.component.d.ts +7 -4
- package/layout/layout-manage-list/layout-manage-list.directives.d.ts +9 -2
- package/layout/layout-nav/layout-nav.component.d.ts +8 -5
- package/layout/layout-nav-list/layout-nav-list.component.d.ts +12 -9
- package/layout/layout-nav-list/layout-nav-list.directives.d.ts +9 -2
- package/layout/layout-toggle.class.d.ts +4 -1
- package/layout/layout.component.d.ts +7 -4
- package/layout/layout.directives.d.ts +9 -2
- package/layout/layout.module.d.ts +23 -0
- package/layout/navigation-drawer/navigation-drawer.component.d.ts +17 -10
- package/layout/package.json +6 -7
- package/layout/{public-api.d.ts → public_api.d.ts} +0 -0
- package/layout/{layout-card-over → src/layout-card-over}/README.md +19 -17
- package/layout/{layout-manage-list → src/layout-manage-list}/README.md +24 -28
- package/layout/src/layout-nav/README.md +50 -0
- package/layout/{layout-nav-list → src/layout-nav-list}/README.md +44 -40
- package/menu/covalent-core-menu.d.ts +2 -1
- package/menu/menu.component.d.ts +3 -0
- package/menu/menu.module.d.ts +8 -0
- package/menu/package.json +6 -7
- package/menu/{public-api.d.ts → public_api.d.ts} +0 -0
- package/message/README.md +26 -18
- package/message/_message-theme.scss +3 -0
- package/message/collapse.animation.d.ts +24 -0
- package/message/covalent-core-message.d.ts +2 -1
- package/message/message.component.d.ts +9 -4
- package/message/message.module.d.ts +7 -0
- package/message/package.json +6 -7
- package/message/{public-api.d.ts → public_api.d.ts} +0 -0
- package/package.json +129 -37
- package/{index.d.ts → public_api.d.ts} +0 -0
- package/search/README.md +74 -73
- package/search/covalent-core-search.d.ts +2 -1
- package/search/package.json +6 -7
- package/search/{public-api.d.ts → public_api.d.ts} +0 -0
- package/search/search-box/search-box.component.d.ts +12 -5
- package/search/search-input/search-input.component.d.ts +12 -5
- package/search/search.module.d.ts +11 -0
- package/search/src/search-box/README.md +73 -0
- package/search/src/search-input/README.md +74 -0
- package/side-sheet/README.md +3 -5
- package/side-sheet/{side-sheet.theme.scss → _side-sheet.theme.scss} +0 -0
- package/side-sheet/covalent-core-side-sheet.d.ts +2 -3
- package/side-sheet/package.json +6 -7
- package/side-sheet/{public-api.d.ts → public_api.d.ts} +0 -0
- package/side-sheet/side-sheet-container.d.ts +21 -5
- package/side-sheet/side-sheet.content-directives.d.ts +23 -6
- package/side-sheet/side-sheet.d.ts +7 -2
- package/side-sheet/side-sheet.module.d.ts +9 -0
- package/user-profile/README.md +5 -5
- package/user-profile/covalent-core-user-profile.d.ts +2 -1
- package/user-profile/package.json +6 -7
- package/user-profile/user-profile-menu/user-profile-menu.component.d.ts +5 -2
- package/user-profile/user-profile.component.d.ts +5 -2
- package/user-profile/user-profile.module.d.ts +12 -0
- package/breadcrumbs/breadcrumb/breadcrumb.component.scss +0 -22
- package/breadcrumbs/breadcrumbs.component.scss +0 -7
- package/breadcrumbs/covalent-core-breadcrumbs.metadata.json +0 -1
- package/breadcrumbs/index.d.ts +0 -1
- package/bundles/covalent-core-breadcrumbs.umd.js +0 -490
- package/bundles/covalent-core-breadcrumbs.umd.js.map +0 -1
- package/bundles/covalent-core-breadcrumbs.umd.min.js +0 -2
- package/bundles/covalent-core-breadcrumbs.umd.min.js.map +0 -1
- package/bundles/covalent-core-common.umd.js +0 -3188
- package/bundles/covalent-core-common.umd.js.map +0 -1
- package/bundles/covalent-core-common.umd.min.js +0 -17
- package/bundles/covalent-core-common.umd.min.js.map +0 -1
- package/bundles/covalent-core-dialogs.umd.js +0 -1318
- package/bundles/covalent-core-dialogs.umd.js.map +0 -1
- package/bundles/covalent-core-dialogs.umd.min.js +0 -2
- package/bundles/covalent-core-dialogs.umd.min.js.map +0 -1
- package/bundles/covalent-core-dynamic-menu.umd.js +0 -215
- package/bundles/covalent-core-dynamic-menu.umd.js.map +0 -1
- package/bundles/covalent-core-dynamic-menu.umd.min.js +0 -2
- package/bundles/covalent-core-dynamic-menu.umd.min.js.map +0 -1
- package/bundles/covalent-core-file.umd.js +0 -1211
- package/bundles/covalent-core-file.umd.js.map +0 -1
- package/bundles/covalent-core-file.umd.min.js +0 -17
- package/bundles/covalent-core-file.umd.min.js.map +0 -1
- package/bundles/covalent-core-json-formatter.umd.js +0 -408
- package/bundles/covalent-core-json-formatter.umd.js.map +0 -1
- package/bundles/covalent-core-json-formatter.umd.min.js +0 -2
- package/bundles/covalent-core-json-formatter.umd.min.js.map +0 -1
- package/bundles/covalent-core-layout.umd.js +0 -2084
- package/bundles/covalent-core-layout.umd.js.map +0 -1
- package/bundles/covalent-core-layout.umd.min.js +0 -17
- package/bundles/covalent-core-layout.umd.min.js.map +0 -1
- package/bundles/covalent-core-menu.umd.js +0 -69
- package/bundles/covalent-core-menu.umd.js.map +0 -1
- package/bundles/covalent-core-menu.umd.min.js +0 -2
- package/bundles/covalent-core-menu.umd.min.js.map +0 -1
- package/bundles/covalent-core-message.umd.js +0 -375
- package/bundles/covalent-core-message.umd.js.map +0 -1
- package/bundles/covalent-core-message.umd.min.js +0 -2
- package/bundles/covalent-core-message.umd.min.js.map +0 -1
- package/bundles/covalent-core-search.umd.js +0 -877
- package/bundles/covalent-core-search.umd.js.map +0 -1
- package/bundles/covalent-core-search.umd.min.js +0 -16
- package/bundles/covalent-core-search.umd.min.js.map +0 -1
- package/bundles/covalent-core-side-sheet.umd.js +0 -1458
- package/bundles/covalent-core-side-sheet.umd.js.map +0 -1
- package/bundles/covalent-core-side-sheet.umd.min.js +0 -16
- package/bundles/covalent-core-side-sheet.umd.min.js.map +0 -1
- package/bundles/covalent-core-user-profile.umd.js +0 -116
- package/bundles/covalent-core-user-profile.umd.js.map +0 -1
- package/bundles/covalent-core-user-profile.umd.min.js +0 -2
- package/bundles/covalent-core-user-profile.umd.min.js.map +0 -1
- package/bundles/covalent-core.umd.js +0 -9
- package/bundles/covalent-core.umd.js.map +0 -1
- package/bundles/covalent-core.umd.min.js +0 -2
- package/bundles/covalent-core.umd.min.js.map +0 -1
- package/common/covalent-core-common.metadata.json +0 -1
- package/common/index.d.ts +0 -1
- package/common/material-icons.css +0 -98
- package/common/material-icons.css.map +0 -1
- package/common/material-icons.scss +0 -3
- package/common/platform.css +0 -15424
- package/common/platform.css.map +0 -1
- package/common/platform.scss +0 -7
- package/common/styles/_elevation.scss +0 -280
- package/common/styles/_layout.scss +0 -603
- package/common/styles/_palette-dark.scss +0 -326
- package/common/styles/_palette-light.scss +0 -637
- package/common/styles/_rtl.scss +0 -28
- package/common/styles/_styles.scss +0 -10
- package/common/styles/_theme-functions.scss +0 -25
- package/common/styles/_typography-functions.scss +0 -35
- package/common/styles/_variables.scss +0 -98
- package/common/styles/colors/_colors-dark.scss +0 -1072
- package/common/styles/colors/_colors-light.scss +0 -2487
- package/common/styles/colors/_colors.scss +0 -7
- package/common/styles/core/_button.scss +0 -59
- package/common/styles/core/_card.scss +0 -164
- package/common/styles/core/_content.scss +0 -42
- package/common/styles/core/_core.scss +0 -23
- package/common/styles/core/_divider.scss +0 -15
- package/common/styles/core/_icons.scss +0 -20
- package/common/styles/core/_list.scss +0 -8
- package/common/styles/core/_sidenav.scss +0 -20
- package/common/styles/core/_structure.scss +0 -128
- package/common/styles/core/_toolbar.scss +0 -46
- package/common/styles/core/_whiteframe.scss +0 -130
- package/common/styles/font/MaterialIcons-Regular-v48.woff2 +0 -0
- package/common/styles/font/_font.scss +0 -93
- package/common/styles/utilities/_general.scss +0 -51
- package/common/styles/utilities/_pad.scss +0 -36
- package/common/styles/utilities/_pull.scss +0 -36
- package/common/styles/utilities/_push.scss +0 -36
- package/common/styles/utilities/_size.scss +0 -24
- package/common/styles/utilities/_text.scss +0 -84
- package/common/styles/utilities/_utilities.scss +0 -15
- package/covalent-core.metadata.json +0 -1
- package/dialogs/alert-dialog/alert-dialog.component.scss +0 -3
- package/dialogs/confirm-dialog/confirm-dialog.component.scss +0 -3
- package/dialogs/covalent-core-dialogs.metadata.json +0 -1
- package/dialogs/dialog.component.scss +0 -44
- package/dialogs/index.d.ts +0 -1
- package/dialogs/prompt-dialog/prompt-dialog.component.scss +0 -15
- package/dialogs/window-dialog/window-dialog.component.scss +0 -31
- package/dynamic-menu/covalent-core-dynamic-menu.metadata.json +0 -1
- package/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.scss +0 -6
- package/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.scss +0 -11
- package/dynamic-menu/dynamic-menu.component.scss +0 -0
- package/dynamic-menu/index.d.ts +0 -1
- package/esm2015/breadcrumbs/breadcrumb/breadcrumb.component.js +0 -171
- package/esm2015/breadcrumbs/breadcrumbs.component.js +0 -241
- package/esm2015/breadcrumbs/breadcrumbs.module.js +0 -20
- package/esm2015/breadcrumbs/covalent-core-breadcrumbs.js +0 -10
- package/esm2015/breadcrumbs/index.js +0 -7
- package/esm2015/breadcrumbs/public-api.js +0 -9
- package/esm2015/common/animations/bounce/bounce.animation.js +0 -76
- package/esm2015/common/animations/collapse/collapse.animation.js +0 -67
- package/esm2015/common/animations/common/interfaces.js +0 -18
- package/esm2015/common/animations/fade/fadeInOut.animation.js +0 -53
- package/esm2015/common/animations/flash/flash.animation.js +0 -40
- package/esm2015/common/animations/headshake/headshake.animation.js +0 -41
- package/esm2015/common/animations/jello/jello.animation.js +0 -44
- package/esm2015/common/animations/pulse/pulse.animation.js +0 -38
- package/esm2015/common/animations/rotate/rotate.animation.js +0 -41
- package/esm2015/common/behaviors/control-value-accesor.mixin.js +0 -107
- package/esm2015/common/behaviors/disable-ripple.mixin.js +0 -63
- package/esm2015/common/behaviors/disabled.mixin.js +0 -63
- package/esm2015/common/common.module.js +0 -54
- package/esm2015/common/covalent-core-common.js +0 -12
- package/esm2015/common/directives/fullscreen/fullscreen.directive.js +0 -180
- package/esm2015/common/forms/auto-trim/auto-trim.directive.js +0 -46
- package/esm2015/common/forms/validators/validators.js +0 -58
- package/esm2015/common/functions/clipboard.js +0 -30
- package/esm2015/common/functions/convert.js +0 -103
- package/esm2015/common/functions/download.js +0 -88
- package/esm2015/common/functions/file.js +0 -29
- package/esm2015/common/index.js +0 -7
- package/esm2015/common/pipes/bytes/bytes.pipe.js +0 -41
- package/esm2015/common/pipes/decimal-bytes/decimal-bytes.pipe.js +0 -41
- package/esm2015/common/pipes/digits/digits.pipe.js +0 -65
- package/esm2015/common/pipes/time-ago/time-ago.pipe.js +0 -81
- package/esm2015/common/pipes/time-difference/time-difference.pipe.js +0 -66
- package/esm2015/common/pipes/time-until/time-until.pipe.js +0 -81
- package/esm2015/common/pipes/truncate/truncate.pipe.js +0 -34
- package/esm2015/common/public-api.js +0 -44
- package/esm2015/common/services/icon.service.js +0 -1109
- package/esm2015/common/services/router-path.service.js +0 -60
- package/esm2015/covalent-core.js +0 -10
- package/esm2015/dialogs/alert-dialog/alert-dialog.component.js +0 -47
- package/esm2015/dialogs/confirm-dialog/confirm-dialog.component.js +0 -59
- package/esm2015/dialogs/covalent-core-dialogs.js +0 -11
- package/esm2015/dialogs/dialog.component.js +0 -58
- package/esm2015/dialogs/dialogs.module.js +0 -57
- package/esm2015/dialogs/index.js +0 -7
- package/esm2015/dialogs/prompt-dialog/prompt-dialog.component.js +0 -83
- package/esm2015/dialogs/public-api.js +0 -13
- package/esm2015/dialogs/resizable-draggable-dialog/resizable-draggable-dialog.js +0 -325
- package/esm2015/dialogs/services/dialog.service.js +0 -316
- package/esm2015/dialogs/window-dialog/window-dialog.component.js +0 -56
- package/esm2015/dynamic-menu/covalent-core-dynamic-menu.js +0 -11
- package/esm2015/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.js +0 -40
- package/esm2015/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.js +0 -35
- package/esm2015/dynamic-menu/dynamic-menu.component.js +0 -89
- package/esm2015/dynamic-menu/dynamic-menu.module.js +0 -26
- package/esm2015/dynamic-menu/index.js +0 -7
- package/esm2015/dynamic-menu/public_api.js +0 -9
- package/esm2015/file/covalent-core-file.js +0 -10
- package/esm2015/file/directives/file-drop.directive.js +0 -191
- package/esm2015/file/directives/file-select.directive.js +0 -98
- package/esm2015/file/file-input/file-input.component.js +0 -186
- package/esm2015/file/file-upload/file-upload.component.js +0 -237
- package/esm2015/file/file.module.js +0 -35
- package/esm2015/file/index.js +0 -7
- package/esm2015/file/public-api.js +0 -12
- package/esm2015/file/services/file.service.js +0 -109
- package/esm2015/index.js +0 -7
- package/esm2015/json-formatter/covalent-core-json-formatter.js +0 -10
- package/esm2015/json-formatter/index.js +0 -7
- package/esm2015/json-formatter/json-formatter.component.js +0 -338
- package/esm2015/json-formatter/json-formatter.module.js +0 -20
- package/esm2015/json-formatter/public-api.js +0 -8
- package/esm2015/layout/covalent-core-layout.js +0 -10
- package/esm2015/layout/index.js +0 -7
- package/esm2015/layout/layout-card-over/layout-card-over.component.js +0 -71
- package/esm2015/layout/layout-footer/layout-footer.component.js +0 -71
- package/esm2015/layout/layout-manage-list/layout-manage-list.component.js +0 -145
- package/esm2015/layout/layout-manage-list/layout-manage-list.directives.js +0 -132
- package/esm2015/layout/layout-nav/layout-nav.component.js +0 -100
- package/esm2015/layout/layout-nav-list/layout-nav-list.component.js +0 -220
- package/esm2015/layout/layout-nav-list/layout-nav-list.directives.js +0 -132
- package/esm2015/layout/layout-toggle.class.js +0 -188
- package/esm2015/layout/layout.component.js +0 -145
- package/esm2015/layout/layout.directives.js +0 -129
- package/esm2015/layout/layout.module.js +0 -64
- package/esm2015/layout/navigation-drawer/navigation-drawer.component.js +0 -280
- package/esm2015/layout/public-api.js +0 -18
- package/esm2015/menu/covalent-core-menu.js +0 -10
- package/esm2015/menu/index.js +0 -7
- package/esm2015/menu/menu.component.js +0 -16
- package/esm2015/menu/menu.module.js +0 -22
- package/esm2015/menu/public-api.js +0 -8
- package/esm2015/message/covalent-core-message.js +0 -10
- package/esm2015/message/index.js +0 -7
- package/esm2015/message/message.component.js +0 -307
- package/esm2015/message/message.module.js +0 -21
- package/esm2015/message/public-api.js +0 -8
- package/esm2015/search/covalent-core-search.js +0 -10
- package/esm2015/search/index.js +0 -7
- package/esm2015/search/public-api.js +0 -9
- package/esm2015/search/search-box/search-box.component.js +0 -270
- package/esm2015/search/search-input/search-input.component.js +0 -260
- package/esm2015/search/search.module.js +0 -23
- package/esm2015/side-sheet/covalent-core-side-sheet.js +0 -12
- package/esm2015/side-sheet/index.js +0 -7
- package/esm2015/side-sheet/public-api.js +0 -11
- package/esm2015/side-sheet/side-sheet-container.js +0 -402
- package/esm2015/side-sheet/side-sheet-ref.js +0 -50
- package/esm2015/side-sheet/side-sheet.animation.js +0 -20
- package/esm2015/side-sheet/side-sheet.config.js +0 -12
- package/esm2015/side-sheet/side-sheet.content-directives.js +0 -255
- package/esm2015/side-sheet/side-sheet.js +0 -360
- package/esm2015/side-sheet/side-sheet.module.js +0 -36
- package/esm2015/user-profile/covalent-core-user-profile.js +0 -10
- package/esm2015/user-profile/index.js +0 -7
- package/esm2015/user-profile/public_api.js +0 -9
- package/esm2015/user-profile/user-profile-menu/user-profile-menu.component.js +0 -35
- package/esm2015/user-profile/user-profile.component.js +0 -26
- package/esm2015/user-profile/user-profile.module.js +0 -25
- package/fesm2015/covalent-core-breadcrumbs.js +0 -448
- package/fesm2015/covalent-core-breadcrumbs.js.map +0 -1
- package/fesm2015/covalent-core-common.js.map +0 -1
- package/fesm2015/covalent-core-dialogs.js +0 -1001
- package/fesm2015/covalent-core-dialogs.js.map +0 -1
- package/fesm2015/covalent-core-dynamic-menu.js +0 -204
- package/fesm2015/covalent-core-dynamic-menu.js.map +0 -1
- package/fesm2015/covalent-core-file.js +0 -855
- package/fesm2015/covalent-core-file.js.map +0 -1
- package/fesm2015/covalent-core-json-formatter.js +0 -377
- package/fesm2015/covalent-core-json-formatter.js.map +0 -1
- package/fesm2015/covalent-core-layout.js +0 -1663
- package/fesm2015/covalent-core-layout.js.map +0 -1
- package/fesm2015/covalent-core-menu.js +0 -57
- package/fesm2015/covalent-core-menu.js.map +0 -1
- package/fesm2015/covalent-core-message.js +0 -347
- package/fesm2015/covalent-core-message.js.map +0 -1
- package/fesm2015/covalent-core-search.js +0 -564
- package/fesm2015/covalent-core-search.js.map +0 -1
- package/fesm2015/covalent-core-side-sheet.js +0 -1134
- package/fesm2015/covalent-core-side-sheet.js.map +0 -1
- package/fesm2015/covalent-core-user-profile.js +0 -103
- package/fesm2015/covalent-core-user-profile.js.map +0 -1
- package/fesm2015/covalent-core.js +0 -12
- package/fesm2015/covalent-core.js.map +0 -1
- package/file/covalent-core-file.metadata.json +0 -1
- package/file/file-input/file-input.component.scss +0 -20
- package/file/file-upload/file-upload.component.scss +0 -30
- package/file/index.d.ts +0 -1
- package/json-formatter/covalent-core-json-formatter.metadata.json +0 -1
- package/json-formatter/index.d.ts +0 -1
- package/json-formatter/json-formatter.component.scss +0 -61
- package/layout/covalent-core-layout.metadata.json +0 -1
- package/layout/index.d.ts +0 -1
- package/layout/layout-card-over/layout-card-over.component.scss +0 -42
- package/layout/layout-footer/layout-footer.component.scss +0 -4
- package/layout/layout-manage-list/layout-manage-list.component.scss +0 -78
- package/layout/layout-nav/README.md +0 -46
- package/layout/layout-nav/layout-nav.component.scss +0 -50
- package/layout/layout-nav-list/layout-nav-list.component.scss +0 -110
- package/layout/layout.component.scss +0 -20
- package/layout/navigation-drawer/navigation-drawer.component.scss +0 -73
- package/menu/covalent-core-menu.metadata.json +0 -1
- package/menu/index.d.ts +0 -1
- package/menu/menu.component.scss +0 -43
- package/message/covalent-core-message.metadata.json +0 -1
- package/message/index.d.ts +0 -1
- package/message/message.component.scss +0 -29
- package/schematics/README.md +0 -66
- package/schematics/collection.json +0 -11
- package/schematics/components.js +0 -111
- package/schematics/components.js.map +0 -1
- package/schematics/migration.json +0 -10
- package/schematics/ng-add/files/theme.scss +0 -64
- package/schematics/ng-add/index.js +0 -58
- package/schematics/ng-add/index.js.map +0 -1
- package/schematics/ng-add/schema.js +0 -3
- package/schematics/ng-add/schema.js.map +0 -1
- package/schematics/ng-add/schema.json +0 -81
- package/schematics/ng-update/index.js +0 -52
- package/schematics/ng-update/index.js.map +0 -1
- package/schematics/ng-update/target-version.js +0 -8
- package/schematics/ng-update/target-version.js.map +0 -1
- package/schematics/version-names.js +0 -6
- package/schematics/version-names.js.map +0 -1
- package/search/covalent-core-search.metadata.json +0 -1
- package/search/index.d.ts +0 -1
- package/search/search-box/README.md +0 -62
- package/search/search-box/search-box.component.scss +0 -32
- package/search/search-input/README.md +0 -65
- package/search/search-input/search-input.component.scss +0 -63
- package/side-sheet/covalent-core-side-sheet.metadata.json +0 -1
- package/side-sheet/index.d.ts +0 -1
- package/side-sheet/side-sheet.scss +0 -69
- package/theming/prebuilt/blue-grey-deep-orange.css +0 -2434
- package/theming/prebuilt/blue-grey-deep-orange.css.map +0 -1
- package/theming/prebuilt/blue-grey-deep-orange.scss +0 -13
- package/theming/prebuilt/blue-orange.css +0 -2434
- package/theming/prebuilt/blue-orange.css.map +0 -1
- package/theming/prebuilt/blue-orange.scss +0 -13
- package/theming/prebuilt/indigo-pink.css +0 -2434
- package/theming/prebuilt/indigo-pink.css.map +0 -1
- package/theming/prebuilt/indigo-pink.scss +0 -13
- package/theming/prebuilt/orange-light-blue.css +0 -2434
- package/theming/prebuilt/orange-light-blue.css.map +0 -1
- package/theming/prebuilt/orange-light-blue.scss +0 -13
- package/theming/prebuilt/teal-orange.css +0 -2434
- package/theming/prebuilt/teal-orange.css.map +0 -1
- package/theming/prebuilt/teal-orange.scss +0 -13
- package/user-profile/covalent-core-user-profile.metadata.json +0 -1
- package/user-profile/index.d.ts +0 -1
- package/user-profile/user-profile-menu/user-profile-menu.component.scss +0 -38
@@ -1,1072 +0,0 @@
|
|
1
|
-
@import '../theme-functions';
|
2
|
-
@import '../palette-dark';
|
3
|
-
|
4
|
-
@mixin td-colors-dark() {
|
5
|
-
// Text color
|
6
|
-
|
7
|
-
// 500
|
8
|
-
.tc-dark-red-500 {
|
9
|
-
color: mat-color($mat-dark-red, 500) !important;
|
10
|
-
}
|
11
|
-
.tc-dark-pink-500 {
|
12
|
-
color: mat-color($mat-dark-pink, 500) !important;
|
13
|
-
}
|
14
|
-
.tc-dark-purple-500 {
|
15
|
-
color: mat-color($mat-dark-purple, 500) !important;
|
16
|
-
}
|
17
|
-
.tc-dark-deep-purple-500 {
|
18
|
-
color: mat-color($mat-dark-deep-purple, 500) !important;
|
19
|
-
}
|
20
|
-
.tc-dark-indigo-500 {
|
21
|
-
color: mat-color($mat-dark-indigo, 500) !important;
|
22
|
-
}
|
23
|
-
.tc-dark-blue-500 {
|
24
|
-
color: mat-color($mat-dark-blue, 500) !important;
|
25
|
-
}
|
26
|
-
.tc-dark-light-blue-500 {
|
27
|
-
color: mat-color($mat-dark-light-blue, 500) !important;
|
28
|
-
}
|
29
|
-
.tc-dark-cyan-500 {
|
30
|
-
color: mat-color($mat-dark-cyan, 500) !important;
|
31
|
-
}
|
32
|
-
.tc-dark-teal-500 {
|
33
|
-
color: mat-color($mat-dark-teal, 500) !important;
|
34
|
-
}
|
35
|
-
.tc-dark-green-500 {
|
36
|
-
color: mat-color($mat-dark-green, 500) !important;
|
37
|
-
}
|
38
|
-
.tc-dark-light-green-500 {
|
39
|
-
color: mat-color($mat-dark-light-green, 500) !important;
|
40
|
-
}
|
41
|
-
.tc-dark-lime-500 {
|
42
|
-
color: mat-color($mat-dark-lime, 500) !important;
|
43
|
-
}
|
44
|
-
.tc-dark-yellow-500 {
|
45
|
-
color: mat-color($mat-dark-yellow, 500) !important;
|
46
|
-
}
|
47
|
-
.tc-dark-amber-500 {
|
48
|
-
color: mat-color($mat-dark-amber, 500) !important;
|
49
|
-
}
|
50
|
-
.tc-dark-orange-500 {
|
51
|
-
color: mat-color($mat-dark-orange, 500) !important;
|
52
|
-
}
|
53
|
-
.tc-dark-deep-orange-500 {
|
54
|
-
color: mat-color($mat-dark-deep-orange, 500) !important;
|
55
|
-
}
|
56
|
-
.tc-dark-brown-500 {
|
57
|
-
color: mat-color($mat-dark-brown, 500) !important;
|
58
|
-
}
|
59
|
-
.tc-dark-grey-500 {
|
60
|
-
color: mat-color($mat-dark-grey, 500) !important;
|
61
|
-
}
|
62
|
-
.tc-dark-blue-grey-500 {
|
63
|
-
color: mat-color($mat-dark-blue-grey, 500) !important;
|
64
|
-
}
|
65
|
-
|
66
|
-
// B100
|
67
|
-
.tc-dark-red-B100 {
|
68
|
-
color: mat-color($mat-dark-red, B100) !important;
|
69
|
-
}
|
70
|
-
.tc-dark-pink-B100 {
|
71
|
-
color: mat-color($mat-dark-pink, B100) !important;
|
72
|
-
}
|
73
|
-
.tc-dark-purple-B100 {
|
74
|
-
color: mat-color($mat-dark-purple, B100) !important;
|
75
|
-
}
|
76
|
-
.tc-dark-deep-purple-B100 {
|
77
|
-
color: mat-color($mat-dark-deep-purple, B100) !important;
|
78
|
-
}
|
79
|
-
.tc-dark-indigo-B100 {
|
80
|
-
color: mat-color($mat-dark-indigo, B100) !important;
|
81
|
-
}
|
82
|
-
.tc-dark-blue-B100 {
|
83
|
-
color: mat-color($mat-dark-blue, B100) !important;
|
84
|
-
}
|
85
|
-
.tc-dark-light-blue-B100 {
|
86
|
-
color: mat-color($mat-dark-light-blue, B100) !important;
|
87
|
-
}
|
88
|
-
.tc-dark-cyan-B100 {
|
89
|
-
color: mat-color($mat-dark-cyan, B100) !important;
|
90
|
-
}
|
91
|
-
.tc-dark-teal-B100 {
|
92
|
-
color: mat-color($mat-dark-teal, B100) !important;
|
93
|
-
}
|
94
|
-
.tc-dark-green-B100 {
|
95
|
-
color: mat-color($mat-dark-green, B100) !important;
|
96
|
-
}
|
97
|
-
.tc-dark-light-green-B100 {
|
98
|
-
color: mat-color($mat-dark-light-green, B100) !important;
|
99
|
-
}
|
100
|
-
.tc-dark-lime-B100 {
|
101
|
-
color: mat-color($mat-dark-lime, B100) !important;
|
102
|
-
}
|
103
|
-
.tc-dark-yellow-B100 {
|
104
|
-
color: mat-color($mat-dark-yellow, B100) !important;
|
105
|
-
}
|
106
|
-
.tc-dark-amber-B100 {
|
107
|
-
color: mat-color($mat-dark-amber, B100) !important;
|
108
|
-
}
|
109
|
-
.tc-dark-orange-B100 {
|
110
|
-
color: mat-color($mat-dark-orange, B100) !important;
|
111
|
-
}
|
112
|
-
.tc-dark-deep-orange-B100 {
|
113
|
-
color: mat-color($mat-dark-deep-orange, B100) !important;
|
114
|
-
}
|
115
|
-
.tc-dark-brown-B100 {
|
116
|
-
color: mat-color($mat-dark-brown, B100) !important;
|
117
|
-
}
|
118
|
-
.tc-dark-grey-B100 {
|
119
|
-
color: mat-color($mat-dark-grey, B100) !important;
|
120
|
-
}
|
121
|
-
.tc-dark-blue-grey-B100 {
|
122
|
-
color: mat-color($mat-dark-blue-grey, B100) !important;
|
123
|
-
}
|
124
|
-
|
125
|
-
// B65
|
126
|
-
.tc-dark-red-B65 {
|
127
|
-
color: mat-color($mat-dark-red, B65) !important;
|
128
|
-
}
|
129
|
-
.tc-dark-pink-B65 {
|
130
|
-
color: mat-color($mat-dark-pink, B65) !important;
|
131
|
-
}
|
132
|
-
.tc-dark-purple-B65 {
|
133
|
-
color: mat-color($mat-dark-purple, B65) !important;
|
134
|
-
}
|
135
|
-
.tc-dark-deep-purple-B65 {
|
136
|
-
color: mat-color($mat-dark-deep-purple, B65) !important;
|
137
|
-
}
|
138
|
-
.tc-dark-indigo-B65 {
|
139
|
-
color: mat-color($mat-dark-indigo, B65) !important;
|
140
|
-
}
|
141
|
-
.tc-dark-blue-B65 {
|
142
|
-
color: mat-color($mat-dark-blue, B65) !important;
|
143
|
-
}
|
144
|
-
.tc-dark-light-blue-B65 {
|
145
|
-
color: mat-color($mat-dark-light-blue, B65) !important;
|
146
|
-
}
|
147
|
-
.tc-dark-cyan-B65 {
|
148
|
-
color: mat-color($mat-dark-cyan, B65) !important;
|
149
|
-
}
|
150
|
-
.tc-dark-teal-B65 {
|
151
|
-
color: mat-color($mat-dark-teal, B65) !important;
|
152
|
-
}
|
153
|
-
.tc-dark-green-B65 {
|
154
|
-
color: mat-color($mat-dark-green, B65) !important;
|
155
|
-
}
|
156
|
-
.tc-dark-light-green-B65 {
|
157
|
-
color: mat-color($mat-dark-light-green, B65) !important;
|
158
|
-
}
|
159
|
-
.tc-dark-lime-B65 {
|
160
|
-
color: mat-color($mat-dark-lime, B65) !important;
|
161
|
-
}
|
162
|
-
.tc-dark-yellow-B65 {
|
163
|
-
color: mat-color($mat-dark-yellow, B65) !important;
|
164
|
-
}
|
165
|
-
.tc-dark-amber-B65 {
|
166
|
-
color: mat-color($mat-dark-amber, B65) !important;
|
167
|
-
}
|
168
|
-
.tc-dark-orange-B65 {
|
169
|
-
color: mat-color($mat-dark-orange, B65) !important;
|
170
|
-
}
|
171
|
-
.tc-dark-deep-orange-B65 {
|
172
|
-
color: mat-color($mat-dark-deep-orange, B65) !important;
|
173
|
-
}
|
174
|
-
.tc-dark-brown-B65 {
|
175
|
-
color: mat-color($mat-dark-brown, B65) !important;
|
176
|
-
}
|
177
|
-
.tc-dark-grey-B65 {
|
178
|
-
color: mat-color($mat-dark-grey, B65) !important;
|
179
|
-
}
|
180
|
-
.tc-dark-blue-grey-B65 {
|
181
|
-
color: mat-color($mat-dark-blue-grey, B65) !important;
|
182
|
-
}
|
183
|
-
|
184
|
-
// B40
|
185
|
-
.tc-dark-red-B40 {
|
186
|
-
color: mat-color($mat-dark-red, B40) !important;
|
187
|
-
}
|
188
|
-
.tc-dark-pink-B40 {
|
189
|
-
color: mat-color($mat-dark-pink, B40) !important;
|
190
|
-
}
|
191
|
-
.tc-dark-purple-B40 {
|
192
|
-
color: mat-color($mat-dark-purple, B40) !important;
|
193
|
-
}
|
194
|
-
.tc-dark-deep-purple-B40 {
|
195
|
-
color: mat-color($mat-dark-deep-purple, B40) !important;
|
196
|
-
}
|
197
|
-
.tc-dark-indigo-B40 {
|
198
|
-
color: mat-color($mat-dark-indigo, B40) !important;
|
199
|
-
}
|
200
|
-
.tc-dark-blue-B40 {
|
201
|
-
color: mat-color($mat-dark-blue, B40) !important;
|
202
|
-
}
|
203
|
-
.tc-dark-light-blue-B40 {
|
204
|
-
color: mat-color($mat-dark-light-blue, B40) !important;
|
205
|
-
}
|
206
|
-
.tc-dark-cyan-B40 {
|
207
|
-
color: mat-color($mat-dark-cyan, B40) !important;
|
208
|
-
}
|
209
|
-
.tc-dark-teal-B40 {
|
210
|
-
color: mat-color($mat-dark-teal, B40) !important;
|
211
|
-
}
|
212
|
-
.tc-dark-green-B40 {
|
213
|
-
color: mat-color($mat-dark-green, B40) !important;
|
214
|
-
}
|
215
|
-
.tc-dark-light-green-B40 {
|
216
|
-
color: mat-color($mat-dark-light-green, B40) !important;
|
217
|
-
}
|
218
|
-
.tc-dark-lime-B40 {
|
219
|
-
color: mat-color($mat-dark-lime, B40) !important;
|
220
|
-
}
|
221
|
-
.tc-dark-yellow-B40 {
|
222
|
-
color: mat-color($mat-dark-yellow, B40) !important;
|
223
|
-
}
|
224
|
-
.tc-dark-amber-B40 {
|
225
|
-
color: mat-color($mat-dark-amber, B40) !important;
|
226
|
-
}
|
227
|
-
.tc-dark-orange-B40 {
|
228
|
-
color: mat-color($mat-dark-orange, B40) !important;
|
229
|
-
}
|
230
|
-
.tc-dark-deep-orange-B40 {
|
231
|
-
color: mat-color($mat-dark-deep-orange, B40) !important;
|
232
|
-
}
|
233
|
-
.tc-dark-brown-B40 {
|
234
|
-
color: mat-color($mat-dark-brown, B40) !important;
|
235
|
-
}
|
236
|
-
.tc-dark-grey-B40 {
|
237
|
-
color: mat-color($mat-dark-grey, B40) !important;
|
238
|
-
}
|
239
|
-
.tc-dark-blue-grey-B40 {
|
240
|
-
color: mat-color($mat-dark-blue-grey, B40) !important;
|
241
|
-
}
|
242
|
-
|
243
|
-
// B30
|
244
|
-
.tc-dark-red-B30 {
|
245
|
-
color: mat-color($mat-dark-red, B30) !important;
|
246
|
-
}
|
247
|
-
.tc-dark-pink-B30 {
|
248
|
-
color: mat-color($mat-dark-pink, B30) !important;
|
249
|
-
}
|
250
|
-
.tc-dark-purple-B30 {
|
251
|
-
color: mat-color($mat-dark-purple, B30) !important;
|
252
|
-
}
|
253
|
-
.tc-dark-deep-purple-B30 {
|
254
|
-
color: mat-color($mat-dark-deep-purple, B30) !important;
|
255
|
-
}
|
256
|
-
.tc-dark-indigo-B30 {
|
257
|
-
color: mat-color($mat-dark-indigo, B30) !important;
|
258
|
-
}
|
259
|
-
.tc-dark-blue-B30 {
|
260
|
-
color: mat-color($mat-dark-blue, B30) !important;
|
261
|
-
}
|
262
|
-
.tc-dark-light-blue-B30 {
|
263
|
-
color: mat-color($mat-dark-light-blue, B30) !important;
|
264
|
-
}
|
265
|
-
.tc-dark-cyan-B30 {
|
266
|
-
color: mat-color($mat-dark-cyan, B30) !important;
|
267
|
-
}
|
268
|
-
.tc-dark-teal-B30 {
|
269
|
-
color: mat-color($mat-dark-teal, B30) !important;
|
270
|
-
}
|
271
|
-
.tc-dark-green-B30 {
|
272
|
-
color: mat-color($mat-dark-green, B30) !important;
|
273
|
-
}
|
274
|
-
.tc-dark-light-green-B30 {
|
275
|
-
color: mat-color($mat-dark-light-green, B30) !important;
|
276
|
-
}
|
277
|
-
.tc-dark-lime-B30 {
|
278
|
-
color: mat-color($mat-dark-lime, B30) !important;
|
279
|
-
}
|
280
|
-
.tc-dark-yellow-B30 {
|
281
|
-
color: mat-color($mat-dark-yellow, B30) !important;
|
282
|
-
}
|
283
|
-
.tc-dark-amber-B30 {
|
284
|
-
color: mat-color($mat-dark-amber, B30) !important;
|
285
|
-
}
|
286
|
-
.tc-dark-orange-B30 {
|
287
|
-
color: mat-color($mat-dark-orange, B30) !important;
|
288
|
-
}
|
289
|
-
.tc-dark-deep-orange-B30 {
|
290
|
-
color: mat-color($mat-dark-deep-orange, B30) !important;
|
291
|
-
}
|
292
|
-
.tc-dark-brown-B30 {
|
293
|
-
color: mat-color($mat-dark-brown, B30) !important;
|
294
|
-
}
|
295
|
-
.tc-dark-grey-B30 {
|
296
|
-
color: mat-color($mat-dark-grey, B30) !important;
|
297
|
-
}
|
298
|
-
.tc-dark-blue-grey-B30 {
|
299
|
-
color: mat-color($mat-dark-blue-grey, B30) !important;
|
300
|
-
}
|
301
|
-
|
302
|
-
// B15
|
303
|
-
.tc-dark-red-B15 {
|
304
|
-
color: mat-color($mat-dark-red, B15) !important;
|
305
|
-
}
|
306
|
-
.tc-dark-pink-B15 {
|
307
|
-
color: mat-color($mat-dark-pink, B15) !important;
|
308
|
-
}
|
309
|
-
.tc-dark-purple-B15 {
|
310
|
-
color: mat-color($mat-dark-purple, B15) !important;
|
311
|
-
}
|
312
|
-
.tc-dark-deep-purple-B15 {
|
313
|
-
color: mat-color($mat-dark-deep-purple, B15) !important;
|
314
|
-
}
|
315
|
-
.tc-dark-indigo-B15 {
|
316
|
-
color: mat-color($mat-dark-indigo, B15) !important;
|
317
|
-
}
|
318
|
-
.tc-dark-blue-B15 {
|
319
|
-
color: mat-color($mat-dark-blue, B15) !important;
|
320
|
-
}
|
321
|
-
.tc-dark-light-blue-B15 {
|
322
|
-
color: mat-color($mat-dark-light-blue, B15) !important;
|
323
|
-
}
|
324
|
-
.tc-dark-cyan-B15 {
|
325
|
-
color: mat-color($mat-dark-cyan, B15) !important;
|
326
|
-
}
|
327
|
-
.tc-dark-teal-B15 {
|
328
|
-
color: mat-color($mat-dark-teal, B15) !important;
|
329
|
-
}
|
330
|
-
.tc-dark-green-B15 {
|
331
|
-
color: mat-color($mat-dark-green, B15) !important;
|
332
|
-
}
|
333
|
-
.tc-dark-light-green-B15 {
|
334
|
-
color: mat-color($mat-dark-light-green, B15) !important;
|
335
|
-
}
|
336
|
-
.tc-dark-lime-B15 {
|
337
|
-
color: mat-color($mat-dark-lime, B15) !important;
|
338
|
-
}
|
339
|
-
.tc-dark-yellow-B15 {
|
340
|
-
color: mat-color($mat-dark-yellow, B15) !important;
|
341
|
-
}
|
342
|
-
.tc-dark-amber-B15 {
|
343
|
-
color: mat-color($mat-dark-amber, B15) !important;
|
344
|
-
}
|
345
|
-
.tc-dark-orange-B15 {
|
346
|
-
color: mat-color($mat-dark-orange, B15) !important;
|
347
|
-
}
|
348
|
-
.tc-dark-deep-orange-B15 {
|
349
|
-
color: mat-color($mat-dark-deep-orange, B15) !important;
|
350
|
-
}
|
351
|
-
.tc-dark-brown-B15 {
|
352
|
-
color: mat-color($mat-dark-brown, B15) !important;
|
353
|
-
}
|
354
|
-
.tc-dark-grey-B15 {
|
355
|
-
color: mat-color($mat-dark-grey, B15) !important;
|
356
|
-
}
|
357
|
-
.tc-dark-blue-grey-B15 {
|
358
|
-
color: mat-color($mat-dark-blue-grey, B15) !important;
|
359
|
-
}
|
360
|
-
|
361
|
-
// Background color
|
362
|
-
|
363
|
-
// 500
|
364
|
-
.bgc-dark-red-500 {
|
365
|
-
background-color: mat-color($mat-dark-red, 500) !important;
|
366
|
-
}
|
367
|
-
.bgc-dark-pink-500 {
|
368
|
-
background-color: mat-color($mat-dark-pink, 500) !important;
|
369
|
-
}
|
370
|
-
.bgc-dark-purple-500 {
|
371
|
-
background-color: mat-color($mat-dark-purple, 500) !important;
|
372
|
-
}
|
373
|
-
.bgc-dark-deep-purple-500 {
|
374
|
-
background-color: mat-color($mat-dark-deep-purple, 500) !important;
|
375
|
-
}
|
376
|
-
.bgc-dark-indigo-500 {
|
377
|
-
background-color: mat-color($mat-dark-indigo, 500) !important;
|
378
|
-
}
|
379
|
-
.bgc-dark-blue-500 {
|
380
|
-
background-color: mat-color($mat-dark-blue, 500) !important;
|
381
|
-
}
|
382
|
-
.bgc-dark-light-blue-500 {
|
383
|
-
background-color: mat-color($mat-dark-light-blue, 500) !important;
|
384
|
-
}
|
385
|
-
.bgc-dark-cyan-500 {
|
386
|
-
background-color: mat-color($mat-dark-cyan, 500) !important;
|
387
|
-
}
|
388
|
-
.bgc-dark-teal-500 {
|
389
|
-
background-color: mat-color($mat-dark-teal, 500) !important;
|
390
|
-
}
|
391
|
-
.bgc-dark-green-500 {
|
392
|
-
background-color: mat-color($mat-dark-green, 500) !important;
|
393
|
-
}
|
394
|
-
.bgc-dark-light-green-500 {
|
395
|
-
background-color: mat-color($mat-dark-light-green, 500) !important;
|
396
|
-
}
|
397
|
-
.bgc-dark-lime-500 {
|
398
|
-
background-color: mat-color($mat-dark-lime, 500) !important;
|
399
|
-
}
|
400
|
-
.bgc-dark-yellow-500 {
|
401
|
-
background-color: mat-color($mat-dark-yellow, 500) !important;
|
402
|
-
}
|
403
|
-
.bgc-dark-amber-500 {
|
404
|
-
background-color: mat-color($mat-dark-amber, 500) !important;
|
405
|
-
}
|
406
|
-
.bgc-dark-orange-500 {
|
407
|
-
background-color: mat-color($mat-dark-orange, 500) !important;
|
408
|
-
}
|
409
|
-
.bgc-dark-deep-orange-500 {
|
410
|
-
background-color: mat-color($mat-dark-deep-orange, 500) !important;
|
411
|
-
}
|
412
|
-
.bgc-dark-brown-500 {
|
413
|
-
background-color: mat-color($mat-dark-brown, 500) !important;
|
414
|
-
}
|
415
|
-
.bgc-dark-grey-500 {
|
416
|
-
background-color: mat-color($mat-dark-grey, 500) !important;
|
417
|
-
}
|
418
|
-
.bgc-dark-blue-grey-500 {
|
419
|
-
background-color: mat-color($mat-dark-blue-grey, 500) !important;
|
420
|
-
}
|
421
|
-
|
422
|
-
// B100
|
423
|
-
.bgc-dark-red-B100 {
|
424
|
-
background-color: mat-color($mat-dark-red, B100) !important;
|
425
|
-
}
|
426
|
-
.bgc-dark-pink-B100 {
|
427
|
-
background-color: mat-color($mat-dark-pink, B100) !important;
|
428
|
-
}
|
429
|
-
.bgc-dark-purple-B100 {
|
430
|
-
background-color: mat-color($mat-dark-purple, B100) !important;
|
431
|
-
}
|
432
|
-
.bgc-dark-deep-purple-B100 {
|
433
|
-
background-color: mat-color($mat-dark-deep-purple, B100) !important;
|
434
|
-
}
|
435
|
-
.bgc-dark-indigo-B100 {
|
436
|
-
background-color: mat-color($mat-dark-indigo, B100) !important;
|
437
|
-
}
|
438
|
-
.bgc-dark-blue-B100 {
|
439
|
-
background-color: mat-color($mat-dark-blue, B100) !important;
|
440
|
-
}
|
441
|
-
.bgc-dark-light-blue-B100 {
|
442
|
-
background-color: mat-color($mat-dark-light-blue, B100) !important;
|
443
|
-
}
|
444
|
-
.bgc-dark-cyan-B100 {
|
445
|
-
background-color: mat-color($mat-dark-cyan, B100) !important;
|
446
|
-
}
|
447
|
-
.bgc-dark-teal-B100 {
|
448
|
-
background-color: mat-color($mat-dark-teal, B100) !important;
|
449
|
-
}
|
450
|
-
.bgc-dark-green-B100 {
|
451
|
-
background-color: mat-color($mat-dark-green, B100) !important;
|
452
|
-
}
|
453
|
-
.bgc-dark-light-green-B100 {
|
454
|
-
background-color: mat-color($mat-dark-light-green, B100) !important;
|
455
|
-
}
|
456
|
-
.bgc-dark-lime-B100 {
|
457
|
-
background-color: mat-color($mat-dark-lime, B100) !important;
|
458
|
-
}
|
459
|
-
.bgc-dark-yellow-B100 {
|
460
|
-
background-color: mat-color($mat-dark-yellow, B100) !important;
|
461
|
-
}
|
462
|
-
.bgc-dark-amber-B100 {
|
463
|
-
background-color: mat-color($mat-dark-amber, B100) !important;
|
464
|
-
}
|
465
|
-
.bgc-dark-orange-B100 {
|
466
|
-
background-color: mat-color($mat-dark-orange, B100) !important;
|
467
|
-
}
|
468
|
-
.bgc-dark-deep-orange-B100 {
|
469
|
-
background-color: mat-color($mat-dark-deep-orange, B100) !important;
|
470
|
-
}
|
471
|
-
.bgc-dark-brown-B100 {
|
472
|
-
background-color: mat-color($mat-dark-brown, B100) !important;
|
473
|
-
}
|
474
|
-
.bgc-dark-grey-B100 {
|
475
|
-
background-color: mat-color($mat-dark-grey, B100) !important;
|
476
|
-
}
|
477
|
-
.bgc-dark-blue-grey-B100 {
|
478
|
-
background-color: mat-color($mat-dark-blue-grey, B100) !important;
|
479
|
-
}
|
480
|
-
|
481
|
-
// B65
|
482
|
-
.bgc-dark-red-B65 {
|
483
|
-
background-color: mat-color($mat-dark-red, B65) !important;
|
484
|
-
}
|
485
|
-
.bgc-dark-pink-B65 {
|
486
|
-
background-color: mat-color($mat-dark-pink, B65) !important;
|
487
|
-
}
|
488
|
-
.bgc-dark-purple-B65 {
|
489
|
-
background-color: mat-color($mat-dark-purple, B65) !important;
|
490
|
-
}
|
491
|
-
.bgc-dark-deep-purple-B65 {
|
492
|
-
background-color: mat-color($mat-dark-deep-purple, B65) !important;
|
493
|
-
}
|
494
|
-
.bgc-dark-indigo-B65 {
|
495
|
-
background-color: mat-color($mat-dark-indigo, B65) !important;
|
496
|
-
}
|
497
|
-
.bgc-dark-blue-B65 {
|
498
|
-
background-color: mat-color($mat-dark-blue, B65) !important;
|
499
|
-
}
|
500
|
-
.bgc-dark-light-blue-B65 {
|
501
|
-
background-color: mat-color($mat-dark-light-blue, B65) !important;
|
502
|
-
}
|
503
|
-
.bgc-dark-cyan-B65 {
|
504
|
-
background-color: mat-color($mat-dark-cyan, B65) !important;
|
505
|
-
}
|
506
|
-
.bgc-dark-teal-B65 {
|
507
|
-
background-color: mat-color($mat-dark-teal, B65) !important;
|
508
|
-
}
|
509
|
-
.bgc-dark-green-B65 {
|
510
|
-
background-color: mat-color($mat-dark-green, B65) !important;
|
511
|
-
}
|
512
|
-
.bgc-dark-light-green-B65 {
|
513
|
-
background-color: mat-color($mat-dark-light-green, B65) !important;
|
514
|
-
}
|
515
|
-
.bgc-dark-lime-B65 {
|
516
|
-
background-color: mat-color($mat-dark-lime, B65) !important;
|
517
|
-
}
|
518
|
-
.bgc-dark-yellow-B65 {
|
519
|
-
background-color: mat-color($mat-dark-yellow, B65) !important;
|
520
|
-
}
|
521
|
-
.bgc-dark-amber-B65 {
|
522
|
-
background-color: mat-color($mat-dark-amber, B65) !important;
|
523
|
-
}
|
524
|
-
.bgc-dark-orange-B65 {
|
525
|
-
background-color: mat-color($mat-dark-orange, B65) !important;
|
526
|
-
}
|
527
|
-
.bgc-dark-deep-orange-B65 {
|
528
|
-
background-color: mat-color($mat-dark-deep-orange, B65) !important;
|
529
|
-
}
|
530
|
-
.bgc-dark-brown-B65 {
|
531
|
-
background-color: mat-color($mat-dark-brown, B65) !important;
|
532
|
-
}
|
533
|
-
.bgc-dark-grey-B65 {
|
534
|
-
background-color: mat-color($mat-dark-grey, B65) !important;
|
535
|
-
}
|
536
|
-
.bgc-dark-blue-grey-B65 {
|
537
|
-
background-color: mat-color($mat-dark-blue-grey, B65) !important;
|
538
|
-
}
|
539
|
-
|
540
|
-
// B40
|
541
|
-
.bgc-dark-red-B40 {
|
542
|
-
background-color: mat-color($mat-dark-red, B40) !important;
|
543
|
-
}
|
544
|
-
.bgc-dark-pink-B40 {
|
545
|
-
background-color: mat-color($mat-dark-pink, B40) !important;
|
546
|
-
}
|
547
|
-
.bgc-dark-purple-B40 {
|
548
|
-
background-color: mat-color($mat-dark-purple, B40) !important;
|
549
|
-
}
|
550
|
-
.bgc-dark-deep-purple-B40 {
|
551
|
-
background-color: mat-color($mat-dark-deep-purple, B40) !important;
|
552
|
-
}
|
553
|
-
.bgc-dark-indigo-B40 {
|
554
|
-
background-color: mat-color($mat-dark-indigo, B40) !important;
|
555
|
-
}
|
556
|
-
.bgc-dark-blue-B40 {
|
557
|
-
background-color: mat-color($mat-dark-blue, B40) !important;
|
558
|
-
}
|
559
|
-
.bgc-dark-light-blue-B40 {
|
560
|
-
background-color: mat-color($mat-dark-light-blue, B40) !important;
|
561
|
-
}
|
562
|
-
.bgc-dark-cyan-B40 {
|
563
|
-
background-color: mat-color($mat-dark-cyan, B40) !important;
|
564
|
-
}
|
565
|
-
.bgc-dark-teal-B40 {
|
566
|
-
background-color: mat-color($mat-dark-teal, B40) !important;
|
567
|
-
}
|
568
|
-
.bgc-dark-green-B40 {
|
569
|
-
background-color: mat-color($mat-dark-green, B40) !important;
|
570
|
-
}
|
571
|
-
.bgc-dark-light-green-B40 {
|
572
|
-
background-color: mat-color($mat-dark-light-green, B40) !important;
|
573
|
-
}
|
574
|
-
.bgc-dark-lime-B40 {
|
575
|
-
background-color: mat-color($mat-dark-lime, B40) !important;
|
576
|
-
}
|
577
|
-
.bgc-dark-yellow-B40 {
|
578
|
-
background-color: mat-color($mat-dark-yellow, B40) !important;
|
579
|
-
}
|
580
|
-
.bgc-dark-amber-B40 {
|
581
|
-
background-color: mat-color($mat-dark-amber, B40) !important;
|
582
|
-
}
|
583
|
-
.bgc-dark-orange-B40 {
|
584
|
-
background-color: mat-color($mat-dark-orange, B40) !important;
|
585
|
-
}
|
586
|
-
.bgc-dark-deep-orange-B40 {
|
587
|
-
background-color: mat-color($mat-dark-deep-orange, B40) !important;
|
588
|
-
}
|
589
|
-
.bgc-dark-brown-B40 {
|
590
|
-
background-color: mat-color($mat-dark-brown, B40) !important;
|
591
|
-
}
|
592
|
-
.bgc-dark-grey-B40 {
|
593
|
-
background-color: mat-color($mat-dark-grey, B40) !important;
|
594
|
-
}
|
595
|
-
.bgc-dark-blue-grey-B40 {
|
596
|
-
background-color: mat-color($mat-dark-blue-grey, B40) !important;
|
597
|
-
}
|
598
|
-
|
599
|
-
// B30
|
600
|
-
.bgc-dark-red-B30 {
|
601
|
-
background-color: mat-color($mat-dark-red, B30) !important;
|
602
|
-
}
|
603
|
-
.bgc-dark-pink-B30 {
|
604
|
-
background-color: mat-color($mat-dark-pink, B30) !important;
|
605
|
-
}
|
606
|
-
.bgc-dark-purple-B30 {
|
607
|
-
background-color: mat-color($mat-dark-purple, B30) !important;
|
608
|
-
}
|
609
|
-
.bgc-dark-deep-purple-B30 {
|
610
|
-
background-color: mat-color($mat-dark-deep-purple, B30) !important;
|
611
|
-
}
|
612
|
-
.bgc-dark-indigo-B30 {
|
613
|
-
background-color: mat-color($mat-dark-indigo, B30) !important;
|
614
|
-
}
|
615
|
-
.bgc-dark-blue-B30 {
|
616
|
-
background-color: mat-color($mat-dark-blue, B30) !important;
|
617
|
-
}
|
618
|
-
.bgc-dark-light-blue-B30 {
|
619
|
-
background-color: mat-color($mat-dark-light-blue, B30) !important;
|
620
|
-
}
|
621
|
-
.bgc-dark-cyan-B30 {
|
622
|
-
background-color: mat-color($mat-dark-cyan, B30) !important;
|
623
|
-
}
|
624
|
-
.bgc-dark-teal-B30 {
|
625
|
-
background-color: mat-color($mat-dark-teal, B30) !important;
|
626
|
-
}
|
627
|
-
.bgc-dark-green-B30 {
|
628
|
-
background-color: mat-color($mat-dark-green, B30) !important;
|
629
|
-
}
|
630
|
-
.bgc-dark-light-green-B30 {
|
631
|
-
background-color: mat-color($mat-dark-light-green, B30) !important;
|
632
|
-
}
|
633
|
-
.bgc-dark-lime-B30 {
|
634
|
-
background-color: mat-color($mat-dark-lime, B30) !important;
|
635
|
-
}
|
636
|
-
.bgc-dark-yellow-B30 {
|
637
|
-
background-color: mat-color($mat-dark-yellow, B30) !important;
|
638
|
-
}
|
639
|
-
.bgc-dark-amber-B30 {
|
640
|
-
background-color: mat-color($mat-dark-amber, B30) !important;
|
641
|
-
}
|
642
|
-
.bgc-dark-orange-B30 {
|
643
|
-
background-color: mat-color($mat-dark-orange, B30) !important;
|
644
|
-
}
|
645
|
-
.bgc-dark-deep-orange-B30 {
|
646
|
-
background-color: mat-color($mat-dark-deep-orange, B30) !important;
|
647
|
-
}
|
648
|
-
.bgc-dark-brown-B30 {
|
649
|
-
background-color: mat-color($mat-dark-brown, B30) !important;
|
650
|
-
}
|
651
|
-
.bgc-dark-grey-B30 {
|
652
|
-
background-color: mat-color($mat-dark-grey, B30) !important;
|
653
|
-
}
|
654
|
-
.bgc-dark-blue-grey-B30 {
|
655
|
-
background-color: mat-color($mat-dark-blue-grey, B30) !important;
|
656
|
-
}
|
657
|
-
|
658
|
-
// B15
|
659
|
-
.bgc-dark-red-B15 {
|
660
|
-
background-color: mat-color($mat-dark-red, B15) !important;
|
661
|
-
}
|
662
|
-
.bgc-dark-pink-B15 {
|
663
|
-
background-color: mat-color($mat-dark-pink, B15) !important;
|
664
|
-
}
|
665
|
-
.bgc-dark-purple-B15 {
|
666
|
-
background-color: mat-color($mat-dark-purple, B15) !important;
|
667
|
-
}
|
668
|
-
.bgc-dark-deep-purple-B15 {
|
669
|
-
background-color: mat-color($mat-dark-deep-purple, B15) !important;
|
670
|
-
}
|
671
|
-
.bgc-dark-indigo-B15 {
|
672
|
-
background-color: mat-color($mat-dark-indigo, B15) !important;
|
673
|
-
}
|
674
|
-
.bgc-dark-blue-B15 {
|
675
|
-
background-color: mat-color($mat-dark-blue, B15) !important;
|
676
|
-
}
|
677
|
-
.bgc-dark-light-blue-B15 {
|
678
|
-
background-color: mat-color($mat-dark-light-blue, B15) !important;
|
679
|
-
}
|
680
|
-
.bgc-dark-cyan-B15 {
|
681
|
-
background-color: mat-color($mat-dark-cyan, B15) !important;
|
682
|
-
}
|
683
|
-
.bgc-dark-teal-B15 {
|
684
|
-
background-color: mat-color($mat-dark-teal, B15) !important;
|
685
|
-
}
|
686
|
-
.bgc-dark-green-B15 {
|
687
|
-
background-color: mat-color($mat-dark-green, B15) !important;
|
688
|
-
}
|
689
|
-
.bgc-dark-light-green-B15 {
|
690
|
-
background-color: mat-color($mat-dark-light-green, B15) !important;
|
691
|
-
}
|
692
|
-
.bgc-dark-lime-B15 {
|
693
|
-
background-color: mat-color($mat-dark-lime, B15) !important;
|
694
|
-
}
|
695
|
-
.bgc-dark-yellow-B15 {
|
696
|
-
background-color: mat-color($mat-dark-yellow, B15) !important;
|
697
|
-
}
|
698
|
-
.bgc-dark-amber-B15 {
|
699
|
-
background-color: mat-color($mat-dark-amber, B15) !important;
|
700
|
-
}
|
701
|
-
.bgc-dark-orange-B15 {
|
702
|
-
background-color: mat-color($mat-dark-orange, B15) !important;
|
703
|
-
}
|
704
|
-
.bgc-dark-deep-orange-B15 {
|
705
|
-
background-color: mat-color($mat-dark-deep-orange, B15) !important;
|
706
|
-
}
|
707
|
-
.bgc-dark-brown-B15 {
|
708
|
-
background-color: mat-color($mat-dark-brown, B15) !important;
|
709
|
-
}
|
710
|
-
.bgc-dark-grey-B15 {
|
711
|
-
background-color: mat-color($mat-dark-grey, B15) !important;
|
712
|
-
}
|
713
|
-
.bgc-dark-blue-grey-B15 {
|
714
|
-
background-color: mat-color($mat-dark-blue-grey, B15) !important;
|
715
|
-
}
|
716
|
-
|
717
|
-
// Fill color
|
718
|
-
|
719
|
-
// 500
|
720
|
-
.fill-red-500 {
|
721
|
-
fill: mat-color($mat-dark-red, 500) !important;
|
722
|
-
}
|
723
|
-
.fill-pink-500 {
|
724
|
-
fill: mat-color($mat-dark-pink, 500) !important;
|
725
|
-
}
|
726
|
-
.fill-purple-500 {
|
727
|
-
fill: mat-color($mat-dark-purple, 500) !important;
|
728
|
-
}
|
729
|
-
.fill-deep-purple-500 {
|
730
|
-
fill: mat-color($mat-dark-deep-purple, 500) !important;
|
731
|
-
}
|
732
|
-
.fill-indigo-500 {
|
733
|
-
fill: mat-color($mat-dark-indigo, 500) !important;
|
734
|
-
}
|
735
|
-
.fill-blue-500 {
|
736
|
-
fill: mat-color($mat-dark-blue, 500) !important;
|
737
|
-
}
|
738
|
-
.fill-light-blue-500 {
|
739
|
-
fill: mat-color($mat-dark-light-blue, 500) !important;
|
740
|
-
}
|
741
|
-
.fill-cyan-500 {
|
742
|
-
fill: mat-color($mat-dark-cyan, 500) !important;
|
743
|
-
}
|
744
|
-
.fill-teal-500 {
|
745
|
-
fill: mat-color($mat-dark-teal, 500) !important;
|
746
|
-
}
|
747
|
-
.fill-green-500 {
|
748
|
-
fill: mat-color($mat-dark-green, 500) !important;
|
749
|
-
}
|
750
|
-
.fill-light-green-500 {
|
751
|
-
fill: mat-color($mat-dark-light-green, 500) !important;
|
752
|
-
}
|
753
|
-
.fill-lime-500 {
|
754
|
-
fill: mat-color($mat-dark-lime, 500) !important;
|
755
|
-
}
|
756
|
-
.fill-yellow-500 {
|
757
|
-
fill: mat-color($mat-dark-yellow, 500) !important;
|
758
|
-
}
|
759
|
-
.fill-amber-500 {
|
760
|
-
fill: mat-color($mat-dark-amber, 500) !important;
|
761
|
-
}
|
762
|
-
.fill-orange-500 {
|
763
|
-
fill: mat-color($mat-dark-orange, 500) !important;
|
764
|
-
}
|
765
|
-
.fill-deep-orange-500 {
|
766
|
-
fill: mat-color($mat-dark-deep-orange, 500) !important;
|
767
|
-
}
|
768
|
-
.fill-brown-500 {
|
769
|
-
fill: mat-color($mat-dark-brown, 500) !important;
|
770
|
-
}
|
771
|
-
.fill-grey-500 {
|
772
|
-
fill: mat-color($mat-dark-grey, 500) !important;
|
773
|
-
}
|
774
|
-
.fill-blue-grey-500 {
|
775
|
-
fill: mat-color($mat-dark-blue-grey, 500) !important;
|
776
|
-
}
|
777
|
-
|
778
|
-
// B100
|
779
|
-
.fill-red-B100 {
|
780
|
-
fill: mat-color($mat-dark-red, B100) !important;
|
781
|
-
}
|
782
|
-
.fill-pink-B100 {
|
783
|
-
fill: mat-color($mat-dark-pink, B100) !important;
|
784
|
-
}
|
785
|
-
.fill-purple-B100 {
|
786
|
-
fill: mat-color($mat-dark-purple, B100) !important;
|
787
|
-
}
|
788
|
-
.fill-deep-purple-B100 {
|
789
|
-
fill: mat-color($mat-dark-deep-purple, B100) !important;
|
790
|
-
}
|
791
|
-
.fill-indigo-B100 {
|
792
|
-
fill: mat-color($mat-dark-indigo, B100) !important;
|
793
|
-
}
|
794
|
-
.fill-blue-B100 {
|
795
|
-
fill: mat-color($mat-dark-blue, B100) !important;
|
796
|
-
}
|
797
|
-
.fill-light-blue-B100 {
|
798
|
-
fill: mat-color($mat-dark-light-blue, B100) !important;
|
799
|
-
}
|
800
|
-
.fill-cyan-B100 {
|
801
|
-
fill: mat-color($mat-dark-cyan, B100) !important;
|
802
|
-
}
|
803
|
-
.fill-teal-B100 {
|
804
|
-
fill: mat-color($mat-dark-teal, B100) !important;
|
805
|
-
}
|
806
|
-
.fill-green-B100 {
|
807
|
-
fill: mat-color($mat-dark-green, B100) !important;
|
808
|
-
}
|
809
|
-
.fill-light-green-B100 {
|
810
|
-
fill: mat-color($mat-dark-light-green, B100) !important;
|
811
|
-
}
|
812
|
-
.fill-lime-B100 {
|
813
|
-
fill: mat-color($mat-dark-lime, B100) !important;
|
814
|
-
}
|
815
|
-
.fill-yellow-B100 {
|
816
|
-
fill: mat-color($mat-dark-yellow, B100) !important;
|
817
|
-
}
|
818
|
-
.fill-amber-B100 {
|
819
|
-
fill: mat-color($mat-dark-amber, B100) !important;
|
820
|
-
}
|
821
|
-
.fill-orange-B100 {
|
822
|
-
fill: mat-color($mat-dark-orange, B100) !important;
|
823
|
-
}
|
824
|
-
.fill-deep-orange-B100 {
|
825
|
-
fill: mat-color($mat-dark-deep-orange, B100) !important;
|
826
|
-
}
|
827
|
-
.fill-brown-B100 {
|
828
|
-
fill: mat-color($mat-dark-brown, B100) !important;
|
829
|
-
}
|
830
|
-
.fill-grey-B100 {
|
831
|
-
fill: mat-color($mat-dark-grey, B100) !important;
|
832
|
-
}
|
833
|
-
.fill-blue-grey-B100 {
|
834
|
-
fill: mat-color($mat-dark-blue-grey, B100) !important;
|
835
|
-
}
|
836
|
-
|
837
|
-
// B65
|
838
|
-
.fill-red-B65 {
|
839
|
-
fill: mat-color($mat-dark-red, B65) !important;
|
840
|
-
}
|
841
|
-
.fill-pink-B65 {
|
842
|
-
fill: mat-color($mat-dark-pink, B65) !important;
|
843
|
-
}
|
844
|
-
.fill-purple-B65 {
|
845
|
-
fill: mat-color($mat-dark-purple, B65) !important;
|
846
|
-
}
|
847
|
-
.fill-deep-purple-B65 {
|
848
|
-
fill: mat-color($mat-dark-deep-purple, B65) !important;
|
849
|
-
}
|
850
|
-
.fill-indigo-B65 {
|
851
|
-
fill: mat-color($mat-dark-indigo, B65) !important;
|
852
|
-
}
|
853
|
-
.fill-blue-B65 {
|
854
|
-
fill: mat-color($mat-dark-blue, B65) !important;
|
855
|
-
}
|
856
|
-
.fill-light-blue-B65 {
|
857
|
-
fill: mat-color($mat-dark-light-blue, B65) !important;
|
858
|
-
}
|
859
|
-
.fill-cyan-B65 {
|
860
|
-
fill: mat-color($mat-dark-cyan, B65) !important;
|
861
|
-
}
|
862
|
-
.fill-teal-B65 {
|
863
|
-
fill: mat-color($mat-dark-teal, B65) !important;
|
864
|
-
}
|
865
|
-
.fill-green-B65 {
|
866
|
-
fill: mat-color($mat-dark-green, B65) !important;
|
867
|
-
}
|
868
|
-
.fill-light-green-B65 {
|
869
|
-
fill: mat-color($mat-dark-light-green, B65) !important;
|
870
|
-
}
|
871
|
-
.fill-lime-B65 {
|
872
|
-
fill: mat-color($mat-dark-lime, B65) !important;
|
873
|
-
}
|
874
|
-
.fill-yellow-B65 {
|
875
|
-
fill: mat-color($mat-dark-yellow, B65) !important;
|
876
|
-
}
|
877
|
-
.fill-amber-B65 {
|
878
|
-
fill: mat-color($mat-dark-amber, B65) !important;
|
879
|
-
}
|
880
|
-
.fill-orange-B65 {
|
881
|
-
fill: mat-color($mat-dark-orange, B65) !important;
|
882
|
-
}
|
883
|
-
.fill-deep-orange-B65 {
|
884
|
-
fill: mat-color($mat-dark-deep-orange, B65) !important;
|
885
|
-
}
|
886
|
-
.fill-brown-B65 {
|
887
|
-
fill: mat-color($mat-dark-brown, B65) !important;
|
888
|
-
}
|
889
|
-
.fill-grey-B65 {
|
890
|
-
fill: mat-color($mat-dark-grey, B65) !important;
|
891
|
-
}
|
892
|
-
.fill-blue-grey-B65 {
|
893
|
-
fill: mat-color($mat-dark-blue-grey, B65) !important;
|
894
|
-
}
|
895
|
-
|
896
|
-
// B40
|
897
|
-
.fill-red-B40 {
|
898
|
-
fill: mat-color($mat-dark-red, B40) !important;
|
899
|
-
}
|
900
|
-
.fill-pink-B40 {
|
901
|
-
fill: mat-color($mat-dark-pink, B40) !important;
|
902
|
-
}
|
903
|
-
.fill-purple-B40 {
|
904
|
-
fill: mat-color($mat-dark-purple, B40) !important;
|
905
|
-
}
|
906
|
-
.fill-deep-purple-B40 {
|
907
|
-
fill: mat-color($mat-dark-deep-purple, B40) !important;
|
908
|
-
}
|
909
|
-
.fill-indigo-B40 {
|
910
|
-
fill: mat-color($mat-dark-indigo, B40) !important;
|
911
|
-
}
|
912
|
-
.fill-blue-B40 {
|
913
|
-
fill: mat-color($mat-dark-blue, B40) !important;
|
914
|
-
}
|
915
|
-
.fill-light-blue-B40 {
|
916
|
-
fill: mat-color($mat-dark-light-blue, B40) !important;
|
917
|
-
}
|
918
|
-
.fill-cyan-B40 {
|
919
|
-
fill: mat-color($mat-dark-cyan, B40) !important;
|
920
|
-
}
|
921
|
-
.fill-teal-B40 {
|
922
|
-
fill: mat-color($mat-dark-teal, B40) !important;
|
923
|
-
}
|
924
|
-
.fill-green-B40 {
|
925
|
-
fill: mat-color($mat-dark-green, B40) !important;
|
926
|
-
}
|
927
|
-
.fill-light-green-B40 {
|
928
|
-
fill: mat-color($mat-dark-light-green, B40) !important;
|
929
|
-
}
|
930
|
-
.fill-lime-B40 {
|
931
|
-
fill: mat-color($mat-dark-lime, B40) !important;
|
932
|
-
}
|
933
|
-
.fill-yellow-B40 {
|
934
|
-
fill: mat-color($mat-dark-yellow, B40) !important;
|
935
|
-
}
|
936
|
-
.fill-amber-B40 {
|
937
|
-
fill: mat-color($mat-dark-amber, B40) !important;
|
938
|
-
}
|
939
|
-
.fill-orange-B40 {
|
940
|
-
fill: mat-color($mat-dark-orange, B40) !important;
|
941
|
-
}
|
942
|
-
.fill-deep-orange-B40 {
|
943
|
-
fill: mat-color($mat-dark-deep-orange, B40) !important;
|
944
|
-
}
|
945
|
-
.fill-brown-B40 {
|
946
|
-
fill: mat-color($mat-dark-brown, B40) !important;
|
947
|
-
}
|
948
|
-
.fill-grey-B40 {
|
949
|
-
fill: mat-color($mat-dark-grey, B40) !important;
|
950
|
-
}
|
951
|
-
.fill-blue-grey-B40 {
|
952
|
-
fill: mat-color($mat-dark-blue-grey, B40) !important;
|
953
|
-
}
|
954
|
-
|
955
|
-
// B30
|
956
|
-
.fill-red-B30 {
|
957
|
-
fill: mat-color($mat-dark-red, B30) !important;
|
958
|
-
}
|
959
|
-
.fill-pink-B30 {
|
960
|
-
fill: mat-color($mat-dark-pink, B30) !important;
|
961
|
-
}
|
962
|
-
.fill-purple-B30 {
|
963
|
-
fill: mat-color($mat-dark-purple, B30) !important;
|
964
|
-
}
|
965
|
-
.fill-deep-purple-B30 {
|
966
|
-
fill: mat-color($mat-dark-deep-purple, B30) !important;
|
967
|
-
}
|
968
|
-
.fill-indigo-B30 {
|
969
|
-
fill: mat-color($mat-dark-indigo, B30) !important;
|
970
|
-
}
|
971
|
-
.fill-blue-B30 {
|
972
|
-
fill: mat-color($mat-dark-blue, B30) !important;
|
973
|
-
}
|
974
|
-
.fill-light-blue-B30 {
|
975
|
-
fill: mat-color($mat-dark-light-blue, B30) !important;
|
976
|
-
}
|
977
|
-
.fill-cyan-B30 {
|
978
|
-
fill: mat-color($mat-dark-cyan, B30) !important;
|
979
|
-
}
|
980
|
-
.fill-teal-B30 {
|
981
|
-
fill: mat-color($mat-dark-teal, B30) !important;
|
982
|
-
}
|
983
|
-
.fill-green-B30 {
|
984
|
-
fill: mat-color($mat-dark-green, B30) !important;
|
985
|
-
}
|
986
|
-
.fill-light-green-B30 {
|
987
|
-
fill: mat-color($mat-dark-light-green, B30) !important;
|
988
|
-
}
|
989
|
-
.fill-lime-B30 {
|
990
|
-
fill: mat-color($mat-dark-lime, B30) !important;
|
991
|
-
}
|
992
|
-
.fill-yellow-B30 {
|
993
|
-
fill: mat-color($mat-dark-yellow, B30) !important;
|
994
|
-
}
|
995
|
-
.fill-amber-B30 {
|
996
|
-
fill: mat-color($mat-dark-amber, B30) !important;
|
997
|
-
}
|
998
|
-
.fill-orange-B30 {
|
999
|
-
fill: mat-color($mat-dark-orange, B30) !important;
|
1000
|
-
}
|
1001
|
-
.fill-deep-orange-B30 {
|
1002
|
-
fill: mat-color($mat-dark-deep-orange, B30) !important;
|
1003
|
-
}
|
1004
|
-
.fill-brown-B30 {
|
1005
|
-
fill: mat-color($mat-dark-brown, B30) !important;
|
1006
|
-
}
|
1007
|
-
.fill-grey-B30 {
|
1008
|
-
fill: mat-color($mat-dark-grey, B30) !important;
|
1009
|
-
}
|
1010
|
-
.fill-blue-grey-B30 {
|
1011
|
-
fill: mat-color($mat-dark-blue-grey, B30) !important;
|
1012
|
-
}
|
1013
|
-
|
1014
|
-
// B15
|
1015
|
-
.fill-red-B15 {
|
1016
|
-
fill: mat-color($mat-dark-red, B15) !important;
|
1017
|
-
}
|
1018
|
-
.fill-pink-B15 {
|
1019
|
-
fill: mat-color($mat-dark-pink, B15) !important;
|
1020
|
-
}
|
1021
|
-
.fill-purple-B15 {
|
1022
|
-
fill: mat-color($mat-dark-purple, B15) !important;
|
1023
|
-
}
|
1024
|
-
.fill-deep-purple-B15 {
|
1025
|
-
fill: mat-color($mat-dark-deep-purple, B15) !important;
|
1026
|
-
}
|
1027
|
-
.fill-indigo-B15 {
|
1028
|
-
fill: mat-color($mat-dark-indigo, B15) !important;
|
1029
|
-
}
|
1030
|
-
.fill-blue-B15 {
|
1031
|
-
fill: mat-color($mat-dark-blue, B15) !important;
|
1032
|
-
}
|
1033
|
-
.fill-light-blue-B15 {
|
1034
|
-
fill: mat-color($mat-dark-light-blue, B15) !important;
|
1035
|
-
}
|
1036
|
-
.fill-cyan-B15 {
|
1037
|
-
fill: mat-color($mat-dark-cyan, B15) !important;
|
1038
|
-
}
|
1039
|
-
.fill-teal-B15 {
|
1040
|
-
fill: mat-color($mat-dark-teal, B15) !important;
|
1041
|
-
}
|
1042
|
-
.fill-green-B15 {
|
1043
|
-
fill: mat-color($mat-dark-green, B15) !important;
|
1044
|
-
}
|
1045
|
-
.fill-light-green-B15 {
|
1046
|
-
fill: mat-color($mat-dark-light-green, B15) !important;
|
1047
|
-
}
|
1048
|
-
.fill-lime-B15 {
|
1049
|
-
fill: mat-color($mat-dark-lime, B15) !important;
|
1050
|
-
}
|
1051
|
-
.fill-yellow-B15 {
|
1052
|
-
fill: mat-color($mat-dark-yellow, B15) !important;
|
1053
|
-
}
|
1054
|
-
.fill-amber-B15 {
|
1055
|
-
fill: mat-color($mat-dark-amber, B15) !important;
|
1056
|
-
}
|
1057
|
-
.fill-orange-B15 {
|
1058
|
-
fill: mat-color($mat-dark-orange, B15) !important;
|
1059
|
-
}
|
1060
|
-
.fill-deep-orange-B15 {
|
1061
|
-
fill: mat-color($mat-dark-deep-orange, B15) !important;
|
1062
|
-
}
|
1063
|
-
.fill-brown-B15 {
|
1064
|
-
fill: mat-color($mat-dark-brown, B15) !important;
|
1065
|
-
}
|
1066
|
-
.fill-grey-B15 {
|
1067
|
-
fill: mat-color($mat-dark-grey, B15) !important;
|
1068
|
-
}
|
1069
|
-
.fill-blue-grey-B15 {
|
1070
|
-
fill: mat-color($mat-dark-blue-grey, B15) !important;
|
1071
|
-
}
|
1072
|
-
}
|