@covalent/core 4.0.0-beta.2 → 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 +3 -1
- package/breadcrumbs/breadcrumbs.component.d.ts +1 -0
- package/breadcrumbs/covalent-core-breadcrumbs.d.ts +1 -1
- package/breadcrumbs/{public-api.d.ts → public_api.d.ts} +0 -0
- package/common/README.md +3 -0
- package/common/_common-theme.scss +1 -1
- package/common/behaviors/disable-ripple.mixin.d.ts +1 -1
- package/common/behaviors/disabled.mixin.d.ts +1 -1
- package/common/covalent-core-common.d.ts +1 -1
- package/common/pipes/truncate/truncate.pipe.d.ts +1 -1
- package/common/{public-api.d.ts → public_api.d.ts} +0 -0
- package/common/styles/font/README.md +4 -2
- package/covalent-core.d.ts +1 -1
- package/dialogs/README.md +38 -30
- package/dialogs/alert-dialog/alert-dialog.component.d.ts +3 -3
- package/dialogs/confirm-dialog/confirm-dialog.component.d.ts +2 -2
- package/dialogs/covalent-core-dialogs.d.ts +1 -1
- package/dialogs/dialog.component.d.ts +4 -4
- package/dialogs/dialogs.module.d.ts +1 -1
- package/dialogs/prompt-dialog/prompt-dialog.component.d.ts +3 -3
- package/dialogs/{public-api.d.ts → public_api.d.ts} +0 -0
- package/dialogs/src/README.md +223 -0
- package/dialogs/window-dialog/window-dialog.component.d.ts +5 -5
- package/dynamic-menu/README.md +6 -6
- package/dynamic-menu/covalent-core-dynamic-menu.d.ts +1 -1
- package/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.d.ts +1 -1
- package/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.d.ts +1 -1
- package/dynamic-menu/dynamic-menu.component.d.ts +1 -22
- package/dynamic-menu/dynamic-menu.menu.d.ts +22 -0
- package/dynamic-menu/public_api.d.ts +1 -0
- package/esm2020/breadcrumbs/breadcrumb/breadcrumb.component.mjs +21 -37
- package/esm2020/breadcrumbs/breadcrumbs.component.mjs +20 -25
- package/esm2020/breadcrumbs/breadcrumbs.module.mjs +12 -13
- package/esm2020/breadcrumbs/covalent-core-breadcrumbs.mjs +2 -2
- package/esm2020/breadcrumbs/public_api.mjs +4 -0
- package/esm2020/common/animations/bounce/bounce.animation.mjs +1 -1
- package/esm2020/common/animations/collapse/collapse.animation.mjs +1 -1
- package/esm2020/common/animations/common/interfaces.mjs +1 -1
- package/esm2020/common/animations/fade/fadeInOut.animation.mjs +1 -1
- package/esm2020/common/animations/flash/flash.animation.mjs +1 -1
- package/esm2020/common/animations/headshake/headshake.animation.mjs +17 -5
- package/esm2020/common/animations/jello/jello.animation.mjs +29 -8
- package/esm2020/common/animations/pulse/pulse.animation.mjs +1 -1
- package/esm2020/common/animations/rotate/rotate.animation.mjs +7 -2
- package/esm2020/common/behaviors/control-value-accesor.mixin.mjs +4 -2
- package/esm2020/common/behaviors/disable-ripple.mixin.mjs +1 -1
- package/esm2020/common/behaviors/disabled.mixin.mjs +1 -1
- package/esm2020/common/common.module.mjs +14 -15
- package/esm2020/common/covalent-core-common.mjs +2 -2
- package/esm2020/common/directives/fullscreen/fullscreen.directive.mjs +41 -41
- package/esm2020/common/forms/auto-trim/auto-trim.directive.mjs +19 -19
- package/esm2020/common/forms/validators/validators.mjs +6 -6
- package/esm2020/common/functions/clipboard.mjs +1 -1
- package/esm2020/common/functions/convert.mjs +1 -1
- package/esm2020/common/functions/download.mjs +1 -1
- package/esm2020/common/functions/file.mjs +1 -1
- package/esm2020/common/pipes/bytes/bytes.pipe.mjs +21 -11
- package/esm2020/common/pipes/decimal-bytes/decimal-bytes.pipe.mjs +21 -11
- package/esm2020/common/pipes/digits/digits.pipe.mjs +13 -13
- package/esm2020/common/pipes/time-ago/time-ago.pipe.mjs +9 -9
- package/esm2020/common/pipes/time-difference/time-difference.pipe.mjs +9 -9
- package/esm2020/common/pipes/time-until/time-until.pipe.mjs +9 -9
- package/esm2020/common/pipes/truncate/truncate.pipe.mjs +10 -10
- package/esm2020/common/public_api.mjs +39 -0
- package/esm2020/common/services/icon.service.mjs +6 -6
- package/esm2020/common/services/router-path.service.mjs +6 -6
- package/esm2020/covalent-core.mjs +2 -2
- package/esm2020/dialogs/alert-dialog/alert-dialog.component.mjs +9 -40
- package/esm2020/dialogs/confirm-dialog/confirm-dialog.component.mjs +9 -49
- package/esm2020/dialogs/covalent-core-dialogs.mjs +2 -2
- package/esm2020/dialogs/dialog.component.mjs +35 -76
- package/esm2020/dialogs/dialogs.module.mjs +39 -36
- package/esm2020/dialogs/prompt-dialog/prompt-dialog.component.mjs +15 -73
- package/esm2020/dialogs/public_api.mjs +9 -0
- package/esm2020/dialogs/resizable-draggable-dialog/resizable-draggable-dialog.mjs +27 -10
- package/esm2020/dialogs/services/dialog.service.mjs +16 -13
- package/esm2020/dialogs/window-dialog/window-dialog.component.mjs +24 -55
- package/esm2020/dynamic-menu/covalent-core-dynamic-menu.mjs +2 -2
- package/esm2020/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.mjs +19 -136
- package/esm2020/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.mjs +14 -103
- package/esm2020/dynamic-menu/dynamic-menu.component.mjs +18 -101
- package/esm2020/dynamic-menu/dynamic-menu.menu.mjs +2 -0
- package/esm2020/dynamic-menu/dynamic-menu.module.mjs +44 -19
- package/esm2020/dynamic-menu/public_api.mjs +2 -1
- package/esm2020/file/covalent-core-file.mjs +2 -2
- package/esm2020/file/directives/file-drop.directive.mjs +46 -47
- package/esm2020/file/directives/file-select.directive.mjs +32 -31
- package/esm2020/file/file-input/file-input.component.mjs +41 -68
- package/esm2020/file/file-upload/file-upload.component.mjs +76 -112
- package/esm2020/file/file.module.mjs +32 -17
- package/esm2020/file/public_api.mjs +7 -0
- package/esm2020/file/services/file.service.mjs +13 -11
- package/esm2020/json-formatter/collapse.animation.mjs +51 -0
- package/esm2020/json-formatter/covalent-core-json-formatter.mjs +2 -2
- package/esm2020/json-formatter/json-formatter.component.mjs +38 -123
- package/esm2020/json-formatter/json-formatter.module.mjs +12 -13
- package/esm2020/json-formatter/public_api.mjs +3 -0
- package/esm2020/layout/covalent-core-layout.mjs +2 -2
- package/esm2020/layout/layout-card-over/layout-card-over.component.mjs +17 -64
- package/esm2020/layout/layout-footer/layout-footer.component.mjs +9 -14
- package/esm2020/layout/layout-manage-list/layout-manage-list.component.mjs +22 -51
- package/esm2020/layout/layout-manage-list/layout-manage-list.directives.mjs +47 -53
- package/esm2020/layout/layout-nav/layout-nav.component.mjs +22 -84
- package/esm2020/layout/layout-nav-list/layout-nav-list.component.mjs +37 -124
- package/esm2020/layout/layout-nav-list/layout-nav-list.directives.mjs +47 -53
- package/esm2020/layout/layout-toggle.class.mjs +12 -15
- package/esm2020/layout/layout.component.mjs +22 -43
- package/esm2020/layout/layout.directives.mjs +48 -50
- package/esm2020/layout/layout.module.mjs +34 -35
- package/esm2020/layout/navigation-drawer/navigation-drawer.component.mjs +56 -201
- package/esm2020/layout/public_api.mjs +13 -0
- package/esm2020/menu/covalent-core-menu.mjs +2 -2
- package/esm2020/menu/menu.component.mjs +7 -18
- package/esm2020/menu/menu.module.mjs +12 -13
- package/esm2020/menu/public_api.mjs +3 -0
- package/esm2020/message/collapse.animation.mjs +51 -0
- package/esm2020/message/covalent-core-message.mjs +2 -2
- package/esm2020/message/message.component.mjs +44 -102
- package/esm2020/message/message.module.mjs +19 -15
- package/esm2020/message/public_api.mjs +3 -0
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/search/covalent-core-search.mjs +2 -2
- package/esm2020/search/public_api.mjs +4 -0
- package/esm2020/search/search-box/search-box.component.mjs +97 -123
- package/esm2020/search/search-input/search-input.component.mjs +116 -153
- package/esm2020/search/search.module.mjs +28 -13
- package/esm2020/side-sheet/covalent-core-side-sheet.mjs +2 -2
- package/esm2020/side-sheet/public_api.mjs +6 -0
- package/esm2020/side-sheet/side-sheet-container.mjs +89 -57
- package/esm2020/side-sheet/side-sheet-ref.mjs +2 -2
- package/esm2020/side-sheet/side-sheet.animation.mjs +2 -2
- package/esm2020/side-sheet/side-sheet.config.mjs +1 -1
- package/esm2020/side-sheet/side-sheet.content-directives.mjs +109 -86
- package/esm2020/side-sheet/side-sheet.mjs +44 -31
- package/esm2020/side-sheet/side-sheet.module.mjs +37 -38
- package/esm2020/user-profile/covalent-core-user-profile.mjs +2 -2
- package/esm2020/user-profile/public_api.mjs +1 -1
- package/esm2020/user-profile/user-profile-menu/user-profile-menu.component.mjs +13 -64
- package/esm2020/user-profile/user-profile.component.mjs +13 -35
- package/esm2020/user-profile/user-profile.module.mjs +32 -14
- package/fesm2015/covalent-core-breadcrumbs.mjs +35 -76
- package/fesm2015/covalent-core-breadcrumbs.mjs.map +1 -1
- package/fesm2015/covalent-core-common.mjs +170 -140
- package/fesm2015/covalent-core-common.mjs.map +1 -1
- package/fesm2015/covalent-core-dialogs.mjs +125 -358
- package/fesm2015/covalent-core-dialogs.mjs.map +1 -1
- package/fesm2015/covalent-core-dynamic-menu.mjs +73 -425
- package/fesm2015/covalent-core-dynamic-menu.mjs.map +1 -1
- package/fesm2015/covalent-core-file.mjs +148 -233
- package/fesm2015/covalent-core-file.mjs.map +1 -1
- package/fesm2015/covalent-core-json-formatter.mjs +93 -148
- package/fesm2015/covalent-core-json-formatter.mjs.map +1 -1
- package/fesm2015/covalent-core-layout.mjs +194 -747
- package/fesm2015/covalent-core-layout.mjs.map +1 -1
- package/fesm2015/covalent-core-menu.mjs +10 -28
- package/fesm2015/covalent-core-menu.mjs.map +1 -1
- package/fesm2015/covalent-core-message.mjs +79 -104
- package/fesm2015/covalent-core-message.mjs.map +1 -1
- package/fesm2015/covalent-core-search.mjs +147 -227
- package/fesm2015/covalent-core-search.mjs.map +1 -1
- package/fesm2015/covalent-core-side-sheet.mjs +202 -173
- package/fesm2015/covalent-core-side-sheet.mjs.map +1 -1
- package/fesm2015/covalent-core-user-profile.mjs +38 -114
- package/fesm2015/covalent-core-user-profile.mjs.map +1 -1
- package/fesm2015/covalent-core.mjs.map +1 -1
- package/fesm2020/covalent-core-breadcrumbs.mjs +49 -71
- package/fesm2020/covalent-core-breadcrumbs.mjs.map +1 -1
- package/fesm2020/covalent-core-common.mjs +224 -165
- package/fesm2020/covalent-core-common.mjs.map +1 -1
- package/fesm2020/covalent-core-dialogs.mjs +160 -338
- package/fesm2020/covalent-core-dialogs.mjs.map +1 -1
- package/fesm2020/covalent-core-dynamic-menu.mjs +89 -354
- package/fesm2020/covalent-core-dynamic-menu.mjs.map +1 -1
- package/fesm2020/covalent-core-file.mjs +229 -273
- package/fesm2020/covalent-core-file.mjs.map +1 -1
- package/fesm2020/covalent-core-json-formatter.mjs +97 -133
- package/fesm2020/covalent-core-json-formatter.mjs.map +1 -1
- package/fesm2020/covalent-core-layout.mjs +353 -767
- package/fesm2020/covalent-core-layout.mjs.map +1 -1
- package/fesm2020/covalent-core-menu.mjs +17 -29
- package/fesm2020/covalent-core-menu.mjs.map +1 -1
- package/fesm2020/covalent-core-message.mjs +110 -114
- package/fesm2020/covalent-core-message.mjs.map +1 -1
- package/fesm2020/covalent-core-search.mjs +233 -281
- package/fesm2020/covalent-core-search.mjs.map +1 -1
- package/fesm2020/covalent-core-side-sheet.mjs +267 -200
- package/fesm2020/covalent-core-side-sheet.mjs.map +1 -1
- package/fesm2020/covalent-core-user-profile.mjs +54 -109
- package/fesm2020/covalent-core-user-profile.mjs.map +1 -1
- package/fesm2020/covalent-core.mjs.map +1 -1
- package/file/_file-theme.scss +2 -1
- package/file/covalent-core-file.d.ts +1 -1
- package/file/directives/file-drop.directive.d.ts +6 -7
- package/file/directives/file-select.directive.d.ts +2 -2
- package/file/file-input/file-input.component.d.ts +7 -7
- package/file/file-upload/file-upload.component.d.ts +16 -9
- package/file/{public-api.d.ts → public_api.d.ts} +0 -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/collapse.animation.d.ts +24 -0
- package/json-formatter/covalent-core-json-formatter.d.ts +1 -1
- package/json-formatter/json-formatter.component.d.ts +4 -4
- package/json-formatter/{public-api.d.ts → public_api.d.ts} +0 -0
- package/layout/README.md +48 -50
- package/layout/covalent-core-layout.d.ts +1 -1
- package/layout/layout-card-over/layout-card-over.component.d.ts +3 -3
- package/layout/layout-footer/layout-footer.component.d.ts +3 -3
- package/layout/layout-manage-list/layout-manage-list.component.d.ts +4 -4
- package/layout/layout-manage-list/layout-manage-list.directives.d.ts +5 -5
- package/layout/layout-nav/layout-nav.component.d.ts +5 -5
- package/layout/layout-nav-list/layout-nav-list.component.d.ts +9 -9
- package/layout/layout-nav-list/layout-nav-list.directives.d.ts +5 -5
- package/layout/layout-toggle.class.d.ts +1 -1
- package/layout/layout.component.d.ts +4 -4
- package/layout/layout.directives.d.ts +2 -2
- package/layout/navigation-drawer/navigation-drawer.component.d.ts +12 -12
- 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 +1 -1
- package/menu/{public-api.d.ts → public_api.d.ts} +0 -0
- package/message/README.md +26 -18
- package/message/collapse.animation.d.ts +24 -0
- package/message/covalent-core-message.d.ts +1 -1
- package/message/message.component.d.ts +4 -4
- package/message/{public-api.d.ts → public_api.d.ts} +0 -0
- package/package.json +36 -55
- package/{index.d.ts → public_api.d.ts} +0 -0
- package/search/README.md +74 -73
- package/search/covalent-core-search.d.ts +1 -1
- package/search/{public-api.d.ts → public_api.d.ts} +0 -0
- package/search/search-box/search-box.component.d.ts +10 -6
- package/search/search-input/search-input.component.d.ts +10 -6
- 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 +1 -1
- package/side-sheet/{public-api.d.ts → public_api.d.ts} +0 -0
- package/side-sheet/side-sheet-container.d.ts +18 -7
- package/side-sheet/side-sheet.content-directives.d.ts +22 -16
- package/side-sheet/side-sheet.d.ts +2 -2
- package/side-sheet/side-sheet.module.d.ts +1 -1
- package/user-profile/README.md +5 -5
- package/user-profile/covalent-core-user-profile.d.ts +1 -1
- package/user-profile/user-profile-menu/user-profile-menu.component.d.ts +2 -2
- package/user-profile/user-profile.component.d.ts +2 -2
- package/breadcrumbs/breadcrumb/breadcrumb.component.scss +0 -25
- package/breadcrumbs/breadcrumbs.component.scss +0 -8
- package/breadcrumbs/index.d.ts +0 -1
- package/common/index.d.ts +0 -1
- package/common/material-icons.css +0 -111
- package/common/material-icons.css.map +0 -1
- package/common/material-icons.scss +0 -3
- package/common/platform.css +0 -16819
- 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 -605
- package/common/styles/_palette-dark.scss +0 -326
- package/common/styles/_palette-light.scss +0 -637
- package/common/styles/_rtl.scss +0 -31
- 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 -1399
- package/common/styles/colors/_colors-light.scss +0 -3235
- package/common/styles/colors/_colors.scss +0 -7
- package/common/styles/core/_button.scss +0 -60
- package/common/styles/core/_card.scss +0 -184
- package/common/styles/core/_content.scss +0 -43
- package/common/styles/core/_core.scss +0 -23
- package/common/styles/core/_divider.scss +0 -16
- package/common/styles/core/_icons.scss +0 -22
- package/common/styles/core/_list.scss +0 -8
- package/common/styles/core/_sidenav.scss +0 -22
- package/common/styles/core/_structure.scss +0 -127
- package/common/styles/core/_toolbar.scss +0 -53
- 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 -99
- package/common/styles/utilities/_general.scss +0 -65
- 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 -105
- package/common/styles/utilities/_utilities.scss +0 -15
- package/dialogs/alert-dialog/alert-dialog.component.scss +0 -3
- package/dialogs/confirm-dialog/confirm-dialog.component.scss +0 -3
- package/dialogs/dialog.component.scss +0 -49
- package/dialogs/index.d.ts +0 -1
- package/dialogs/prompt-dialog/prompt-dialog.component.scss +0 -16
- package/dialogs/window-dialog/window-dialog.component.scss +0 -31
- package/dynamic-menu/dynamic-menu-item/dynamic-menu-item.component.scss +0 -7
- package/dynamic-menu/dynamic-menu-item/dynamic-menu-link/dynamic-menu-link.component.scss +0 -13
- package/dynamic-menu/dynamic-menu.component.scss +0 -0
- package/dynamic-menu/index.d.ts +0 -1
- package/esm2020/breadcrumbs/index.mjs +0 -2
- package/esm2020/breadcrumbs/public-api.mjs +0 -4
- package/esm2020/common/index.mjs +0 -2
- package/esm2020/common/public-api.mjs +0 -39
- package/esm2020/dialogs/index.mjs +0 -2
- package/esm2020/dialogs/public-api.mjs +0 -9
- package/esm2020/dynamic-menu/index.mjs +0 -2
- package/esm2020/file/index.mjs +0 -2
- package/esm2020/file/public-api.mjs +0 -7
- package/esm2020/index.mjs +0 -2
- package/esm2020/json-formatter/index.mjs +0 -2
- package/esm2020/json-formatter/public-api.mjs +0 -3
- package/esm2020/layout/index.mjs +0 -2
- package/esm2020/layout/public-api.mjs +0 -13
- package/esm2020/menu/index.mjs +0 -2
- package/esm2020/menu/public-api.mjs +0 -3
- package/esm2020/message/index.mjs +0 -2
- package/esm2020/message/public-api.mjs +0 -3
- package/esm2020/search/index.mjs +0 -2
- package/esm2020/search/public-api.mjs +0 -4
- package/esm2020/side-sheet/index.mjs +0 -2
- package/esm2020/side-sheet/public-api.mjs +0 -6
- package/esm2020/user-profile/index.mjs +0 -2
- package/file/file-input/file-input.component.scss +0 -22
- package/file/file-upload/file-upload.component.scss +0 -34
- package/file/index.d.ts +0 -1
- package/json-formatter/index.d.ts +0 -1
- package/json-formatter/json-formatter.component.scss +0 -74
- package/layout/index.d.ts +0 -1
- package/layout/layout-card-over/layout-card-over.component.scss +0 -45
- package/layout/layout-footer/layout-footer.component.scss +0 -4
- package/layout/layout-manage-list/layout-manage-list.component.scss +0 -82
- package/layout/layout-nav/README.md +0 -46
- package/layout/layout-nav/layout-nav.component.scss +0 -54
- package/layout/layout-nav-list/layout-nav-list.component.scss +0 -115
- package/layout/layout.component.scss +0 -16
- package/layout/navigation-drawer/navigation-drawer.component.scss +0 -81
- package/menu/index.d.ts +0 -1
- package/menu/menu.component.scss +0 -51
- package/message/index.d.ts +0 -1
- package/message/message.component.scss +0 -32
- package/schematics/README.md +0 -66
- package/schematics/ng-add/files/theme.scss +0 -64
- package/search/index.d.ts +0 -1
- package/search/search-box/README.md +0 -62
- package/search/search-box/search-box.component.scss +0 -37
- package/search/search-input/README.md +0 -65
- package/search/search-input/search-input.component.scss +0 -75
- package/side-sheet/index.d.ts +0 -1
- package/side-sheet/side-sheet.scss +0 -68
- package/theming/prebuilt/blue-grey-deep-orange.css +0 -2815
- package/theming/prebuilt/blue-grey-deep-orange.css.map +0 -1
- package/theming/prebuilt/blue-grey-deep-orange.scss +0 -20
- package/theming/prebuilt/blue-orange.css +0 -2815
- package/theming/prebuilt/blue-orange.css.map +0 -1
- package/theming/prebuilt/blue-orange.scss +0 -20
- package/theming/prebuilt/indigo-pink.css +0 -2815
- package/theming/prebuilt/indigo-pink.css.map +0 -1
- package/theming/prebuilt/indigo-pink.scss +0 -20
- package/theming/prebuilt/orange-light-blue.css +0 -2815
- package/theming/prebuilt/orange-light-blue.css.map +0 -1
- package/theming/prebuilt/orange-light-blue.scss +0 -20
- package/theming/prebuilt/teal-orange.css +0 -2815
- package/theming/prebuilt/teal-orange.css.map +0 -1
- package/theming/prebuilt/teal-orange.scss +0 -20
- package/user-profile/index.d.ts +0 -1
- package/user-profile/user-profile-menu/user-profile-menu.component.scss +0 -41
@@ -1,1399 +0,0 @@
|
|
1
|
-
/* stylelint-disable selector-class-pattern */
|
2
|
-
|
3
|
-
@import '../theme-functions';
|
4
|
-
@import '../palette-dark';
|
5
|
-
|
6
|
-
@mixin td-colors-dark() {
|
7
|
-
// Text color
|
8
|
-
|
9
|
-
// 500
|
10
|
-
.tc-dark-red-500 {
|
11
|
-
color: mat-color($mat-dark-red, 500) !important;
|
12
|
-
}
|
13
|
-
|
14
|
-
.tc-dark-pink-500 {
|
15
|
-
color: mat-color($mat-dark-pink, 500) !important;
|
16
|
-
}
|
17
|
-
|
18
|
-
.tc-dark-purple-500 {
|
19
|
-
color: mat-color($mat-dark-purple, 500) !important;
|
20
|
-
}
|
21
|
-
|
22
|
-
.tc-dark-deep-purple-500 {
|
23
|
-
color: mat-color($mat-dark-deep-purple, 500) !important;
|
24
|
-
}
|
25
|
-
|
26
|
-
.tc-dark-indigo-500 {
|
27
|
-
color: mat-color($mat-dark-indigo, 500) !important;
|
28
|
-
}
|
29
|
-
|
30
|
-
.tc-dark-blue-500 {
|
31
|
-
color: mat-color($mat-dark-blue, 500) !important;
|
32
|
-
}
|
33
|
-
|
34
|
-
.tc-dark-light-blue-500 {
|
35
|
-
color: mat-color($mat-dark-light-blue, 500) !important;
|
36
|
-
}
|
37
|
-
|
38
|
-
.tc-dark-cyan-500 {
|
39
|
-
color: mat-color($mat-dark-cyan, 500) !important;
|
40
|
-
}
|
41
|
-
|
42
|
-
.tc-dark-teal-500 {
|
43
|
-
color: mat-color($mat-dark-teal, 500) !important;
|
44
|
-
}
|
45
|
-
|
46
|
-
.tc-dark-green-500 {
|
47
|
-
color: mat-color($mat-dark-green, 500) !important;
|
48
|
-
}
|
49
|
-
|
50
|
-
.tc-dark-light-green-500 {
|
51
|
-
color: mat-color($mat-dark-light-green, 500) !important;
|
52
|
-
}
|
53
|
-
|
54
|
-
.tc-dark-lime-500 {
|
55
|
-
color: mat-color($mat-dark-lime, 500) !important;
|
56
|
-
}
|
57
|
-
|
58
|
-
.tc-dark-yellow-500 {
|
59
|
-
color: mat-color($mat-dark-yellow, 500) !important;
|
60
|
-
}
|
61
|
-
|
62
|
-
.tc-dark-amber-500 {
|
63
|
-
color: mat-color($mat-dark-amber, 500) !important;
|
64
|
-
}
|
65
|
-
|
66
|
-
.tc-dark-orange-500 {
|
67
|
-
color: mat-color($mat-dark-orange, 500) !important;
|
68
|
-
}
|
69
|
-
|
70
|
-
.tc-dark-deep-orange-500 {
|
71
|
-
color: mat-color($mat-dark-deep-orange, 500) !important;
|
72
|
-
}
|
73
|
-
|
74
|
-
.tc-dark-brown-500 {
|
75
|
-
color: mat-color($mat-dark-brown, 500) !important;
|
76
|
-
}
|
77
|
-
|
78
|
-
.tc-dark-grey-500 {
|
79
|
-
color: mat-color($mat-dark-grey, 500) !important;
|
80
|
-
}
|
81
|
-
|
82
|
-
.tc-dark-blue-grey-500 {
|
83
|
-
color: mat-color($mat-dark-blue-grey, 500) !important;
|
84
|
-
}
|
85
|
-
|
86
|
-
// B100
|
87
|
-
.tc-dark-red-B100 {
|
88
|
-
color: mat-color($mat-dark-red, B100) !important;
|
89
|
-
}
|
90
|
-
|
91
|
-
.tc-dark-pink-B100 {
|
92
|
-
color: mat-color($mat-dark-pink, B100) !important;
|
93
|
-
}
|
94
|
-
|
95
|
-
.tc-dark-purple-B100 {
|
96
|
-
color: mat-color($mat-dark-purple, B100) !important;
|
97
|
-
}
|
98
|
-
|
99
|
-
.tc-dark-deep-purple-B100 {
|
100
|
-
color: mat-color($mat-dark-deep-purple, B100) !important;
|
101
|
-
}
|
102
|
-
|
103
|
-
.tc-dark-indigo-B100 {
|
104
|
-
color: mat-color($mat-dark-indigo, B100) !important;
|
105
|
-
}
|
106
|
-
|
107
|
-
.tc-dark-blue-B100 {
|
108
|
-
color: mat-color($mat-dark-blue, B100) !important;
|
109
|
-
}
|
110
|
-
|
111
|
-
.tc-dark-light-blue-B100 {
|
112
|
-
color: mat-color($mat-dark-light-blue, B100) !important;
|
113
|
-
}
|
114
|
-
|
115
|
-
.tc-dark-cyan-B100 {
|
116
|
-
color: mat-color($mat-dark-cyan, B100) !important;
|
117
|
-
}
|
118
|
-
|
119
|
-
.tc-dark-teal-B100 {
|
120
|
-
color: mat-color($mat-dark-teal, B100) !important;
|
121
|
-
}
|
122
|
-
|
123
|
-
.tc-dark-green-B100 {
|
124
|
-
color: mat-color($mat-dark-green, B100) !important;
|
125
|
-
}
|
126
|
-
|
127
|
-
.tc-dark-light-green-B100 {
|
128
|
-
color: mat-color($mat-dark-light-green, B100) !important;
|
129
|
-
}
|
130
|
-
|
131
|
-
.tc-dark-lime-B100 {
|
132
|
-
color: mat-color($mat-dark-lime, B100) !important;
|
133
|
-
}
|
134
|
-
|
135
|
-
.tc-dark-yellow-B100 {
|
136
|
-
color: mat-color($mat-dark-yellow, B100) !important;
|
137
|
-
}
|
138
|
-
|
139
|
-
.tc-dark-amber-B100 {
|
140
|
-
color: mat-color($mat-dark-amber, B100) !important;
|
141
|
-
}
|
142
|
-
|
143
|
-
.tc-dark-orange-B100 {
|
144
|
-
color: mat-color($mat-dark-orange, B100) !important;
|
145
|
-
}
|
146
|
-
|
147
|
-
.tc-dark-deep-orange-B100 {
|
148
|
-
color: mat-color($mat-dark-deep-orange, B100) !important;
|
149
|
-
}
|
150
|
-
|
151
|
-
.tc-dark-brown-B100 {
|
152
|
-
color: mat-color($mat-dark-brown, B100) !important;
|
153
|
-
}
|
154
|
-
|
155
|
-
.tc-dark-grey-B100 {
|
156
|
-
color: mat-color($mat-dark-grey, B100) !important;
|
157
|
-
}
|
158
|
-
|
159
|
-
.tc-dark-blue-grey-B100 {
|
160
|
-
color: mat-color($mat-dark-blue-grey, B100) !important;
|
161
|
-
}
|
162
|
-
|
163
|
-
// B65
|
164
|
-
.tc-dark-red-B65 {
|
165
|
-
color: mat-color($mat-dark-red, B65) !important;
|
166
|
-
}
|
167
|
-
|
168
|
-
.tc-dark-pink-B65 {
|
169
|
-
color: mat-color($mat-dark-pink, B65) !important;
|
170
|
-
}
|
171
|
-
|
172
|
-
.tc-dark-purple-B65 {
|
173
|
-
color: mat-color($mat-dark-purple, B65) !important;
|
174
|
-
}
|
175
|
-
|
176
|
-
.tc-dark-deep-purple-B65 {
|
177
|
-
color: mat-color($mat-dark-deep-purple, B65) !important;
|
178
|
-
}
|
179
|
-
|
180
|
-
.tc-dark-indigo-B65 {
|
181
|
-
color: mat-color($mat-dark-indigo, B65) !important;
|
182
|
-
}
|
183
|
-
|
184
|
-
.tc-dark-blue-B65 {
|
185
|
-
color: mat-color($mat-dark-blue, B65) !important;
|
186
|
-
}
|
187
|
-
|
188
|
-
.tc-dark-light-blue-B65 {
|
189
|
-
color: mat-color($mat-dark-light-blue, B65) !important;
|
190
|
-
}
|
191
|
-
|
192
|
-
.tc-dark-cyan-B65 {
|
193
|
-
color: mat-color($mat-dark-cyan, B65) !important;
|
194
|
-
}
|
195
|
-
|
196
|
-
.tc-dark-teal-B65 {
|
197
|
-
color: mat-color($mat-dark-teal, B65) !important;
|
198
|
-
}
|
199
|
-
|
200
|
-
.tc-dark-green-B65 {
|
201
|
-
color: mat-color($mat-dark-green, B65) !important;
|
202
|
-
}
|
203
|
-
|
204
|
-
.tc-dark-light-green-B65 {
|
205
|
-
color: mat-color($mat-dark-light-green, B65) !important;
|
206
|
-
}
|
207
|
-
|
208
|
-
.tc-dark-lime-B65 {
|
209
|
-
color: mat-color($mat-dark-lime, B65) !important;
|
210
|
-
}
|
211
|
-
|
212
|
-
.tc-dark-yellow-B65 {
|
213
|
-
color: mat-color($mat-dark-yellow, B65) !important;
|
214
|
-
}
|
215
|
-
|
216
|
-
.tc-dark-amber-B65 {
|
217
|
-
color: mat-color($mat-dark-amber, B65) !important;
|
218
|
-
}
|
219
|
-
|
220
|
-
.tc-dark-orange-B65 {
|
221
|
-
color: mat-color($mat-dark-orange, B65) !important;
|
222
|
-
}
|
223
|
-
|
224
|
-
.tc-dark-deep-orange-B65 {
|
225
|
-
color: mat-color($mat-dark-deep-orange, B65) !important;
|
226
|
-
}
|
227
|
-
|
228
|
-
.tc-dark-brown-B65 {
|
229
|
-
color: mat-color($mat-dark-brown, B65) !important;
|
230
|
-
}
|
231
|
-
|
232
|
-
.tc-dark-grey-B65 {
|
233
|
-
color: mat-color($mat-dark-grey, B65) !important;
|
234
|
-
}
|
235
|
-
|
236
|
-
.tc-dark-blue-grey-B65 {
|
237
|
-
color: mat-color($mat-dark-blue-grey, B65) !important;
|
238
|
-
}
|
239
|
-
|
240
|
-
// B40
|
241
|
-
.tc-dark-red-B40 {
|
242
|
-
color: mat-color($mat-dark-red, B40) !important;
|
243
|
-
}
|
244
|
-
|
245
|
-
.tc-dark-pink-B40 {
|
246
|
-
color: mat-color($mat-dark-pink, B40) !important;
|
247
|
-
}
|
248
|
-
|
249
|
-
.tc-dark-purple-B40 {
|
250
|
-
color: mat-color($mat-dark-purple, B40) !important;
|
251
|
-
}
|
252
|
-
|
253
|
-
.tc-dark-deep-purple-B40 {
|
254
|
-
color: mat-color($mat-dark-deep-purple, B40) !important;
|
255
|
-
}
|
256
|
-
|
257
|
-
.tc-dark-indigo-B40 {
|
258
|
-
color: mat-color($mat-dark-indigo, B40) !important;
|
259
|
-
}
|
260
|
-
|
261
|
-
.tc-dark-blue-B40 {
|
262
|
-
color: mat-color($mat-dark-blue, B40) !important;
|
263
|
-
}
|
264
|
-
|
265
|
-
.tc-dark-light-blue-B40 {
|
266
|
-
color: mat-color($mat-dark-light-blue, B40) !important;
|
267
|
-
}
|
268
|
-
|
269
|
-
.tc-dark-cyan-B40 {
|
270
|
-
color: mat-color($mat-dark-cyan, B40) !important;
|
271
|
-
}
|
272
|
-
|
273
|
-
.tc-dark-teal-B40 {
|
274
|
-
color: mat-color($mat-dark-teal, B40) !important;
|
275
|
-
}
|
276
|
-
|
277
|
-
.tc-dark-green-B40 {
|
278
|
-
color: mat-color($mat-dark-green, B40) !important;
|
279
|
-
}
|
280
|
-
|
281
|
-
.tc-dark-light-green-B40 {
|
282
|
-
color: mat-color($mat-dark-light-green, B40) !important;
|
283
|
-
}
|
284
|
-
|
285
|
-
.tc-dark-lime-B40 {
|
286
|
-
color: mat-color($mat-dark-lime, B40) !important;
|
287
|
-
}
|
288
|
-
|
289
|
-
.tc-dark-yellow-B40 {
|
290
|
-
color: mat-color($mat-dark-yellow, B40) !important;
|
291
|
-
}
|
292
|
-
|
293
|
-
.tc-dark-amber-B40 {
|
294
|
-
color: mat-color($mat-dark-amber, B40) !important;
|
295
|
-
}
|
296
|
-
|
297
|
-
.tc-dark-orange-B40 {
|
298
|
-
color: mat-color($mat-dark-orange, B40) !important;
|
299
|
-
}
|
300
|
-
|
301
|
-
.tc-dark-deep-orange-B40 {
|
302
|
-
color: mat-color($mat-dark-deep-orange, B40) !important;
|
303
|
-
}
|
304
|
-
|
305
|
-
.tc-dark-brown-B40 {
|
306
|
-
color: mat-color($mat-dark-brown, B40) !important;
|
307
|
-
}
|
308
|
-
|
309
|
-
.tc-dark-grey-B40 {
|
310
|
-
color: mat-color($mat-dark-grey, B40) !important;
|
311
|
-
}
|
312
|
-
|
313
|
-
.tc-dark-blue-grey-B40 {
|
314
|
-
color: mat-color($mat-dark-blue-grey, B40) !important;
|
315
|
-
}
|
316
|
-
|
317
|
-
// B30
|
318
|
-
.tc-dark-red-B30 {
|
319
|
-
color: mat-color($mat-dark-red, B30) !important;
|
320
|
-
}
|
321
|
-
|
322
|
-
.tc-dark-pink-B30 {
|
323
|
-
color: mat-color($mat-dark-pink, B30) !important;
|
324
|
-
}
|
325
|
-
|
326
|
-
.tc-dark-purple-B30 {
|
327
|
-
color: mat-color($mat-dark-purple, B30) !important;
|
328
|
-
}
|
329
|
-
|
330
|
-
.tc-dark-deep-purple-B30 {
|
331
|
-
color: mat-color($mat-dark-deep-purple, B30) !important;
|
332
|
-
}
|
333
|
-
|
334
|
-
.tc-dark-indigo-B30 {
|
335
|
-
color: mat-color($mat-dark-indigo, B30) !important;
|
336
|
-
}
|
337
|
-
|
338
|
-
.tc-dark-blue-B30 {
|
339
|
-
color: mat-color($mat-dark-blue, B30) !important;
|
340
|
-
}
|
341
|
-
|
342
|
-
.tc-dark-light-blue-B30 {
|
343
|
-
color: mat-color($mat-dark-light-blue, B30) !important;
|
344
|
-
}
|
345
|
-
|
346
|
-
.tc-dark-cyan-B30 {
|
347
|
-
color: mat-color($mat-dark-cyan, B30) !important;
|
348
|
-
}
|
349
|
-
|
350
|
-
.tc-dark-teal-B30 {
|
351
|
-
color: mat-color($mat-dark-teal, B30) !important;
|
352
|
-
}
|
353
|
-
|
354
|
-
.tc-dark-green-B30 {
|
355
|
-
color: mat-color($mat-dark-green, B30) !important;
|
356
|
-
}
|
357
|
-
|
358
|
-
.tc-dark-light-green-B30 {
|
359
|
-
color: mat-color($mat-dark-light-green, B30) !important;
|
360
|
-
}
|
361
|
-
|
362
|
-
.tc-dark-lime-B30 {
|
363
|
-
color: mat-color($mat-dark-lime, B30) !important;
|
364
|
-
}
|
365
|
-
|
366
|
-
.tc-dark-yellow-B30 {
|
367
|
-
color: mat-color($mat-dark-yellow, B30) !important;
|
368
|
-
}
|
369
|
-
|
370
|
-
.tc-dark-amber-B30 {
|
371
|
-
color: mat-color($mat-dark-amber, B30) !important;
|
372
|
-
}
|
373
|
-
|
374
|
-
.tc-dark-orange-B30 {
|
375
|
-
color: mat-color($mat-dark-orange, B30) !important;
|
376
|
-
}
|
377
|
-
|
378
|
-
.tc-dark-deep-orange-B30 {
|
379
|
-
color: mat-color($mat-dark-deep-orange, B30) !important;
|
380
|
-
}
|
381
|
-
|
382
|
-
.tc-dark-brown-B30 {
|
383
|
-
color: mat-color($mat-dark-brown, B30) !important;
|
384
|
-
}
|
385
|
-
|
386
|
-
.tc-dark-grey-B30 {
|
387
|
-
color: mat-color($mat-dark-grey, B30) !important;
|
388
|
-
}
|
389
|
-
|
390
|
-
.tc-dark-blue-grey-B30 {
|
391
|
-
color: mat-color($mat-dark-blue-grey, B30) !important;
|
392
|
-
}
|
393
|
-
|
394
|
-
// B15
|
395
|
-
.tc-dark-red-B15 {
|
396
|
-
color: mat-color($mat-dark-red, B15) !important;
|
397
|
-
}
|
398
|
-
|
399
|
-
.tc-dark-pink-B15 {
|
400
|
-
color: mat-color($mat-dark-pink, B15) !important;
|
401
|
-
}
|
402
|
-
|
403
|
-
.tc-dark-purple-B15 {
|
404
|
-
color: mat-color($mat-dark-purple, B15) !important;
|
405
|
-
}
|
406
|
-
|
407
|
-
.tc-dark-deep-purple-B15 {
|
408
|
-
color: mat-color($mat-dark-deep-purple, B15) !important;
|
409
|
-
}
|
410
|
-
|
411
|
-
.tc-dark-indigo-B15 {
|
412
|
-
color: mat-color($mat-dark-indigo, B15) !important;
|
413
|
-
}
|
414
|
-
|
415
|
-
.tc-dark-blue-B15 {
|
416
|
-
color: mat-color($mat-dark-blue, B15) !important;
|
417
|
-
}
|
418
|
-
|
419
|
-
.tc-dark-light-blue-B15 {
|
420
|
-
color: mat-color($mat-dark-light-blue, B15) !important;
|
421
|
-
}
|
422
|
-
|
423
|
-
.tc-dark-cyan-B15 {
|
424
|
-
color: mat-color($mat-dark-cyan, B15) !important;
|
425
|
-
}
|
426
|
-
|
427
|
-
.tc-dark-teal-B15 {
|
428
|
-
color: mat-color($mat-dark-teal, B15) !important;
|
429
|
-
}
|
430
|
-
|
431
|
-
.tc-dark-green-B15 {
|
432
|
-
color: mat-color($mat-dark-green, B15) !important;
|
433
|
-
}
|
434
|
-
|
435
|
-
.tc-dark-light-green-B15 {
|
436
|
-
color: mat-color($mat-dark-light-green, B15) !important;
|
437
|
-
}
|
438
|
-
|
439
|
-
.tc-dark-lime-B15 {
|
440
|
-
color: mat-color($mat-dark-lime, B15) !important;
|
441
|
-
}
|
442
|
-
|
443
|
-
.tc-dark-yellow-B15 {
|
444
|
-
color: mat-color($mat-dark-yellow, B15) !important;
|
445
|
-
}
|
446
|
-
|
447
|
-
.tc-dark-amber-B15 {
|
448
|
-
color: mat-color($mat-dark-amber, B15) !important;
|
449
|
-
}
|
450
|
-
|
451
|
-
.tc-dark-orange-B15 {
|
452
|
-
color: mat-color($mat-dark-orange, B15) !important;
|
453
|
-
}
|
454
|
-
|
455
|
-
.tc-dark-deep-orange-B15 {
|
456
|
-
color: mat-color($mat-dark-deep-orange, B15) !important;
|
457
|
-
}
|
458
|
-
|
459
|
-
.tc-dark-brown-B15 {
|
460
|
-
color: mat-color($mat-dark-brown, B15) !important;
|
461
|
-
}
|
462
|
-
|
463
|
-
.tc-dark-grey-B15 {
|
464
|
-
color: mat-color($mat-dark-grey, B15) !important;
|
465
|
-
}
|
466
|
-
|
467
|
-
.tc-dark-blue-grey-B15 {
|
468
|
-
color: mat-color($mat-dark-blue-grey, B15) !important;
|
469
|
-
}
|
470
|
-
|
471
|
-
// Background color
|
472
|
-
|
473
|
-
// 500
|
474
|
-
.bgc-dark-red-500 {
|
475
|
-
background-color: mat-color($mat-dark-red, 500) !important;
|
476
|
-
}
|
477
|
-
|
478
|
-
.bgc-dark-pink-500 {
|
479
|
-
background-color: mat-color($mat-dark-pink, 500) !important;
|
480
|
-
}
|
481
|
-
|
482
|
-
.bgc-dark-purple-500 {
|
483
|
-
background-color: mat-color($mat-dark-purple, 500) !important;
|
484
|
-
}
|
485
|
-
|
486
|
-
.bgc-dark-deep-purple-500 {
|
487
|
-
background-color: mat-color($mat-dark-deep-purple, 500) !important;
|
488
|
-
}
|
489
|
-
|
490
|
-
.bgc-dark-indigo-500 {
|
491
|
-
background-color: mat-color($mat-dark-indigo, 500) !important;
|
492
|
-
}
|
493
|
-
|
494
|
-
.bgc-dark-blue-500 {
|
495
|
-
background-color: mat-color($mat-dark-blue, 500) !important;
|
496
|
-
}
|
497
|
-
|
498
|
-
.bgc-dark-light-blue-500 {
|
499
|
-
background-color: mat-color($mat-dark-light-blue, 500) !important;
|
500
|
-
}
|
501
|
-
|
502
|
-
.bgc-dark-cyan-500 {
|
503
|
-
background-color: mat-color($mat-dark-cyan, 500) !important;
|
504
|
-
}
|
505
|
-
|
506
|
-
.bgc-dark-teal-500 {
|
507
|
-
background-color: mat-color($mat-dark-teal, 500) !important;
|
508
|
-
}
|
509
|
-
|
510
|
-
.bgc-dark-green-500 {
|
511
|
-
background-color: mat-color($mat-dark-green, 500) !important;
|
512
|
-
}
|
513
|
-
|
514
|
-
.bgc-dark-light-green-500 {
|
515
|
-
background-color: mat-color($mat-dark-light-green, 500) !important;
|
516
|
-
}
|
517
|
-
|
518
|
-
.bgc-dark-lime-500 {
|
519
|
-
background-color: mat-color($mat-dark-lime, 500) !important;
|
520
|
-
}
|
521
|
-
|
522
|
-
.bgc-dark-yellow-500 {
|
523
|
-
background-color: mat-color($mat-dark-yellow, 500) !important;
|
524
|
-
}
|
525
|
-
|
526
|
-
.bgc-dark-amber-500 {
|
527
|
-
background-color: mat-color($mat-dark-amber, 500) !important;
|
528
|
-
}
|
529
|
-
|
530
|
-
.bgc-dark-orange-500 {
|
531
|
-
background-color: mat-color($mat-dark-orange, 500) !important;
|
532
|
-
}
|
533
|
-
|
534
|
-
.bgc-dark-deep-orange-500 {
|
535
|
-
background-color: mat-color($mat-dark-deep-orange, 500) !important;
|
536
|
-
}
|
537
|
-
|
538
|
-
.bgc-dark-brown-500 {
|
539
|
-
background-color: mat-color($mat-dark-brown, 500) !important;
|
540
|
-
}
|
541
|
-
|
542
|
-
.bgc-dark-grey-500 {
|
543
|
-
background-color: mat-color($mat-dark-grey, 500) !important;
|
544
|
-
}
|
545
|
-
|
546
|
-
.bgc-dark-blue-grey-500 {
|
547
|
-
background-color: mat-color($mat-dark-blue-grey, 500) !important;
|
548
|
-
}
|
549
|
-
|
550
|
-
// B100
|
551
|
-
.bgc-dark-red-B100 {
|
552
|
-
background-color: mat-color($mat-dark-red, B100) !important;
|
553
|
-
}
|
554
|
-
|
555
|
-
.bgc-dark-pink-B100 {
|
556
|
-
background-color: mat-color($mat-dark-pink, B100) !important;
|
557
|
-
}
|
558
|
-
|
559
|
-
.bgc-dark-purple-B100 {
|
560
|
-
background-color: mat-color($mat-dark-purple, B100) !important;
|
561
|
-
}
|
562
|
-
|
563
|
-
.bgc-dark-deep-purple-B100 {
|
564
|
-
background-color: mat-color($mat-dark-deep-purple, B100) !important;
|
565
|
-
}
|
566
|
-
|
567
|
-
.bgc-dark-indigo-B100 {
|
568
|
-
background-color: mat-color($mat-dark-indigo, B100) !important;
|
569
|
-
}
|
570
|
-
|
571
|
-
.bgc-dark-blue-B100 {
|
572
|
-
background-color: mat-color($mat-dark-blue, B100) !important;
|
573
|
-
}
|
574
|
-
|
575
|
-
.bgc-dark-light-blue-B100 {
|
576
|
-
background-color: mat-color($mat-dark-light-blue, B100) !important;
|
577
|
-
}
|
578
|
-
|
579
|
-
.bgc-dark-cyan-B100 {
|
580
|
-
background-color: mat-color($mat-dark-cyan, B100) !important;
|
581
|
-
}
|
582
|
-
|
583
|
-
.bgc-dark-teal-B100 {
|
584
|
-
background-color: mat-color($mat-dark-teal, B100) !important;
|
585
|
-
}
|
586
|
-
|
587
|
-
.bgc-dark-green-B100 {
|
588
|
-
background-color: mat-color($mat-dark-green, B100) !important;
|
589
|
-
}
|
590
|
-
|
591
|
-
.bgc-dark-light-green-B100 {
|
592
|
-
background-color: mat-color($mat-dark-light-green, B100) !important;
|
593
|
-
}
|
594
|
-
|
595
|
-
.bgc-dark-lime-B100 {
|
596
|
-
background-color: mat-color($mat-dark-lime, B100) !important;
|
597
|
-
}
|
598
|
-
|
599
|
-
.bgc-dark-yellow-B100 {
|
600
|
-
background-color: mat-color($mat-dark-yellow, B100) !important;
|
601
|
-
}
|
602
|
-
|
603
|
-
.bgc-dark-amber-B100 {
|
604
|
-
background-color: mat-color($mat-dark-amber, B100) !important;
|
605
|
-
}
|
606
|
-
|
607
|
-
.bgc-dark-orange-B100 {
|
608
|
-
background-color: mat-color($mat-dark-orange, B100) !important;
|
609
|
-
}
|
610
|
-
|
611
|
-
.bgc-dark-deep-orange-B100 {
|
612
|
-
background-color: mat-color($mat-dark-deep-orange, B100) !important;
|
613
|
-
}
|
614
|
-
|
615
|
-
.bgc-dark-brown-B100 {
|
616
|
-
background-color: mat-color($mat-dark-brown, B100) !important;
|
617
|
-
}
|
618
|
-
|
619
|
-
.bgc-dark-grey-B100 {
|
620
|
-
background-color: mat-color($mat-dark-grey, B100) !important;
|
621
|
-
}
|
622
|
-
|
623
|
-
.bgc-dark-blue-grey-B100 {
|
624
|
-
background-color: mat-color($mat-dark-blue-grey, B100) !important;
|
625
|
-
}
|
626
|
-
|
627
|
-
// B65
|
628
|
-
.bgc-dark-red-B65 {
|
629
|
-
background-color: mat-color($mat-dark-red, B65) !important;
|
630
|
-
}
|
631
|
-
|
632
|
-
.bgc-dark-pink-B65 {
|
633
|
-
background-color: mat-color($mat-dark-pink, B65) !important;
|
634
|
-
}
|
635
|
-
|
636
|
-
.bgc-dark-purple-B65 {
|
637
|
-
background-color: mat-color($mat-dark-purple, B65) !important;
|
638
|
-
}
|
639
|
-
|
640
|
-
.bgc-dark-deep-purple-B65 {
|
641
|
-
background-color: mat-color($mat-dark-deep-purple, B65) !important;
|
642
|
-
}
|
643
|
-
|
644
|
-
.bgc-dark-indigo-B65 {
|
645
|
-
background-color: mat-color($mat-dark-indigo, B65) !important;
|
646
|
-
}
|
647
|
-
|
648
|
-
.bgc-dark-blue-B65 {
|
649
|
-
background-color: mat-color($mat-dark-blue, B65) !important;
|
650
|
-
}
|
651
|
-
|
652
|
-
.bgc-dark-light-blue-B65 {
|
653
|
-
background-color: mat-color($mat-dark-light-blue, B65) !important;
|
654
|
-
}
|
655
|
-
|
656
|
-
.bgc-dark-cyan-B65 {
|
657
|
-
background-color: mat-color($mat-dark-cyan, B65) !important;
|
658
|
-
}
|
659
|
-
|
660
|
-
.bgc-dark-teal-B65 {
|
661
|
-
background-color: mat-color($mat-dark-teal, B65) !important;
|
662
|
-
}
|
663
|
-
|
664
|
-
.bgc-dark-green-B65 {
|
665
|
-
background-color: mat-color($mat-dark-green, B65) !important;
|
666
|
-
}
|
667
|
-
|
668
|
-
.bgc-dark-light-green-B65 {
|
669
|
-
background-color: mat-color($mat-dark-light-green, B65) !important;
|
670
|
-
}
|
671
|
-
|
672
|
-
.bgc-dark-lime-B65 {
|
673
|
-
background-color: mat-color($mat-dark-lime, B65) !important;
|
674
|
-
}
|
675
|
-
|
676
|
-
.bgc-dark-yellow-B65 {
|
677
|
-
background-color: mat-color($mat-dark-yellow, B65) !important;
|
678
|
-
}
|
679
|
-
|
680
|
-
.bgc-dark-amber-B65 {
|
681
|
-
background-color: mat-color($mat-dark-amber, B65) !important;
|
682
|
-
}
|
683
|
-
|
684
|
-
.bgc-dark-orange-B65 {
|
685
|
-
background-color: mat-color($mat-dark-orange, B65) !important;
|
686
|
-
}
|
687
|
-
|
688
|
-
.bgc-dark-deep-orange-B65 {
|
689
|
-
background-color: mat-color($mat-dark-deep-orange, B65) !important;
|
690
|
-
}
|
691
|
-
|
692
|
-
.bgc-dark-brown-B65 {
|
693
|
-
background-color: mat-color($mat-dark-brown, B65) !important;
|
694
|
-
}
|
695
|
-
|
696
|
-
.bgc-dark-grey-B65 {
|
697
|
-
background-color: mat-color($mat-dark-grey, B65) !important;
|
698
|
-
}
|
699
|
-
|
700
|
-
.bgc-dark-blue-grey-B65 {
|
701
|
-
background-color: mat-color($mat-dark-blue-grey, B65) !important;
|
702
|
-
}
|
703
|
-
|
704
|
-
// B40
|
705
|
-
.bgc-dark-red-B40 {
|
706
|
-
background-color: mat-color($mat-dark-red, B40) !important;
|
707
|
-
}
|
708
|
-
|
709
|
-
.bgc-dark-pink-B40 {
|
710
|
-
background-color: mat-color($mat-dark-pink, B40) !important;
|
711
|
-
}
|
712
|
-
|
713
|
-
.bgc-dark-purple-B40 {
|
714
|
-
background-color: mat-color($mat-dark-purple, B40) !important;
|
715
|
-
}
|
716
|
-
|
717
|
-
.bgc-dark-deep-purple-B40 {
|
718
|
-
background-color: mat-color($mat-dark-deep-purple, B40) !important;
|
719
|
-
}
|
720
|
-
|
721
|
-
.bgc-dark-indigo-B40 {
|
722
|
-
background-color: mat-color($mat-dark-indigo, B40) !important;
|
723
|
-
}
|
724
|
-
|
725
|
-
.bgc-dark-blue-B40 {
|
726
|
-
background-color: mat-color($mat-dark-blue, B40) !important;
|
727
|
-
}
|
728
|
-
|
729
|
-
.bgc-dark-light-blue-B40 {
|
730
|
-
background-color: mat-color($mat-dark-light-blue, B40) !important;
|
731
|
-
}
|
732
|
-
|
733
|
-
.bgc-dark-cyan-B40 {
|
734
|
-
background-color: mat-color($mat-dark-cyan, B40) !important;
|
735
|
-
}
|
736
|
-
|
737
|
-
.bgc-dark-teal-B40 {
|
738
|
-
background-color: mat-color($mat-dark-teal, B40) !important;
|
739
|
-
}
|
740
|
-
|
741
|
-
.bgc-dark-green-B40 {
|
742
|
-
background-color: mat-color($mat-dark-green, B40) !important;
|
743
|
-
}
|
744
|
-
|
745
|
-
.bgc-dark-light-green-B40 {
|
746
|
-
background-color: mat-color($mat-dark-light-green, B40) !important;
|
747
|
-
}
|
748
|
-
|
749
|
-
.bgc-dark-lime-B40 {
|
750
|
-
background-color: mat-color($mat-dark-lime, B40) !important;
|
751
|
-
}
|
752
|
-
|
753
|
-
.bgc-dark-yellow-B40 {
|
754
|
-
background-color: mat-color($mat-dark-yellow, B40) !important;
|
755
|
-
}
|
756
|
-
|
757
|
-
.bgc-dark-amber-B40 {
|
758
|
-
background-color: mat-color($mat-dark-amber, B40) !important;
|
759
|
-
}
|
760
|
-
|
761
|
-
.bgc-dark-orange-B40 {
|
762
|
-
background-color: mat-color($mat-dark-orange, B40) !important;
|
763
|
-
}
|
764
|
-
|
765
|
-
.bgc-dark-deep-orange-B40 {
|
766
|
-
background-color: mat-color($mat-dark-deep-orange, B40) !important;
|
767
|
-
}
|
768
|
-
|
769
|
-
.bgc-dark-brown-B40 {
|
770
|
-
background-color: mat-color($mat-dark-brown, B40) !important;
|
771
|
-
}
|
772
|
-
|
773
|
-
.bgc-dark-grey-B40 {
|
774
|
-
background-color: mat-color($mat-dark-grey, B40) !important;
|
775
|
-
}
|
776
|
-
|
777
|
-
.bgc-dark-blue-grey-B40 {
|
778
|
-
background-color: mat-color($mat-dark-blue-grey, B40) !important;
|
779
|
-
}
|
780
|
-
|
781
|
-
// B30
|
782
|
-
.bgc-dark-red-B30 {
|
783
|
-
background-color: mat-color($mat-dark-red, B30) !important;
|
784
|
-
}
|
785
|
-
|
786
|
-
.bgc-dark-pink-B30 {
|
787
|
-
background-color: mat-color($mat-dark-pink, B30) !important;
|
788
|
-
}
|
789
|
-
|
790
|
-
.bgc-dark-purple-B30 {
|
791
|
-
background-color: mat-color($mat-dark-purple, B30) !important;
|
792
|
-
}
|
793
|
-
|
794
|
-
.bgc-dark-deep-purple-B30 {
|
795
|
-
background-color: mat-color($mat-dark-deep-purple, B30) !important;
|
796
|
-
}
|
797
|
-
|
798
|
-
.bgc-dark-indigo-B30 {
|
799
|
-
background-color: mat-color($mat-dark-indigo, B30) !important;
|
800
|
-
}
|
801
|
-
|
802
|
-
.bgc-dark-blue-B30 {
|
803
|
-
background-color: mat-color($mat-dark-blue, B30) !important;
|
804
|
-
}
|
805
|
-
|
806
|
-
.bgc-dark-light-blue-B30 {
|
807
|
-
background-color: mat-color($mat-dark-light-blue, B30) !important;
|
808
|
-
}
|
809
|
-
|
810
|
-
.bgc-dark-cyan-B30 {
|
811
|
-
background-color: mat-color($mat-dark-cyan, B30) !important;
|
812
|
-
}
|
813
|
-
|
814
|
-
.bgc-dark-teal-B30 {
|
815
|
-
background-color: mat-color($mat-dark-teal, B30) !important;
|
816
|
-
}
|
817
|
-
|
818
|
-
.bgc-dark-green-B30 {
|
819
|
-
background-color: mat-color($mat-dark-green, B30) !important;
|
820
|
-
}
|
821
|
-
|
822
|
-
.bgc-dark-light-green-B30 {
|
823
|
-
background-color: mat-color($mat-dark-light-green, B30) !important;
|
824
|
-
}
|
825
|
-
|
826
|
-
.bgc-dark-lime-B30 {
|
827
|
-
background-color: mat-color($mat-dark-lime, B30) !important;
|
828
|
-
}
|
829
|
-
|
830
|
-
.bgc-dark-yellow-B30 {
|
831
|
-
background-color: mat-color($mat-dark-yellow, B30) !important;
|
832
|
-
}
|
833
|
-
|
834
|
-
.bgc-dark-amber-B30 {
|
835
|
-
background-color: mat-color($mat-dark-amber, B30) !important;
|
836
|
-
}
|
837
|
-
|
838
|
-
.bgc-dark-orange-B30 {
|
839
|
-
background-color: mat-color($mat-dark-orange, B30) !important;
|
840
|
-
}
|
841
|
-
|
842
|
-
.bgc-dark-deep-orange-B30 {
|
843
|
-
background-color: mat-color($mat-dark-deep-orange, B30) !important;
|
844
|
-
}
|
845
|
-
|
846
|
-
.bgc-dark-brown-B30 {
|
847
|
-
background-color: mat-color($mat-dark-brown, B30) !important;
|
848
|
-
}
|
849
|
-
|
850
|
-
.bgc-dark-grey-B30 {
|
851
|
-
background-color: mat-color($mat-dark-grey, B30) !important;
|
852
|
-
}
|
853
|
-
|
854
|
-
.bgc-dark-blue-grey-B30 {
|
855
|
-
background-color: mat-color($mat-dark-blue-grey, B30) !important;
|
856
|
-
}
|
857
|
-
|
858
|
-
// B15
|
859
|
-
.bgc-dark-red-B15 {
|
860
|
-
background-color: mat-color($mat-dark-red, B15) !important;
|
861
|
-
}
|
862
|
-
|
863
|
-
.bgc-dark-pink-B15 {
|
864
|
-
background-color: mat-color($mat-dark-pink, B15) !important;
|
865
|
-
}
|
866
|
-
|
867
|
-
.bgc-dark-purple-B15 {
|
868
|
-
background-color: mat-color($mat-dark-purple, B15) !important;
|
869
|
-
}
|
870
|
-
|
871
|
-
.bgc-dark-deep-purple-B15 {
|
872
|
-
background-color: mat-color($mat-dark-deep-purple, B15) !important;
|
873
|
-
}
|
874
|
-
|
875
|
-
.bgc-dark-indigo-B15 {
|
876
|
-
background-color: mat-color($mat-dark-indigo, B15) !important;
|
877
|
-
}
|
878
|
-
|
879
|
-
.bgc-dark-blue-B15 {
|
880
|
-
background-color: mat-color($mat-dark-blue, B15) !important;
|
881
|
-
}
|
882
|
-
|
883
|
-
.bgc-dark-light-blue-B15 {
|
884
|
-
background-color: mat-color($mat-dark-light-blue, B15) !important;
|
885
|
-
}
|
886
|
-
|
887
|
-
.bgc-dark-cyan-B15 {
|
888
|
-
background-color: mat-color($mat-dark-cyan, B15) !important;
|
889
|
-
}
|
890
|
-
|
891
|
-
.bgc-dark-teal-B15 {
|
892
|
-
background-color: mat-color($mat-dark-teal, B15) !important;
|
893
|
-
}
|
894
|
-
|
895
|
-
.bgc-dark-green-B15 {
|
896
|
-
background-color: mat-color($mat-dark-green, B15) !important;
|
897
|
-
}
|
898
|
-
|
899
|
-
.bgc-dark-light-green-B15 {
|
900
|
-
background-color: mat-color($mat-dark-light-green, B15) !important;
|
901
|
-
}
|
902
|
-
|
903
|
-
.bgc-dark-lime-B15 {
|
904
|
-
background-color: mat-color($mat-dark-lime, B15) !important;
|
905
|
-
}
|
906
|
-
|
907
|
-
.bgc-dark-yellow-B15 {
|
908
|
-
background-color: mat-color($mat-dark-yellow, B15) !important;
|
909
|
-
}
|
910
|
-
|
911
|
-
.bgc-dark-amber-B15 {
|
912
|
-
background-color: mat-color($mat-dark-amber, B15) !important;
|
913
|
-
}
|
914
|
-
|
915
|
-
.bgc-dark-orange-B15 {
|
916
|
-
background-color: mat-color($mat-dark-orange, B15) !important;
|
917
|
-
}
|
918
|
-
|
919
|
-
.bgc-dark-deep-orange-B15 {
|
920
|
-
background-color: mat-color($mat-dark-deep-orange, B15) !important;
|
921
|
-
}
|
922
|
-
|
923
|
-
.bgc-dark-brown-B15 {
|
924
|
-
background-color: mat-color($mat-dark-brown, B15) !important;
|
925
|
-
}
|
926
|
-
|
927
|
-
.bgc-dark-grey-B15 {
|
928
|
-
background-color: mat-color($mat-dark-grey, B15) !important;
|
929
|
-
}
|
930
|
-
|
931
|
-
.bgc-dark-blue-grey-B15 {
|
932
|
-
background-color: mat-color($mat-dark-blue-grey, B15) !important;
|
933
|
-
}
|
934
|
-
|
935
|
-
// Fill color
|
936
|
-
|
937
|
-
// 500
|
938
|
-
.fill-red-500 {
|
939
|
-
fill: mat-color($mat-dark-red, 500) !important;
|
940
|
-
}
|
941
|
-
|
942
|
-
.fill-pink-500 {
|
943
|
-
fill: mat-color($mat-dark-pink, 500) !important;
|
944
|
-
}
|
945
|
-
|
946
|
-
.fill-purple-500 {
|
947
|
-
fill: mat-color($mat-dark-purple, 500) !important;
|
948
|
-
}
|
949
|
-
|
950
|
-
.fill-deep-purple-500 {
|
951
|
-
fill: mat-color($mat-dark-deep-purple, 500) !important;
|
952
|
-
}
|
953
|
-
|
954
|
-
.fill-indigo-500 {
|
955
|
-
fill: mat-color($mat-dark-indigo, 500) !important;
|
956
|
-
}
|
957
|
-
|
958
|
-
.fill-blue-500 {
|
959
|
-
fill: mat-color($mat-dark-blue, 500) !important;
|
960
|
-
}
|
961
|
-
|
962
|
-
.fill-light-blue-500 {
|
963
|
-
fill: mat-color($mat-dark-light-blue, 500) !important;
|
964
|
-
}
|
965
|
-
|
966
|
-
.fill-cyan-500 {
|
967
|
-
fill: mat-color($mat-dark-cyan, 500) !important;
|
968
|
-
}
|
969
|
-
|
970
|
-
.fill-teal-500 {
|
971
|
-
fill: mat-color($mat-dark-teal, 500) !important;
|
972
|
-
}
|
973
|
-
|
974
|
-
.fill-green-500 {
|
975
|
-
fill: mat-color($mat-dark-green, 500) !important;
|
976
|
-
}
|
977
|
-
|
978
|
-
.fill-light-green-500 {
|
979
|
-
fill: mat-color($mat-dark-light-green, 500) !important;
|
980
|
-
}
|
981
|
-
|
982
|
-
.fill-lime-500 {
|
983
|
-
fill: mat-color($mat-dark-lime, 500) !important;
|
984
|
-
}
|
985
|
-
|
986
|
-
.fill-yellow-500 {
|
987
|
-
fill: mat-color($mat-dark-yellow, 500) !important;
|
988
|
-
}
|
989
|
-
|
990
|
-
.fill-amber-500 {
|
991
|
-
fill: mat-color($mat-dark-amber, 500) !important;
|
992
|
-
}
|
993
|
-
|
994
|
-
.fill-orange-500 {
|
995
|
-
fill: mat-color($mat-dark-orange, 500) !important;
|
996
|
-
}
|
997
|
-
|
998
|
-
.fill-deep-orange-500 {
|
999
|
-
fill: mat-color($mat-dark-deep-orange, 500) !important;
|
1000
|
-
}
|
1001
|
-
|
1002
|
-
.fill-brown-500 {
|
1003
|
-
fill: mat-color($mat-dark-brown, 500) !important;
|
1004
|
-
}
|
1005
|
-
|
1006
|
-
.fill-grey-500 {
|
1007
|
-
fill: mat-color($mat-dark-grey, 500) !important;
|
1008
|
-
}
|
1009
|
-
|
1010
|
-
.fill-blue-grey-500 {
|
1011
|
-
fill: mat-color($mat-dark-blue-grey, 500) !important;
|
1012
|
-
}
|
1013
|
-
|
1014
|
-
// B100
|
1015
|
-
.fill-red-B100 {
|
1016
|
-
fill: mat-color($mat-dark-red, B100) !important;
|
1017
|
-
}
|
1018
|
-
|
1019
|
-
.fill-pink-B100 {
|
1020
|
-
fill: mat-color($mat-dark-pink, B100) !important;
|
1021
|
-
}
|
1022
|
-
|
1023
|
-
.fill-purple-B100 {
|
1024
|
-
fill: mat-color($mat-dark-purple, B100) !important;
|
1025
|
-
}
|
1026
|
-
|
1027
|
-
.fill-deep-purple-B100 {
|
1028
|
-
fill: mat-color($mat-dark-deep-purple, B100) !important;
|
1029
|
-
}
|
1030
|
-
|
1031
|
-
.fill-indigo-B100 {
|
1032
|
-
fill: mat-color($mat-dark-indigo, B100) !important;
|
1033
|
-
}
|
1034
|
-
|
1035
|
-
.fill-blue-B100 {
|
1036
|
-
fill: mat-color($mat-dark-blue, B100) !important;
|
1037
|
-
}
|
1038
|
-
|
1039
|
-
.fill-light-blue-B100 {
|
1040
|
-
fill: mat-color($mat-dark-light-blue, B100) !important;
|
1041
|
-
}
|
1042
|
-
|
1043
|
-
.fill-cyan-B100 {
|
1044
|
-
fill: mat-color($mat-dark-cyan, B100) !important;
|
1045
|
-
}
|
1046
|
-
|
1047
|
-
.fill-teal-B100 {
|
1048
|
-
fill: mat-color($mat-dark-teal, B100) !important;
|
1049
|
-
}
|
1050
|
-
|
1051
|
-
.fill-green-B100 {
|
1052
|
-
fill: mat-color($mat-dark-green, B100) !important;
|
1053
|
-
}
|
1054
|
-
|
1055
|
-
.fill-light-green-B100 {
|
1056
|
-
fill: mat-color($mat-dark-light-green, B100) !important;
|
1057
|
-
}
|
1058
|
-
|
1059
|
-
.fill-lime-B100 {
|
1060
|
-
fill: mat-color($mat-dark-lime, B100) !important;
|
1061
|
-
}
|
1062
|
-
|
1063
|
-
.fill-yellow-B100 {
|
1064
|
-
fill: mat-color($mat-dark-yellow, B100) !important;
|
1065
|
-
}
|
1066
|
-
|
1067
|
-
.fill-amber-B100 {
|
1068
|
-
fill: mat-color($mat-dark-amber, B100) !important;
|
1069
|
-
}
|
1070
|
-
|
1071
|
-
.fill-orange-B100 {
|
1072
|
-
fill: mat-color($mat-dark-orange, B100) !important;
|
1073
|
-
}
|
1074
|
-
|
1075
|
-
.fill-deep-orange-B100 {
|
1076
|
-
fill: mat-color($mat-dark-deep-orange, B100) !important;
|
1077
|
-
}
|
1078
|
-
|
1079
|
-
.fill-brown-B100 {
|
1080
|
-
fill: mat-color($mat-dark-brown, B100) !important;
|
1081
|
-
}
|
1082
|
-
|
1083
|
-
.fill-grey-B100 {
|
1084
|
-
fill: mat-color($mat-dark-grey, B100) !important;
|
1085
|
-
}
|
1086
|
-
|
1087
|
-
.fill-blue-grey-B100 {
|
1088
|
-
fill: mat-color($mat-dark-blue-grey, B100) !important;
|
1089
|
-
}
|
1090
|
-
|
1091
|
-
// B65
|
1092
|
-
.fill-red-B65 {
|
1093
|
-
fill: mat-color($mat-dark-red, B65) !important;
|
1094
|
-
}
|
1095
|
-
|
1096
|
-
.fill-pink-B65 {
|
1097
|
-
fill: mat-color($mat-dark-pink, B65) !important;
|
1098
|
-
}
|
1099
|
-
|
1100
|
-
.fill-purple-B65 {
|
1101
|
-
fill: mat-color($mat-dark-purple, B65) !important;
|
1102
|
-
}
|
1103
|
-
|
1104
|
-
.fill-deep-purple-B65 {
|
1105
|
-
fill: mat-color($mat-dark-deep-purple, B65) !important;
|
1106
|
-
}
|
1107
|
-
|
1108
|
-
.fill-indigo-B65 {
|
1109
|
-
fill: mat-color($mat-dark-indigo, B65) !important;
|
1110
|
-
}
|
1111
|
-
|
1112
|
-
.fill-blue-B65 {
|
1113
|
-
fill: mat-color($mat-dark-blue, B65) !important;
|
1114
|
-
}
|
1115
|
-
|
1116
|
-
.fill-light-blue-B65 {
|
1117
|
-
fill: mat-color($mat-dark-light-blue, B65) !important;
|
1118
|
-
}
|
1119
|
-
|
1120
|
-
.fill-cyan-B65 {
|
1121
|
-
fill: mat-color($mat-dark-cyan, B65) !important;
|
1122
|
-
}
|
1123
|
-
|
1124
|
-
.fill-teal-B65 {
|
1125
|
-
fill: mat-color($mat-dark-teal, B65) !important;
|
1126
|
-
}
|
1127
|
-
|
1128
|
-
.fill-green-B65 {
|
1129
|
-
fill: mat-color($mat-dark-green, B65) !important;
|
1130
|
-
}
|
1131
|
-
|
1132
|
-
.fill-light-green-B65 {
|
1133
|
-
fill: mat-color($mat-dark-light-green, B65) !important;
|
1134
|
-
}
|
1135
|
-
|
1136
|
-
.fill-lime-B65 {
|
1137
|
-
fill: mat-color($mat-dark-lime, B65) !important;
|
1138
|
-
}
|
1139
|
-
|
1140
|
-
.fill-yellow-B65 {
|
1141
|
-
fill: mat-color($mat-dark-yellow, B65) !important;
|
1142
|
-
}
|
1143
|
-
|
1144
|
-
.fill-amber-B65 {
|
1145
|
-
fill: mat-color($mat-dark-amber, B65) !important;
|
1146
|
-
}
|
1147
|
-
|
1148
|
-
.fill-orange-B65 {
|
1149
|
-
fill: mat-color($mat-dark-orange, B65) !important;
|
1150
|
-
}
|
1151
|
-
|
1152
|
-
.fill-deep-orange-B65 {
|
1153
|
-
fill: mat-color($mat-dark-deep-orange, B65) !important;
|
1154
|
-
}
|
1155
|
-
|
1156
|
-
.fill-brown-B65 {
|
1157
|
-
fill: mat-color($mat-dark-brown, B65) !important;
|
1158
|
-
}
|
1159
|
-
|
1160
|
-
.fill-grey-B65 {
|
1161
|
-
fill: mat-color($mat-dark-grey, B65) !important;
|
1162
|
-
}
|
1163
|
-
|
1164
|
-
.fill-blue-grey-B65 {
|
1165
|
-
fill: mat-color($mat-dark-blue-grey, B65) !important;
|
1166
|
-
}
|
1167
|
-
|
1168
|
-
// B40
|
1169
|
-
.fill-red-B40 {
|
1170
|
-
fill: mat-color($mat-dark-red, B40) !important;
|
1171
|
-
}
|
1172
|
-
|
1173
|
-
.fill-pink-B40 {
|
1174
|
-
fill: mat-color($mat-dark-pink, B40) !important;
|
1175
|
-
}
|
1176
|
-
|
1177
|
-
.fill-purple-B40 {
|
1178
|
-
fill: mat-color($mat-dark-purple, B40) !important;
|
1179
|
-
}
|
1180
|
-
|
1181
|
-
.fill-deep-purple-B40 {
|
1182
|
-
fill: mat-color($mat-dark-deep-purple, B40) !important;
|
1183
|
-
}
|
1184
|
-
|
1185
|
-
.fill-indigo-B40 {
|
1186
|
-
fill: mat-color($mat-dark-indigo, B40) !important;
|
1187
|
-
}
|
1188
|
-
|
1189
|
-
.fill-blue-B40 {
|
1190
|
-
fill: mat-color($mat-dark-blue, B40) !important;
|
1191
|
-
}
|
1192
|
-
|
1193
|
-
.fill-light-blue-B40 {
|
1194
|
-
fill: mat-color($mat-dark-light-blue, B40) !important;
|
1195
|
-
}
|
1196
|
-
|
1197
|
-
.fill-cyan-B40 {
|
1198
|
-
fill: mat-color($mat-dark-cyan, B40) !important;
|
1199
|
-
}
|
1200
|
-
|
1201
|
-
.fill-teal-B40 {
|
1202
|
-
fill: mat-color($mat-dark-teal, B40) !important;
|
1203
|
-
}
|
1204
|
-
|
1205
|
-
.fill-green-B40 {
|
1206
|
-
fill: mat-color($mat-dark-green, B40) !important;
|
1207
|
-
}
|
1208
|
-
|
1209
|
-
.fill-light-green-B40 {
|
1210
|
-
fill: mat-color($mat-dark-light-green, B40) !important;
|
1211
|
-
}
|
1212
|
-
|
1213
|
-
.fill-lime-B40 {
|
1214
|
-
fill: mat-color($mat-dark-lime, B40) !important;
|
1215
|
-
}
|
1216
|
-
|
1217
|
-
.fill-yellow-B40 {
|
1218
|
-
fill: mat-color($mat-dark-yellow, B40) !important;
|
1219
|
-
}
|
1220
|
-
|
1221
|
-
.fill-amber-B40 {
|
1222
|
-
fill: mat-color($mat-dark-amber, B40) !important;
|
1223
|
-
}
|
1224
|
-
|
1225
|
-
.fill-orange-B40 {
|
1226
|
-
fill: mat-color($mat-dark-orange, B40) !important;
|
1227
|
-
}
|
1228
|
-
|
1229
|
-
.fill-deep-orange-B40 {
|
1230
|
-
fill: mat-color($mat-dark-deep-orange, B40) !important;
|
1231
|
-
}
|
1232
|
-
|
1233
|
-
.fill-brown-B40 {
|
1234
|
-
fill: mat-color($mat-dark-brown, B40) !important;
|
1235
|
-
}
|
1236
|
-
|
1237
|
-
.fill-grey-B40 {
|
1238
|
-
fill: mat-color($mat-dark-grey, B40) !important;
|
1239
|
-
}
|
1240
|
-
|
1241
|
-
.fill-blue-grey-B40 {
|
1242
|
-
fill: mat-color($mat-dark-blue-grey, B40) !important;
|
1243
|
-
}
|
1244
|
-
|
1245
|
-
// B30
|
1246
|
-
.fill-red-B30 {
|
1247
|
-
fill: mat-color($mat-dark-red, B30) !important;
|
1248
|
-
}
|
1249
|
-
|
1250
|
-
.fill-pink-B30 {
|
1251
|
-
fill: mat-color($mat-dark-pink, B30) !important;
|
1252
|
-
}
|
1253
|
-
|
1254
|
-
.fill-purple-B30 {
|
1255
|
-
fill: mat-color($mat-dark-purple, B30) !important;
|
1256
|
-
}
|
1257
|
-
|
1258
|
-
.fill-deep-purple-B30 {
|
1259
|
-
fill: mat-color($mat-dark-deep-purple, B30) !important;
|
1260
|
-
}
|
1261
|
-
|
1262
|
-
.fill-indigo-B30 {
|
1263
|
-
fill: mat-color($mat-dark-indigo, B30) !important;
|
1264
|
-
}
|
1265
|
-
|
1266
|
-
.fill-blue-B30 {
|
1267
|
-
fill: mat-color($mat-dark-blue, B30) !important;
|
1268
|
-
}
|
1269
|
-
|
1270
|
-
.fill-light-blue-B30 {
|
1271
|
-
fill: mat-color($mat-dark-light-blue, B30) !important;
|
1272
|
-
}
|
1273
|
-
|
1274
|
-
.fill-cyan-B30 {
|
1275
|
-
fill: mat-color($mat-dark-cyan, B30) !important;
|
1276
|
-
}
|
1277
|
-
|
1278
|
-
.fill-teal-B30 {
|
1279
|
-
fill: mat-color($mat-dark-teal, B30) !important;
|
1280
|
-
}
|
1281
|
-
|
1282
|
-
.fill-green-B30 {
|
1283
|
-
fill: mat-color($mat-dark-green, B30) !important;
|
1284
|
-
}
|
1285
|
-
|
1286
|
-
.fill-light-green-B30 {
|
1287
|
-
fill: mat-color($mat-dark-light-green, B30) !important;
|
1288
|
-
}
|
1289
|
-
|
1290
|
-
.fill-lime-B30 {
|
1291
|
-
fill: mat-color($mat-dark-lime, B30) !important;
|
1292
|
-
}
|
1293
|
-
|
1294
|
-
.fill-yellow-B30 {
|
1295
|
-
fill: mat-color($mat-dark-yellow, B30) !important;
|
1296
|
-
}
|
1297
|
-
|
1298
|
-
.fill-amber-B30 {
|
1299
|
-
fill: mat-color($mat-dark-amber, B30) !important;
|
1300
|
-
}
|
1301
|
-
|
1302
|
-
.fill-orange-B30 {
|
1303
|
-
fill: mat-color($mat-dark-orange, B30) !important;
|
1304
|
-
}
|
1305
|
-
|
1306
|
-
.fill-deep-orange-B30 {
|
1307
|
-
fill: mat-color($mat-dark-deep-orange, B30) !important;
|
1308
|
-
}
|
1309
|
-
|
1310
|
-
.fill-brown-B30 {
|
1311
|
-
fill: mat-color($mat-dark-brown, B30) !important;
|
1312
|
-
}
|
1313
|
-
|
1314
|
-
.fill-grey-B30 {
|
1315
|
-
fill: mat-color($mat-dark-grey, B30) !important;
|
1316
|
-
}
|
1317
|
-
|
1318
|
-
.fill-blue-grey-B30 {
|
1319
|
-
fill: mat-color($mat-dark-blue-grey, B30) !important;
|
1320
|
-
}
|
1321
|
-
|
1322
|
-
// B15
|
1323
|
-
.fill-red-B15 {
|
1324
|
-
fill: mat-color($mat-dark-red, B15) !important;
|
1325
|
-
}
|
1326
|
-
|
1327
|
-
.fill-pink-B15 {
|
1328
|
-
fill: mat-color($mat-dark-pink, B15) !important;
|
1329
|
-
}
|
1330
|
-
|
1331
|
-
.fill-purple-B15 {
|
1332
|
-
fill: mat-color($mat-dark-purple, B15) !important;
|
1333
|
-
}
|
1334
|
-
|
1335
|
-
.fill-deep-purple-B15 {
|
1336
|
-
fill: mat-color($mat-dark-deep-purple, B15) !important;
|
1337
|
-
}
|
1338
|
-
|
1339
|
-
.fill-indigo-B15 {
|
1340
|
-
fill: mat-color($mat-dark-indigo, B15) !important;
|
1341
|
-
}
|
1342
|
-
|
1343
|
-
.fill-blue-B15 {
|
1344
|
-
fill: mat-color($mat-dark-blue, B15) !important;
|
1345
|
-
}
|
1346
|
-
|
1347
|
-
.fill-light-blue-B15 {
|
1348
|
-
fill: mat-color($mat-dark-light-blue, B15) !important;
|
1349
|
-
}
|
1350
|
-
|
1351
|
-
.fill-cyan-B15 {
|
1352
|
-
fill: mat-color($mat-dark-cyan, B15) !important;
|
1353
|
-
}
|
1354
|
-
|
1355
|
-
.fill-teal-B15 {
|
1356
|
-
fill: mat-color($mat-dark-teal, B15) !important;
|
1357
|
-
}
|
1358
|
-
|
1359
|
-
.fill-green-B15 {
|
1360
|
-
fill: mat-color($mat-dark-green, B15) !important;
|
1361
|
-
}
|
1362
|
-
|
1363
|
-
.fill-light-green-B15 {
|
1364
|
-
fill: mat-color($mat-dark-light-green, B15) !important;
|
1365
|
-
}
|
1366
|
-
|
1367
|
-
.fill-lime-B15 {
|
1368
|
-
fill: mat-color($mat-dark-lime, B15) !important;
|
1369
|
-
}
|
1370
|
-
|
1371
|
-
.fill-yellow-B15 {
|
1372
|
-
fill: mat-color($mat-dark-yellow, B15) !important;
|
1373
|
-
}
|
1374
|
-
|
1375
|
-
.fill-amber-B15 {
|
1376
|
-
fill: mat-color($mat-dark-amber, B15) !important;
|
1377
|
-
}
|
1378
|
-
|
1379
|
-
.fill-orange-B15 {
|
1380
|
-
fill: mat-color($mat-dark-orange, B15) !important;
|
1381
|
-
}
|
1382
|
-
|
1383
|
-
.fill-deep-orange-B15 {
|
1384
|
-
fill: mat-color($mat-dark-deep-orange, B15) !important;
|
1385
|
-
}
|
1386
|
-
|
1387
|
-
.fill-brown-B15 {
|
1388
|
-
fill: mat-color($mat-dark-brown, B15) !important;
|
1389
|
-
}
|
1390
|
-
|
1391
|
-
.fill-grey-B15 {
|
1392
|
-
fill: mat-color($mat-dark-grey, B15) !important;
|
1393
|
-
}
|
1394
|
-
|
1395
|
-
.fill-blue-grey-B15 {
|
1396
|
-
fill: mat-color($mat-dark-blue-grey, B15) !important;
|
1397
|
-
}
|
1398
|
-
}
|
1399
|
-
/* stylelint-enable selector-class-pattern */
|