@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,2434 +0,0 @@
|
|
1
|
-
/* Colors for the ripple elements.*/
|
2
|
-
/* stylelint-disable-next-line material/theme-mixin-api */
|
3
|
-
/* stylelint-disable-next-line material/theme-mixin-api */
|
4
|
-
/* stylelint-disable material/no-prefixes */
|
5
|
-
/* stylelint-enable */
|
6
|
-
/** Mixin to create distinct classes for fab positions, e.g. ".mat-fab-position-bottom-right". */
|
7
|
-
/* stylelint-disable function-url-quotes, no-duplicate-selectors */
|
8
|
-
/*
|
9
|
-
*
|
10
|
-
* Responsive attributes
|
11
|
-
*
|
12
|
-
* References:
|
13
|
-
* 1) https://scotch.io/tutorials/a-visual-guide-to-css3-flexbox-properties#flex
|
14
|
-
* 2) https://css-tricks.com/almanac/properties/f/flex/
|
15
|
-
* 3) https://css-tricks.com/snippets/css/a-guide-to-flexbox/
|
16
|
-
* 4) https://github.com/philipwalton/flexbugs#3-min-height-on-a-flex-container-wont-apply-to-its-flex-items
|
17
|
-
* 5) http://godban.com.ua/projects/flexgrid
|
18
|
-
*
|
19
|
-
*/
|
20
|
-
@-moz-document url-prefix() {
|
21
|
-
[layout-fill] {
|
22
|
-
margin: 0;
|
23
|
-
width: 100%;
|
24
|
-
min-height: 100%;
|
25
|
-
height: 100%; } }
|
26
|
-
|
27
|
-
.mat-badge-content {
|
28
|
-
font-weight: 600;
|
29
|
-
font-size: 12px;
|
30
|
-
font-family: Roboto, "Helvetica Neue", sans-serif; }
|
31
|
-
|
32
|
-
.mat-badge-small .mat-badge-content {
|
33
|
-
font-size: 9px; }
|
34
|
-
|
35
|
-
.mat-badge-large .mat-badge-content {
|
36
|
-
font-size: 24px; }
|
37
|
-
|
38
|
-
.mat-h1, .mat-headline, .mat-typography h1 {
|
39
|
-
font: 400 24px/32px Roboto, "Helvetica Neue", sans-serif;
|
40
|
-
letter-spacing: normal;
|
41
|
-
margin: 0 0 16px; }
|
42
|
-
|
43
|
-
.mat-h2, .mat-title, .mat-typography h2 {
|
44
|
-
font: 500 20px/32px Roboto, "Helvetica Neue", sans-serif;
|
45
|
-
letter-spacing: normal;
|
46
|
-
margin: 0 0 16px; }
|
47
|
-
|
48
|
-
.mat-h3, .mat-subheading-2, .mat-typography h3 {
|
49
|
-
font: 400 16px/28px Roboto, "Helvetica Neue", sans-serif;
|
50
|
-
letter-spacing: normal;
|
51
|
-
margin: 0 0 16px; }
|
52
|
-
|
53
|
-
.mat-h4, .mat-subheading-1, .mat-typography h4 {
|
54
|
-
font: 400 15px/24px Roboto, "Helvetica Neue", sans-serif;
|
55
|
-
letter-spacing: normal;
|
56
|
-
margin: 0 0 16px; }
|
57
|
-
|
58
|
-
.mat-h5, .mat-typography h5 {
|
59
|
-
font: 400 calc(14px * 0.83)/20px Roboto, "Helvetica Neue", sans-serif;
|
60
|
-
margin: 0 0 12px; }
|
61
|
-
|
62
|
-
.mat-h6, .mat-typography h6 {
|
63
|
-
font: 400 calc(14px * 0.67)/20px Roboto, "Helvetica Neue", sans-serif;
|
64
|
-
margin: 0 0 12px; }
|
65
|
-
|
66
|
-
.mat-body-strong, .mat-body-2 {
|
67
|
-
font: 500 14px/24px Roboto, "Helvetica Neue", sans-serif;
|
68
|
-
letter-spacing: normal; }
|
69
|
-
|
70
|
-
.mat-body, .mat-body-1, .mat-typography {
|
71
|
-
font: 400 14px/20px Roboto, "Helvetica Neue", sans-serif;
|
72
|
-
letter-spacing: normal; }
|
73
|
-
.mat-body p, .mat-body-1 p, .mat-typography p {
|
74
|
-
margin: 0 0 12px; }
|
75
|
-
|
76
|
-
.mat-small, .mat-caption {
|
77
|
-
font: 400 12px/20px Roboto, "Helvetica Neue", sans-serif;
|
78
|
-
letter-spacing: normal; }
|
79
|
-
|
80
|
-
.mat-display-4, .mat-typography .mat-display-4 {
|
81
|
-
font: 300 112px/112px Roboto, "Helvetica Neue", sans-serif;
|
82
|
-
letter-spacing: -0.05em;
|
83
|
-
margin: 0 0 56px; }
|
84
|
-
|
85
|
-
.mat-display-3, .mat-typography .mat-display-3 {
|
86
|
-
font: 400 56px/56px Roboto, "Helvetica Neue", sans-serif;
|
87
|
-
letter-spacing: -0.02em;
|
88
|
-
margin: 0 0 64px; }
|
89
|
-
|
90
|
-
.mat-display-2, .mat-typography .mat-display-2 {
|
91
|
-
font: 400 45px/48px Roboto, "Helvetica Neue", sans-serif;
|
92
|
-
letter-spacing: -0.005em;
|
93
|
-
margin: 0 0 64px; }
|
94
|
-
|
95
|
-
.mat-display-1, .mat-typography .mat-display-1 {
|
96
|
-
font: 400 34px/40px Roboto, "Helvetica Neue", sans-serif;
|
97
|
-
letter-spacing: normal;
|
98
|
-
margin: 0 0 64px; }
|
99
|
-
|
100
|
-
.mat-bottom-sheet-container {
|
101
|
-
font: 400 14px/20px Roboto, "Helvetica Neue", sans-serif;
|
102
|
-
letter-spacing: normal; }
|
103
|
-
|
104
|
-
.mat-button, .mat-raised-button, .mat-icon-button, .mat-stroked-button,
|
105
|
-
.mat-flat-button, .mat-fab, .mat-mini-fab {
|
106
|
-
font-family: Roboto, "Helvetica Neue", sans-serif;
|
107
|
-
font-size: 14px;
|
108
|
-
font-weight: 500; }
|
109
|
-
|
110
|
-
.mat-button-toggle {
|
111
|
-
font-family: Roboto, "Helvetica Neue", sans-serif; }
|
112
|
-
|
113
|
-
.mat-card {
|
114
|
-
font-family: Roboto, "Helvetica Neue", sans-serif; }
|
115
|
-
|
116
|
-
.mat-card-title {
|
117
|
-
font-size: 24px;
|
118
|
-
font-weight: 500; }
|
119
|
-
|
120
|
-
.mat-card-header .mat-card-title {
|
121
|
-
font-size: 20px; }
|
122
|
-
|
123
|
-
.mat-card-subtitle,
|
124
|
-
.mat-card-content {
|
125
|
-
font-size: 14px; }
|
126
|
-
|
127
|
-
.mat-checkbox {
|
128
|
-
font-family: Roboto, "Helvetica Neue", sans-serif; }
|
129
|
-
|
130
|
-
.mat-checkbox-layout .mat-checkbox-label {
|
131
|
-
line-height: 24px; }
|
132
|
-
|
133
|
-
.mat-chip {
|
134
|
-
font-size: 14px;
|
135
|
-
font-weight: 500; }
|
136
|
-
.mat-chip .mat-chip-trailing-icon.mat-icon,
|
137
|
-
.mat-chip .mat-chip-remove.mat-icon {
|
138
|
-
font-size: 18px; }
|
139
|
-
|
140
|
-
.mat-table {
|
141
|
-
font-family: Roboto, "Helvetica Neue", sans-serif; }
|
142
|
-
|
143
|
-
.mat-header-cell {
|
144
|
-
font-size: 12px;
|
145
|
-
font-weight: 500; }
|
146
|
-
|
147
|
-
.mat-cell, .mat-footer-cell {
|
148
|
-
font-size: 14px; }
|
149
|
-
|
150
|
-
.mat-calendar {
|
151
|
-
font-family: Roboto, "Helvetica Neue", sans-serif; }
|
152
|
-
|
153
|
-
.mat-calendar-body {
|
154
|
-
font-size: 13px; }
|
155
|
-
|
156
|
-
.mat-calendar-body-label,
|
157
|
-
.mat-calendar-period-button {
|
158
|
-
font-size: 14px;
|
159
|
-
font-weight: 500; }
|
160
|
-
|
161
|
-
.mat-calendar-table-header th {
|
162
|
-
font-size: 11px;
|
163
|
-
font-weight: 400; }
|
164
|
-
|
165
|
-
.mat-dialog-title {
|
166
|
-
font: 500 20px/32px Roboto, "Helvetica Neue", sans-serif;
|
167
|
-
letter-spacing: normal; }
|
168
|
-
|
169
|
-
.mat-expansion-panel-header {
|
170
|
-
font-family: Roboto, "Helvetica Neue", sans-serif;
|
171
|
-
font-size: 15px;
|
172
|
-
font-weight: 400; }
|
173
|
-
|
174
|
-
.mat-expansion-panel-content {
|
175
|
-
font: 400 14px/20px Roboto, "Helvetica Neue", sans-serif;
|
176
|
-
letter-spacing: normal; }
|
177
|
-
|
178
|
-
.mat-form-field {
|
179
|
-
font-size: inherit;
|
180
|
-
font-weight: 400;
|
181
|
-
line-height: 1.125;
|
182
|
-
font-family: Roboto, "Helvetica Neue", sans-serif;
|
183
|
-
letter-spacing: normal; }
|
184
|
-
|
185
|
-
.mat-form-field-wrapper {
|
186
|
-
padding-bottom: 1.34375em; }
|
187
|
-
|
188
|
-
.mat-form-field-prefix .mat-icon,
|
189
|
-
.mat-form-field-suffix .mat-icon {
|
190
|
-
font-size: 150%;
|
191
|
-
line-height: 1.125; }
|
192
|
-
|
193
|
-
.mat-form-field-prefix .mat-icon-button,
|
194
|
-
.mat-form-field-suffix .mat-icon-button {
|
195
|
-
height: 1.5em;
|
196
|
-
width: 1.5em; }
|
197
|
-
.mat-form-field-prefix .mat-icon-button .mat-icon,
|
198
|
-
.mat-form-field-suffix .mat-icon-button .mat-icon {
|
199
|
-
height: 1.125em;
|
200
|
-
line-height: 1.125; }
|
201
|
-
|
202
|
-
.mat-form-field-infix {
|
203
|
-
padding: 0.5em 0;
|
204
|
-
border-top: 0.84375em solid transparent; }
|
205
|
-
|
206
|
-
.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
|
207
|
-
.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
|
208
|
-
-webkit-transform: translateY(-1.34375em) scale(0.75);
|
209
|
-
-ms-transform: translateY(-1.34375em) scale(0.75);
|
210
|
-
transform: translateY(-1.34375em) scale(0.75);
|
211
|
-
width: 133.33333%; }
|
212
|
-
|
213
|
-
.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper
|
214
|
-
.mat-form-field-label {
|
215
|
-
-webkit-transform: translateY(-1.34374em) scale(0.75);
|
216
|
-
-ms-transform: translateY(-1.34374em) scale(0.75);
|
217
|
-
transform: translateY(-1.34374em) scale(0.75);
|
218
|
-
width: 133.33334%; }
|
219
|
-
|
220
|
-
.mat-form-field-label-wrapper {
|
221
|
-
top: -0.84375em;
|
222
|
-
padding-top: 0.84375em; }
|
223
|
-
|
224
|
-
.mat-form-field-label {
|
225
|
-
top: 1.34375em; }
|
226
|
-
|
227
|
-
.mat-form-field-underline {
|
228
|
-
bottom: 1.34375em; }
|
229
|
-
|
230
|
-
.mat-form-field-subscript-wrapper {
|
231
|
-
font-size: 75%;
|
232
|
-
margin-top: 0.66667em;
|
233
|
-
top: calc(100% - 1.79167em); }
|
234
|
-
|
235
|
-
.mat-form-field-appearance-legacy .mat-form-field-wrapper {
|
236
|
-
padding-bottom: 1.25em; }
|
237
|
-
|
238
|
-
.mat-form-field-appearance-legacy .mat-form-field-infix {
|
239
|
-
padding: 0.4375em 0; }
|
240
|
-
|
241
|
-
.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
|
242
|
-
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
|
243
|
-
-webkit-transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);
|
244
|
-
transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);
|
245
|
-
-ms-transform: translateY(-1.28125em) scale(0.75);
|
246
|
-
width: 133.33333%; }
|
247
|
-
|
248
|
-
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper
|
249
|
-
.mat-form-field-label {
|
250
|
-
-webkit-transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00101px);
|
251
|
-
transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00101px);
|
252
|
-
-ms-transform: translateY(-1.28124em) scale(0.75);
|
253
|
-
width: 133.33334%; }
|
254
|
-
|
255
|
-
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper
|
256
|
-
.mat-form-field-label {
|
257
|
-
-webkit-transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00102px);
|
258
|
-
transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00102px);
|
259
|
-
-ms-transform: translateY(-1.28123em) scale(0.75);
|
260
|
-
width: 133.33335%; }
|
261
|
-
|
262
|
-
.mat-form-field-appearance-legacy .mat-form-field-label {
|
263
|
-
top: 1.28125em; }
|
264
|
-
|
265
|
-
.mat-form-field-appearance-legacy .mat-form-field-underline {
|
266
|
-
bottom: 1.25em; }
|
267
|
-
|
268
|
-
.mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper {
|
269
|
-
margin-top: 0.54167em;
|
270
|
-
top: calc(100% - 1.66667em); }
|
271
|
-
|
272
|
-
@media print {
|
273
|
-
.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
|
274
|
-
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
|
275
|
-
-webkit-transform: translateY(-1.28122em) scale(0.75);
|
276
|
-
-ms-transform: translateY(-1.28122em) scale(0.75);
|
277
|
-
transform: translateY(-1.28122em) scale(0.75); }
|
278
|
-
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper
|
279
|
-
.mat-form-field-label {
|
280
|
-
-webkit-transform: translateY(-1.28121em) scale(0.75);
|
281
|
-
transform: translateY(-1.28121em) scale(0.75); }
|
282
|
-
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper
|
283
|
-
.mat-form-field-label {
|
284
|
-
-webkit-transform: translateY(-1.2812em) scale(0.75);
|
285
|
-
-ms-transform: translateY(-1.2812em) scale(0.75);
|
286
|
-
transform: translateY(-1.2812em) scale(0.75); } }
|
287
|
-
|
288
|
-
.mat-form-field-appearance-fill .mat-form-field-infix {
|
289
|
-
padding: 0.25em 0 0.75em 0; }
|
290
|
-
|
291
|
-
.mat-form-field-appearance-fill .mat-form-field-label {
|
292
|
-
top: 1.09375em;
|
293
|
-
margin-top: -0.5em; }
|
294
|
-
|
295
|
-
.mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
|
296
|
-
.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
|
297
|
-
-webkit-transform: translateY(-0.59375em) scale(0.75);
|
298
|
-
-ms-transform: translateY(-0.59375em) scale(0.75);
|
299
|
-
transform: translateY(-0.59375em) scale(0.75);
|
300
|
-
width: 133.33333%; }
|
301
|
-
|
302
|
-
.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper
|
303
|
-
.mat-form-field-label {
|
304
|
-
-webkit-transform: translateY(-0.59374em) scale(0.75);
|
305
|
-
-ms-transform: translateY(-0.59374em) scale(0.75);
|
306
|
-
transform: translateY(-0.59374em) scale(0.75);
|
307
|
-
width: 133.33334%; }
|
308
|
-
|
309
|
-
.mat-form-field-appearance-outline .mat-form-field-infix {
|
310
|
-
padding: 1em 0 1em 0; }
|
311
|
-
|
312
|
-
.mat-form-field-appearance-outline .mat-form-field-label {
|
313
|
-
top: 1.84375em;
|
314
|
-
margin-top: -0.25em; }
|
315
|
-
|
316
|
-
.mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
|
317
|
-
.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
|
318
|
-
-webkit-transform: translateY(-1.59375em) scale(0.75);
|
319
|
-
-ms-transform: translateY(-1.59375em) scale(0.75);
|
320
|
-
transform: translateY(-1.59375em) scale(0.75);
|
321
|
-
width: 133.33333%; }
|
322
|
-
|
323
|
-
.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper
|
324
|
-
.mat-form-field-label {
|
325
|
-
-webkit-transform: translateY(-1.59374em) scale(0.75);
|
326
|
-
-ms-transform: translateY(-1.59374em) scale(0.75);
|
327
|
-
transform: translateY(-1.59374em) scale(0.75);
|
328
|
-
width: 133.33334%; }
|
329
|
-
|
330
|
-
.mat-grid-tile-header,
|
331
|
-
.mat-grid-tile-footer {
|
332
|
-
font-size: 14px; }
|
333
|
-
.mat-grid-tile-header .mat-line,
|
334
|
-
.mat-grid-tile-footer .mat-line {
|
335
|
-
white-space: nowrap;
|
336
|
-
overflow: hidden;
|
337
|
-
text-overflow: ellipsis;
|
338
|
-
display: block;
|
339
|
-
-webkit-box-sizing: border-box;
|
340
|
-
box-sizing: border-box; }
|
341
|
-
.mat-grid-tile-header .mat-line:nth-child(n+2),
|
342
|
-
.mat-grid-tile-footer .mat-line:nth-child(n+2) {
|
343
|
-
font-size: 12px; }
|
344
|
-
|
345
|
-
input.mat-input-element {
|
346
|
-
margin-top: -0.0625em; }
|
347
|
-
|
348
|
-
.mat-menu-item {
|
349
|
-
font-family: Roboto, "Helvetica Neue", sans-serif;
|
350
|
-
font-size: 14px;
|
351
|
-
font-weight: 400; }
|
352
|
-
|
353
|
-
.mat-paginator,
|
354
|
-
.mat-paginator-page-size .mat-select-trigger {
|
355
|
-
font-family: Roboto, "Helvetica Neue", sans-serif;
|
356
|
-
font-size: 12px; }
|
357
|
-
|
358
|
-
.mat-radio-button {
|
359
|
-
font-family: Roboto, "Helvetica Neue", sans-serif; }
|
360
|
-
|
361
|
-
.mat-select {
|
362
|
-
font-family: Roboto, "Helvetica Neue", sans-serif; }
|
363
|
-
|
364
|
-
.mat-select-trigger {
|
365
|
-
height: 1.125em; }
|
366
|
-
|
367
|
-
.mat-slide-toggle-content {
|
368
|
-
font-family: Roboto, "Helvetica Neue", sans-serif; }
|
369
|
-
|
370
|
-
.mat-slider-thumb-label-text {
|
371
|
-
font-family: Roboto, "Helvetica Neue", sans-serif;
|
372
|
-
font-size: 12px;
|
373
|
-
font-weight: 500; }
|
374
|
-
|
375
|
-
.mat-stepper-vertical, .mat-stepper-horizontal {
|
376
|
-
font-family: Roboto, "Helvetica Neue", sans-serif; }
|
377
|
-
|
378
|
-
.mat-step-label {
|
379
|
-
font-size: 14px;
|
380
|
-
font-weight: 400; }
|
381
|
-
|
382
|
-
.mat-step-sub-label-error {
|
383
|
-
font-weight: normal; }
|
384
|
-
|
385
|
-
.mat-step-label-error {
|
386
|
-
font-size: 14px; }
|
387
|
-
|
388
|
-
.mat-step-label-selected {
|
389
|
-
font-size: 14px;
|
390
|
-
font-weight: 500; }
|
391
|
-
|
392
|
-
.mat-tab-group {
|
393
|
-
font-family: Roboto, "Helvetica Neue", sans-serif; }
|
394
|
-
|
395
|
-
.mat-tab-label, .mat-tab-link {
|
396
|
-
font-family: Roboto, "Helvetica Neue", sans-serif;
|
397
|
-
font-size: 14px;
|
398
|
-
font-weight: 500; }
|
399
|
-
|
400
|
-
.mat-toolbar,
|
401
|
-
.mat-toolbar h1,
|
402
|
-
.mat-toolbar h2,
|
403
|
-
.mat-toolbar h3,
|
404
|
-
.mat-toolbar h4,
|
405
|
-
.mat-toolbar h5,
|
406
|
-
.mat-toolbar h6 {
|
407
|
-
font: 500 20px/32px Roboto, "Helvetica Neue", sans-serif;
|
408
|
-
letter-spacing: normal;
|
409
|
-
margin: 0; }
|
410
|
-
|
411
|
-
.mat-tooltip {
|
412
|
-
font-family: Roboto, "Helvetica Neue", sans-serif;
|
413
|
-
font-size: 10px;
|
414
|
-
padding-top: 6px;
|
415
|
-
padding-bottom: 6px; }
|
416
|
-
|
417
|
-
.mat-tooltip-handset {
|
418
|
-
font-size: 14px;
|
419
|
-
padding-top: 8px;
|
420
|
-
padding-bottom: 8px; }
|
421
|
-
|
422
|
-
.mat-list-item {
|
423
|
-
font-family: Roboto, "Helvetica Neue", sans-serif; }
|
424
|
-
|
425
|
-
.mat-list-option {
|
426
|
-
font-family: Roboto, "Helvetica Neue", sans-serif; }
|
427
|
-
|
428
|
-
.mat-list-base .mat-list-item {
|
429
|
-
font-size: 16px; }
|
430
|
-
.mat-list-base .mat-list-item .mat-line {
|
431
|
-
white-space: nowrap;
|
432
|
-
overflow: hidden;
|
433
|
-
text-overflow: ellipsis;
|
434
|
-
display: block;
|
435
|
-
-webkit-box-sizing: border-box;
|
436
|
-
box-sizing: border-box; }
|
437
|
-
.mat-list-base .mat-list-item .mat-line:nth-child(n+2) {
|
438
|
-
font-size: 14px; }
|
439
|
-
|
440
|
-
.mat-list-base .mat-list-option {
|
441
|
-
font-size: 16px; }
|
442
|
-
.mat-list-base .mat-list-option .mat-line {
|
443
|
-
white-space: nowrap;
|
444
|
-
overflow: hidden;
|
445
|
-
text-overflow: ellipsis;
|
446
|
-
display: block;
|
447
|
-
-webkit-box-sizing: border-box;
|
448
|
-
box-sizing: border-box; }
|
449
|
-
.mat-list-base .mat-list-option .mat-line:nth-child(n+2) {
|
450
|
-
font-size: 14px; }
|
451
|
-
|
452
|
-
.mat-list-base .mat-subheader {
|
453
|
-
font-family: Roboto, "Helvetica Neue", sans-serif;
|
454
|
-
font-size: 14px;
|
455
|
-
font-weight: 500; }
|
456
|
-
|
457
|
-
.mat-list-base[dense] .mat-list-item {
|
458
|
-
font-size: 12px; }
|
459
|
-
.mat-list-base[dense] .mat-list-item .mat-line {
|
460
|
-
white-space: nowrap;
|
461
|
-
overflow: hidden;
|
462
|
-
text-overflow: ellipsis;
|
463
|
-
display: block;
|
464
|
-
-webkit-box-sizing: border-box;
|
465
|
-
box-sizing: border-box; }
|
466
|
-
.mat-list-base[dense] .mat-list-item .mat-line:nth-child(n+2) {
|
467
|
-
font-size: 12px; }
|
468
|
-
|
469
|
-
.mat-list-base[dense] .mat-list-option {
|
470
|
-
font-size: 12px; }
|
471
|
-
.mat-list-base[dense] .mat-list-option .mat-line {
|
472
|
-
white-space: nowrap;
|
473
|
-
overflow: hidden;
|
474
|
-
text-overflow: ellipsis;
|
475
|
-
display: block;
|
476
|
-
-webkit-box-sizing: border-box;
|
477
|
-
box-sizing: border-box; }
|
478
|
-
.mat-list-base[dense] .mat-list-option .mat-line:nth-child(n+2) {
|
479
|
-
font-size: 12px; }
|
480
|
-
|
481
|
-
.mat-list-base[dense] .mat-subheader {
|
482
|
-
font-family: Roboto, "Helvetica Neue", sans-serif;
|
483
|
-
font-size: 12px;
|
484
|
-
font-weight: 500; }
|
485
|
-
|
486
|
-
.mat-option {
|
487
|
-
font-family: Roboto, "Helvetica Neue", sans-serif;
|
488
|
-
font-size: 16px; }
|
489
|
-
|
490
|
-
.mat-optgroup-label {
|
491
|
-
font: 500 14px/24px Roboto, "Helvetica Neue", sans-serif;
|
492
|
-
letter-spacing: normal; }
|
493
|
-
|
494
|
-
.mat-simple-snackbar {
|
495
|
-
font-family: Roboto, "Helvetica Neue", sans-serif;
|
496
|
-
font-size: 14px; }
|
497
|
-
|
498
|
-
.mat-simple-snackbar-action {
|
499
|
-
line-height: 1;
|
500
|
-
font-family: inherit;
|
501
|
-
font-size: inherit;
|
502
|
-
font-weight: 500; }
|
503
|
-
|
504
|
-
.mat-tree {
|
505
|
-
font-family: Roboto, "Helvetica Neue", sans-serif; }
|
506
|
-
|
507
|
-
.mat-tree-node,
|
508
|
-
.mat-nested-tree-node {
|
509
|
-
font-weight: 400;
|
510
|
-
font-size: 14px; }
|
511
|
-
|
512
|
-
.mat-ripple {
|
513
|
-
overflow: hidden;
|
514
|
-
position: relative; }
|
515
|
-
.mat-ripple:not(:empty) {
|
516
|
-
-webkit-transform: translateZ(0);
|
517
|
-
transform: translateZ(0); }
|
518
|
-
|
519
|
-
.mat-ripple.mat-ripple-unbounded {
|
520
|
-
overflow: visible; }
|
521
|
-
|
522
|
-
.mat-ripple-element {
|
523
|
-
position: absolute;
|
524
|
-
border-radius: 50%;
|
525
|
-
pointer-events: none;
|
526
|
-
-webkit-transition: opacity, -webkit-transform 0ms cubic-bezier(0, 0, 0.2, 1);
|
527
|
-
transition: opacity, -webkit-transform 0ms cubic-bezier(0, 0, 0.2, 1);
|
528
|
-
transition: opacity, transform 0ms cubic-bezier(0, 0, 0.2, 1);
|
529
|
-
transition: opacity, transform 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 0ms cubic-bezier(0, 0, 0.2, 1);
|
530
|
-
-webkit-transform: scale(0);
|
531
|
-
-ms-transform: scale(0);
|
532
|
-
transform: scale(0); }
|
533
|
-
.cdk-high-contrast-active .mat-ripple-element {
|
534
|
-
display: none; }
|
535
|
-
|
536
|
-
.cdk-visually-hidden {
|
537
|
-
border: 0;
|
538
|
-
clip: rect(0 0 0 0);
|
539
|
-
height: 1px;
|
540
|
-
margin: -1px;
|
541
|
-
overflow: hidden;
|
542
|
-
padding: 0;
|
543
|
-
position: absolute;
|
544
|
-
width: 1px;
|
545
|
-
outline: 0;
|
546
|
-
-webkit-appearance: none;
|
547
|
-
-moz-appearance: none; }
|
548
|
-
|
549
|
-
.cdk-overlay-container, .cdk-global-overlay-wrapper {
|
550
|
-
pointer-events: none;
|
551
|
-
top: 0;
|
552
|
-
left: 0;
|
553
|
-
height: 100%;
|
554
|
-
width: 100%; }
|
555
|
-
|
556
|
-
.cdk-overlay-container {
|
557
|
-
position: fixed;
|
558
|
-
z-index: 1000; }
|
559
|
-
.cdk-overlay-container:empty {
|
560
|
-
display: none; }
|
561
|
-
|
562
|
-
.cdk-global-overlay-wrapper {
|
563
|
-
display: -webkit-box;
|
564
|
-
display: -ms-flexbox;
|
565
|
-
display: flex;
|
566
|
-
position: absolute;
|
567
|
-
z-index: 1000; }
|
568
|
-
|
569
|
-
.cdk-overlay-pane {
|
570
|
-
position: absolute;
|
571
|
-
pointer-events: auto;
|
572
|
-
-webkit-box-sizing: border-box;
|
573
|
-
box-sizing: border-box;
|
574
|
-
z-index: 1000;
|
575
|
-
display: -webkit-box;
|
576
|
-
display: -ms-flexbox;
|
577
|
-
display: flex;
|
578
|
-
max-width: 100%;
|
579
|
-
max-height: 100%; }
|
580
|
-
|
581
|
-
.cdk-overlay-backdrop {
|
582
|
-
position: absolute;
|
583
|
-
top: 0;
|
584
|
-
bottom: 0;
|
585
|
-
left: 0;
|
586
|
-
right: 0;
|
587
|
-
z-index: 1000;
|
588
|
-
pointer-events: auto;
|
589
|
-
-webkit-tap-highlight-color: transparent;
|
590
|
-
-webkit-transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
|
591
|
-
transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
|
592
|
-
opacity: 0; }
|
593
|
-
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
|
594
|
-
opacity: 1; }
|
595
|
-
@media screen and (-ms-high-contrast: active) {
|
596
|
-
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
|
597
|
-
opacity: 0.6; } }
|
598
|
-
|
599
|
-
.cdk-overlay-dark-backdrop {
|
600
|
-
background: rgba(0, 0, 0, 0.32); }
|
601
|
-
|
602
|
-
.cdk-overlay-transparent-backdrop, .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
|
603
|
-
opacity: 0; }
|
604
|
-
|
605
|
-
.cdk-overlay-connected-position-bounding-box {
|
606
|
-
position: absolute;
|
607
|
-
z-index: 1000;
|
608
|
-
display: -webkit-box;
|
609
|
-
display: -ms-flexbox;
|
610
|
-
display: flex;
|
611
|
-
-webkit-box-orient: vertical;
|
612
|
-
-webkit-box-direction: normal;
|
613
|
-
-ms-flex-direction: column;
|
614
|
-
flex-direction: column;
|
615
|
-
min-width: 1px;
|
616
|
-
min-height: 1px; }
|
617
|
-
|
618
|
-
.cdk-global-scrollblock {
|
619
|
-
position: fixed;
|
620
|
-
width: 100%;
|
621
|
-
overflow-y: scroll; }
|
622
|
-
|
623
|
-
@-webkit-keyframes cdk-text-field-autofill-start {
|
624
|
-
/*!*/ }
|
625
|
-
|
626
|
-
@keyframes cdk-text-field-autofill-start {
|
627
|
-
/*!*/ }
|
628
|
-
|
629
|
-
@-webkit-keyframes cdk-text-field-autofill-end {
|
630
|
-
/*!*/ }
|
631
|
-
|
632
|
-
@keyframes cdk-text-field-autofill-end {
|
633
|
-
/*!*/ }
|
634
|
-
|
635
|
-
.cdk-text-field-autofill-monitored:-webkit-autofill {
|
636
|
-
-webkit-animation: cdk-text-field-autofill-start 0s 1ms;
|
637
|
-
animation: cdk-text-field-autofill-start 0s 1ms; }
|
638
|
-
|
639
|
-
.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
|
640
|
-
-webkit-animation: cdk-text-field-autofill-end 0s 1ms;
|
641
|
-
animation: cdk-text-field-autofill-end 0s 1ms; }
|
642
|
-
|
643
|
-
textarea.cdk-textarea-autosize {
|
644
|
-
resize: none; }
|
645
|
-
|
646
|
-
textarea.cdk-textarea-autosize-measuring {
|
647
|
-
padding: 2px 0 !important;
|
648
|
-
-webkit-box-sizing: content-box !important;
|
649
|
-
box-sizing: content-box !important;
|
650
|
-
height: auto !important;
|
651
|
-
overflow: hidden !important; }
|
652
|
-
|
653
|
-
textarea.cdk-textarea-autosize-measuring-firefox {
|
654
|
-
padding: 2px 0 !important;
|
655
|
-
-webkit-box-sizing: content-box !important;
|
656
|
-
box-sizing: content-box !important;
|
657
|
-
height: 0 !important; }
|
658
|
-
|
659
|
-
.mat-focus-indicator {
|
660
|
-
position: relative; }
|
661
|
-
|
662
|
-
.mat-mdc-focus-indicator {
|
663
|
-
position: relative; }
|
664
|
-
|
665
|
-
.mat-ripple-element {
|
666
|
-
background-color: rgba(0, 0, 0, 0.1); }
|
667
|
-
|
668
|
-
.mat-option {
|
669
|
-
color: rgba(0, 0, 0, 0.87); }
|
670
|
-
.mat-option:hover:not(.mat-option-disabled), .mat-option:focus:not(.mat-option-disabled) {
|
671
|
-
background: rgba(0, 0, 0, 0.04); }
|
672
|
-
.mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled) {
|
673
|
-
background: rgba(0, 0, 0, 0.04); }
|
674
|
-
.mat-option.mat-active {
|
675
|
-
background: rgba(0, 0, 0, 0.04);
|
676
|
-
color: rgba(0, 0, 0, 0.87); }
|
677
|
-
.mat-option.mat-option-disabled {
|
678
|
-
color: rgba(0, 0, 0, 0.38); }
|
679
|
-
|
680
|
-
.mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {
|
681
|
-
color: #ef6c00; }
|
682
|
-
|
683
|
-
.mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {
|
684
|
-
color: #039be5; }
|
685
|
-
|
686
|
-
.mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {
|
687
|
-
color: #e53935; }
|
688
|
-
|
689
|
-
.mat-optgroup-label {
|
690
|
-
color: rgba(0, 0, 0, 0.54); }
|
691
|
-
|
692
|
-
.mat-optgroup-disabled .mat-optgroup-label {
|
693
|
-
color: rgba(0, 0, 0, 0.38); }
|
694
|
-
|
695
|
-
.mat-pseudo-checkbox {
|
696
|
-
color: rgba(0, 0, 0, 0.54); }
|
697
|
-
.mat-pseudo-checkbox::after {
|
698
|
-
color: #fafafa; }
|
699
|
-
|
700
|
-
.mat-pseudo-checkbox-disabled {
|
701
|
-
color: #b0b0b0; }
|
702
|
-
|
703
|
-
.mat-primary .mat-pseudo-checkbox-checked,
|
704
|
-
.mat-primary .mat-pseudo-checkbox-indeterminate {
|
705
|
-
background: #ef6c00; }
|
706
|
-
|
707
|
-
.mat-pseudo-checkbox-checked,
|
708
|
-
.mat-pseudo-checkbox-indeterminate,
|
709
|
-
.mat-accent .mat-pseudo-checkbox-checked,
|
710
|
-
.mat-accent .mat-pseudo-checkbox-indeterminate {
|
711
|
-
background: #039be5; }
|
712
|
-
|
713
|
-
.mat-warn .mat-pseudo-checkbox-checked,
|
714
|
-
.mat-warn .mat-pseudo-checkbox-indeterminate {
|
715
|
-
background: #e53935; }
|
716
|
-
|
717
|
-
.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,
|
718
|
-
.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled {
|
719
|
-
background: #b0b0b0; }
|
720
|
-
|
721
|
-
.mat-app-background {
|
722
|
-
background-color: #fafafa;
|
723
|
-
color: rgba(0, 0, 0, 0.87); }
|
724
|
-
|
725
|
-
.mat-elevation-z0 {
|
726
|
-
-webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
727
|
-
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12); }
|
728
|
-
|
729
|
-
.mat-elevation-z1 {
|
730
|
-
-webkit-box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
|
731
|
-
box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12); }
|
732
|
-
|
733
|
-
.mat-elevation-z2 {
|
734
|
-
-webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
735
|
-
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12); }
|
736
|
-
|
737
|
-
.mat-elevation-z3 {
|
738
|
-
-webkit-box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
|
739
|
-
box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12); }
|
740
|
-
|
741
|
-
.mat-elevation-z4 {
|
742
|
-
-webkit-box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
743
|
-
box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12); }
|
744
|
-
|
745
|
-
.mat-elevation-z5 {
|
746
|
-
-webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
|
747
|
-
box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12); }
|
748
|
-
|
749
|
-
.mat-elevation-z6 {
|
750
|
-
-webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
|
751
|
-
box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12); }
|
752
|
-
|
753
|
-
.mat-elevation-z7 {
|
754
|
-
-webkit-box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
|
755
|
-
box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12); }
|
756
|
-
|
757
|
-
.mat-elevation-z8 {
|
758
|
-
-webkit-box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
|
759
|
-
box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12); }
|
760
|
-
|
761
|
-
.mat-elevation-z9 {
|
762
|
-
-webkit-box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);
|
763
|
-
box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12); }
|
764
|
-
|
765
|
-
.mat-elevation-z10 {
|
766
|
-
-webkit-box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);
|
767
|
-
box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12); }
|
768
|
-
|
769
|
-
.mat-elevation-z11 {
|
770
|
-
-webkit-box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);
|
771
|
-
box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12); }
|
772
|
-
|
773
|
-
.mat-elevation-z12 {
|
774
|
-
-webkit-box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
|
775
|
-
box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12); }
|
776
|
-
|
777
|
-
.mat-elevation-z13 {
|
778
|
-
-webkit-box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
|
779
|
-
box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12); }
|
780
|
-
|
781
|
-
.mat-elevation-z14 {
|
782
|
-
-webkit-box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);
|
783
|
-
box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12); }
|
784
|
-
|
785
|
-
.mat-elevation-z15 {
|
786
|
-
-webkit-box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);
|
787
|
-
box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12); }
|
788
|
-
|
789
|
-
.mat-elevation-z16 {
|
790
|
-
-webkit-box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
|
791
|
-
box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12); }
|
792
|
-
|
793
|
-
.mat-elevation-z17 {
|
794
|
-
-webkit-box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);
|
795
|
-
box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12); }
|
796
|
-
|
797
|
-
.mat-elevation-z18 {
|
798
|
-
-webkit-box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);
|
799
|
-
box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12); }
|
800
|
-
|
801
|
-
.mat-elevation-z19 {
|
802
|
-
-webkit-box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);
|
803
|
-
box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12); }
|
804
|
-
|
805
|
-
.mat-elevation-z20 {
|
806
|
-
-webkit-box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);
|
807
|
-
box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12); }
|
808
|
-
|
809
|
-
.mat-elevation-z21 {
|
810
|
-
-webkit-box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);
|
811
|
-
box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12); }
|
812
|
-
|
813
|
-
.mat-elevation-z22 {
|
814
|
-
-webkit-box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);
|
815
|
-
box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12); }
|
816
|
-
|
817
|
-
.mat-elevation-z23 {
|
818
|
-
-webkit-box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);
|
819
|
-
box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12); }
|
820
|
-
|
821
|
-
.mat-elevation-z24 {
|
822
|
-
-webkit-box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
|
823
|
-
box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); }
|
824
|
-
|
825
|
-
.mat-theme-loaded-marker {
|
826
|
-
display: none; }
|
827
|
-
|
828
|
-
.mat-autocomplete-panel {
|
829
|
-
background: white;
|
830
|
-
color: rgba(0, 0, 0, 0.87); }
|
831
|
-
.mat-autocomplete-panel:not([class*='mat-elevation-z']) {
|
832
|
-
-webkit-box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
833
|
-
box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12); }
|
834
|
-
.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover) {
|
835
|
-
background: white; }
|
836
|
-
.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled) {
|
837
|
-
color: rgba(0, 0, 0, 0.87); }
|
838
|
-
|
839
|
-
.mat-badge-content {
|
840
|
-
color: white;
|
841
|
-
background: #ef6c00; }
|
842
|
-
.cdk-high-contrast-active .mat-badge-content {
|
843
|
-
outline: solid 1px;
|
844
|
-
border-radius: 0; }
|
845
|
-
|
846
|
-
.mat-badge-accent .mat-badge-content {
|
847
|
-
background: #039be5;
|
848
|
-
color: white; }
|
849
|
-
|
850
|
-
.mat-badge-warn .mat-badge-content {
|
851
|
-
color: white;
|
852
|
-
background: #e53935; }
|
853
|
-
|
854
|
-
.mat-badge {
|
855
|
-
position: relative; }
|
856
|
-
|
857
|
-
.mat-badge-hidden .mat-badge-content {
|
858
|
-
display: none; }
|
859
|
-
|
860
|
-
.mat-badge-disabled .mat-badge-content {
|
861
|
-
background: #b9b9b9;
|
862
|
-
color: rgba(0, 0, 0, 0.38); }
|
863
|
-
|
864
|
-
.mat-badge-content {
|
865
|
-
position: absolute;
|
866
|
-
text-align: center;
|
867
|
-
display: inline-block;
|
868
|
-
border-radius: 50%;
|
869
|
-
-webkit-transition: -webkit-transform 200ms ease-in-out;
|
870
|
-
transition: -webkit-transform 200ms ease-in-out;
|
871
|
-
transition: transform 200ms ease-in-out;
|
872
|
-
transition: transform 200ms ease-in-out, -webkit-transform 200ms ease-in-out;
|
873
|
-
-webkit-transform: scale(0.6);
|
874
|
-
-ms-transform: scale(0.6);
|
875
|
-
transform: scale(0.6);
|
876
|
-
overflow: hidden;
|
877
|
-
white-space: nowrap;
|
878
|
-
text-overflow: ellipsis;
|
879
|
-
pointer-events: none; }
|
880
|
-
|
881
|
-
.ng-animate-disabled .mat-badge-content,
|
882
|
-
.mat-badge-content._mat-animation-noopable {
|
883
|
-
-webkit-transition: none;
|
884
|
-
transition: none; }
|
885
|
-
|
886
|
-
.mat-badge-content.mat-badge-active {
|
887
|
-
-webkit-transform: none;
|
888
|
-
-ms-transform: none;
|
889
|
-
transform: none; }
|
890
|
-
|
891
|
-
.mat-badge-small .mat-badge-content {
|
892
|
-
width: 16px;
|
893
|
-
height: 16px;
|
894
|
-
line-height: 16px; }
|
895
|
-
|
896
|
-
.mat-badge-small.mat-badge-above .mat-badge-content {
|
897
|
-
top: -8px; }
|
898
|
-
|
899
|
-
.mat-badge-small.mat-badge-below .mat-badge-content {
|
900
|
-
bottom: -8px; }
|
901
|
-
|
902
|
-
.mat-badge-small.mat-badge-before .mat-badge-content {
|
903
|
-
left: -16px; }
|
904
|
-
|
905
|
-
[dir='rtl'] .mat-badge-small.mat-badge-before .mat-badge-content {
|
906
|
-
left: auto;
|
907
|
-
right: -16px; }
|
908
|
-
|
909
|
-
.mat-badge-small.mat-badge-after .mat-badge-content {
|
910
|
-
right: -16px; }
|
911
|
-
|
912
|
-
[dir='rtl'] .mat-badge-small.mat-badge-after .mat-badge-content {
|
913
|
-
right: auto;
|
914
|
-
left: -16px; }
|
915
|
-
|
916
|
-
.mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
|
917
|
-
left: -8px; }
|
918
|
-
|
919
|
-
[dir='rtl'] .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
|
920
|
-
left: auto;
|
921
|
-
right: -8px; }
|
922
|
-
|
923
|
-
.mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
|
924
|
-
right: -8px; }
|
925
|
-
|
926
|
-
[dir='rtl'] .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
|
927
|
-
right: auto;
|
928
|
-
left: -8px; }
|
929
|
-
|
930
|
-
.mat-badge-medium .mat-badge-content {
|
931
|
-
width: 22px;
|
932
|
-
height: 22px;
|
933
|
-
line-height: 22px; }
|
934
|
-
|
935
|
-
.mat-badge-medium.mat-badge-above .mat-badge-content {
|
936
|
-
top: -11px; }
|
937
|
-
|
938
|
-
.mat-badge-medium.mat-badge-below .mat-badge-content {
|
939
|
-
bottom: -11px; }
|
940
|
-
|
941
|
-
.mat-badge-medium.mat-badge-before .mat-badge-content {
|
942
|
-
left: -22px; }
|
943
|
-
|
944
|
-
[dir='rtl'] .mat-badge-medium.mat-badge-before .mat-badge-content {
|
945
|
-
left: auto;
|
946
|
-
right: -22px; }
|
947
|
-
|
948
|
-
.mat-badge-medium.mat-badge-after .mat-badge-content {
|
949
|
-
right: -22px; }
|
950
|
-
|
951
|
-
[dir='rtl'] .mat-badge-medium.mat-badge-after .mat-badge-content {
|
952
|
-
right: auto;
|
953
|
-
left: -22px; }
|
954
|
-
|
955
|
-
.mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
|
956
|
-
left: -11px; }
|
957
|
-
|
958
|
-
[dir='rtl'] .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
|
959
|
-
left: auto;
|
960
|
-
right: -11px; }
|
961
|
-
|
962
|
-
.mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
|
963
|
-
right: -11px; }
|
964
|
-
|
965
|
-
[dir='rtl'] .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
|
966
|
-
right: auto;
|
967
|
-
left: -11px; }
|
968
|
-
|
969
|
-
.mat-badge-large .mat-badge-content {
|
970
|
-
width: 28px;
|
971
|
-
height: 28px;
|
972
|
-
line-height: 28px; }
|
973
|
-
|
974
|
-
.mat-badge-large.mat-badge-above .mat-badge-content {
|
975
|
-
top: -14px; }
|
976
|
-
|
977
|
-
.mat-badge-large.mat-badge-below .mat-badge-content {
|
978
|
-
bottom: -14px; }
|
979
|
-
|
980
|
-
.mat-badge-large.mat-badge-before .mat-badge-content {
|
981
|
-
left: -28px; }
|
982
|
-
|
983
|
-
[dir='rtl'] .mat-badge-large.mat-badge-before .mat-badge-content {
|
984
|
-
left: auto;
|
985
|
-
right: -28px; }
|
986
|
-
|
987
|
-
.mat-badge-large.mat-badge-after .mat-badge-content {
|
988
|
-
right: -28px; }
|
989
|
-
|
990
|
-
[dir='rtl'] .mat-badge-large.mat-badge-after .mat-badge-content {
|
991
|
-
right: auto;
|
992
|
-
left: -28px; }
|
993
|
-
|
994
|
-
.mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
|
995
|
-
left: -14px; }
|
996
|
-
|
997
|
-
[dir='rtl'] .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
|
998
|
-
left: auto;
|
999
|
-
right: -14px; }
|
1000
|
-
|
1001
|
-
.mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
|
1002
|
-
right: -14px; }
|
1003
|
-
|
1004
|
-
[dir='rtl'] .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
|
1005
|
-
right: auto;
|
1006
|
-
left: -14px; }
|
1007
|
-
|
1008
|
-
.mat-bottom-sheet-container {
|
1009
|
-
-webkit-box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
|
1010
|
-
box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
|
1011
|
-
background: white;
|
1012
|
-
color: rgba(0, 0, 0, 0.87); }
|
1013
|
-
|
1014
|
-
.mat-button, .mat-icon-button, .mat-stroked-button {
|
1015
|
-
color: inherit;
|
1016
|
-
background: transparent; }
|
1017
|
-
.mat-button.mat-primary, .mat-icon-button.mat-primary, .mat-stroked-button.mat-primary {
|
1018
|
-
color: #ef6c00; }
|
1019
|
-
.mat-button.mat-accent, .mat-icon-button.mat-accent, .mat-stroked-button.mat-accent {
|
1020
|
-
color: #039be5; }
|
1021
|
-
.mat-button.mat-warn, .mat-icon-button.mat-warn, .mat-stroked-button.mat-warn {
|
1022
|
-
color: #e53935; }
|
1023
|
-
.mat-button.mat-primary.mat-button-disabled, .mat-button.mat-accent.mat-button-disabled, .mat-button.mat-warn.mat-button-disabled, .mat-button.mat-button-disabled.mat-button-disabled, .mat-icon-button.mat-primary.mat-button-disabled, .mat-icon-button.mat-accent.mat-button-disabled, .mat-icon-button.mat-warn.mat-button-disabled, .mat-icon-button.mat-button-disabled.mat-button-disabled, .mat-stroked-button.mat-primary.mat-button-disabled, .mat-stroked-button.mat-accent.mat-button-disabled, .mat-stroked-button.mat-warn.mat-button-disabled, .mat-stroked-button.mat-button-disabled.mat-button-disabled {
|
1024
|
-
color: rgba(0, 0, 0, 0.26); }
|
1025
|
-
.mat-button.mat-primary .mat-button-focus-overlay, .mat-icon-button.mat-primary .mat-button-focus-overlay, .mat-stroked-button.mat-primary .mat-button-focus-overlay {
|
1026
|
-
background-color: #ef6c00; }
|
1027
|
-
.mat-button.mat-accent .mat-button-focus-overlay, .mat-icon-button.mat-accent .mat-button-focus-overlay, .mat-stroked-button.mat-accent .mat-button-focus-overlay {
|
1028
|
-
background-color: #039be5; }
|
1029
|
-
.mat-button.mat-warn .mat-button-focus-overlay, .mat-icon-button.mat-warn .mat-button-focus-overlay, .mat-stroked-button.mat-warn .mat-button-focus-overlay {
|
1030
|
-
background-color: #e53935; }
|
1031
|
-
.mat-button.mat-button-disabled .mat-button-focus-overlay, .mat-icon-button.mat-button-disabled .mat-button-focus-overlay, .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay {
|
1032
|
-
background-color: transparent; }
|
1033
|
-
.mat-button .mat-ripple-element, .mat-icon-button .mat-ripple-element, .mat-stroked-button .mat-ripple-element {
|
1034
|
-
opacity: 0.1;
|
1035
|
-
background-color: currentColor; }
|
1036
|
-
|
1037
|
-
.mat-button-focus-overlay {
|
1038
|
-
background: black; }
|
1039
|
-
|
1040
|
-
.mat-stroked-button:not(.mat-button-disabled) {
|
1041
|
-
border-color: rgba(0, 0, 0, 0.12); }
|
1042
|
-
|
1043
|
-
.mat-flat-button, .mat-raised-button, .mat-fab, .mat-mini-fab {
|
1044
|
-
color: rgba(0, 0, 0, 0.87);
|
1045
|
-
background-color: white; }
|
1046
|
-
.mat-flat-button.mat-primary, .mat-raised-button.mat-primary, .mat-fab.mat-primary, .mat-mini-fab.mat-primary {
|
1047
|
-
color: white; }
|
1048
|
-
.mat-flat-button.mat-accent, .mat-raised-button.mat-accent, .mat-fab.mat-accent, .mat-mini-fab.mat-accent {
|
1049
|
-
color: white; }
|
1050
|
-
.mat-flat-button.mat-warn, .mat-raised-button.mat-warn, .mat-fab.mat-warn, .mat-mini-fab.mat-warn {
|
1051
|
-
color: white; }
|
1052
|
-
.mat-flat-button.mat-primary.mat-button-disabled, .mat-flat-button.mat-accent.mat-button-disabled, .mat-flat-button.mat-warn.mat-button-disabled, .mat-flat-button.mat-button-disabled.mat-button-disabled, .mat-raised-button.mat-primary.mat-button-disabled, .mat-raised-button.mat-accent.mat-button-disabled, .mat-raised-button.mat-warn.mat-button-disabled, .mat-raised-button.mat-button-disabled.mat-button-disabled, .mat-fab.mat-primary.mat-button-disabled, .mat-fab.mat-accent.mat-button-disabled, .mat-fab.mat-warn.mat-button-disabled, .mat-fab.mat-button-disabled.mat-button-disabled, .mat-mini-fab.mat-primary.mat-button-disabled, .mat-mini-fab.mat-accent.mat-button-disabled, .mat-mini-fab.mat-warn.mat-button-disabled, .mat-mini-fab.mat-button-disabled.mat-button-disabled {
|
1053
|
-
color: rgba(0, 0, 0, 0.26); }
|
1054
|
-
.mat-flat-button.mat-primary, .mat-raised-button.mat-primary, .mat-fab.mat-primary, .mat-mini-fab.mat-primary {
|
1055
|
-
background-color: #ef6c00; }
|
1056
|
-
.mat-flat-button.mat-accent, .mat-raised-button.mat-accent, .mat-fab.mat-accent, .mat-mini-fab.mat-accent {
|
1057
|
-
background-color: #039be5; }
|
1058
|
-
.mat-flat-button.mat-warn, .mat-raised-button.mat-warn, .mat-fab.mat-warn, .mat-mini-fab.mat-warn {
|
1059
|
-
background-color: #e53935; }
|
1060
|
-
.mat-flat-button.mat-primary.mat-button-disabled, .mat-flat-button.mat-accent.mat-button-disabled, .mat-flat-button.mat-warn.mat-button-disabled, .mat-flat-button.mat-button-disabled.mat-button-disabled, .mat-raised-button.mat-primary.mat-button-disabled, .mat-raised-button.mat-accent.mat-button-disabled, .mat-raised-button.mat-warn.mat-button-disabled, .mat-raised-button.mat-button-disabled.mat-button-disabled, .mat-fab.mat-primary.mat-button-disabled, .mat-fab.mat-accent.mat-button-disabled, .mat-fab.mat-warn.mat-button-disabled, .mat-fab.mat-button-disabled.mat-button-disabled, .mat-mini-fab.mat-primary.mat-button-disabled, .mat-mini-fab.mat-accent.mat-button-disabled, .mat-mini-fab.mat-warn.mat-button-disabled, .mat-mini-fab.mat-button-disabled.mat-button-disabled {
|
1061
|
-
background-color: rgba(0, 0, 0, 0.12); }
|
1062
|
-
.mat-flat-button.mat-primary .mat-ripple-element, .mat-raised-button.mat-primary .mat-ripple-element, .mat-fab.mat-primary .mat-ripple-element, .mat-mini-fab.mat-primary .mat-ripple-element {
|
1063
|
-
background-color: rgba(255, 255, 255, 0.1); }
|
1064
|
-
.mat-flat-button.mat-accent .mat-ripple-element, .mat-raised-button.mat-accent .mat-ripple-element, .mat-fab.mat-accent .mat-ripple-element, .mat-mini-fab.mat-accent .mat-ripple-element {
|
1065
|
-
background-color: rgba(255, 255, 255, 0.1); }
|
1066
|
-
.mat-flat-button.mat-warn .mat-ripple-element, .mat-raised-button.mat-warn .mat-ripple-element, .mat-fab.mat-warn .mat-ripple-element, .mat-mini-fab.mat-warn .mat-ripple-element {
|
1067
|
-
background-color: rgba(255, 255, 255, 0.1); }
|
1068
|
-
|
1069
|
-
.mat-stroked-button:not([class*='mat-elevation-z']), .mat-flat-button:not([class*='mat-elevation-z']) {
|
1070
|
-
-webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
1071
|
-
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12); }
|
1072
|
-
|
1073
|
-
.mat-raised-button:not([class*='mat-elevation-z']) {
|
1074
|
-
-webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
1075
|
-
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12); }
|
1076
|
-
|
1077
|
-
.mat-raised-button:not(.mat-button-disabled):active:not([class*='mat-elevation-z']) {
|
1078
|
-
-webkit-box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
|
1079
|
-
box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12); }
|
1080
|
-
|
1081
|
-
.mat-raised-button.mat-button-disabled:not([class*='mat-elevation-z']) {
|
1082
|
-
-webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
1083
|
-
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12); }
|
1084
|
-
|
1085
|
-
.mat-fab:not([class*='mat-elevation-z']), .mat-mini-fab:not([class*='mat-elevation-z']) {
|
1086
|
-
-webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
|
1087
|
-
box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12); }
|
1088
|
-
|
1089
|
-
.mat-fab:not(.mat-button-disabled):active:not([class*='mat-elevation-z']), .mat-mini-fab:not(.mat-button-disabled):active:not([class*='mat-elevation-z']) {
|
1090
|
-
-webkit-box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
|
1091
|
-
box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12); }
|
1092
|
-
|
1093
|
-
.mat-fab.mat-button-disabled:not([class*='mat-elevation-z']), .mat-mini-fab.mat-button-disabled:not([class*='mat-elevation-z']) {
|
1094
|
-
-webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
1095
|
-
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12); }
|
1096
|
-
|
1097
|
-
.mat-button-toggle-standalone,
|
1098
|
-
.mat-button-toggle-group {
|
1099
|
-
-webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
1100
|
-
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12); }
|
1101
|
-
|
1102
|
-
.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
|
1103
|
-
.mat-button-toggle-group-appearance-standard {
|
1104
|
-
-webkit-box-shadow: none;
|
1105
|
-
box-shadow: none; }
|
1106
|
-
|
1107
|
-
.mat-button-toggle {
|
1108
|
-
color: rgba(0, 0, 0, 0.38); }
|
1109
|
-
.mat-button-toggle .mat-button-toggle-focus-overlay {
|
1110
|
-
background-color: rgba(0, 0, 0, 0.12); }
|
1111
|
-
|
1112
|
-
.mat-button-toggle-appearance-standard {
|
1113
|
-
color: rgba(0, 0, 0, 0.87);
|
1114
|
-
background: white; }
|
1115
|
-
.mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay {
|
1116
|
-
background-color: black; }
|
1117
|
-
|
1118
|
-
.mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
|
1119
|
-
border-left: solid 1px rgba(0, 0, 0, 0.12); }
|
1120
|
-
|
1121
|
-
[dir='rtl'] .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
|
1122
|
-
border-left: none;
|
1123
|
-
border-right: solid 1px rgba(0, 0, 0, 0.12); }
|
1124
|
-
|
1125
|
-
.mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle + .mat-button-toggle {
|
1126
|
-
border-left: none;
|
1127
|
-
border-right: none;
|
1128
|
-
border-top: solid 1px rgba(0, 0, 0, 0.12); }
|
1129
|
-
|
1130
|
-
.mat-button-toggle-checked {
|
1131
|
-
background-color: #e0e0e0;
|
1132
|
-
color: rgba(0, 0, 0, 0.54); }
|
1133
|
-
.mat-button-toggle-checked.mat-button-toggle-appearance-standard {
|
1134
|
-
color: rgba(0, 0, 0, 0.87); }
|
1135
|
-
|
1136
|
-
.mat-button-toggle-disabled {
|
1137
|
-
color: rgba(0, 0, 0, 0.26);
|
1138
|
-
background-color: #eeeeee; }
|
1139
|
-
.mat-button-toggle-disabled.mat-button-toggle-appearance-standard {
|
1140
|
-
background: white; }
|
1141
|
-
.mat-button-toggle-disabled.mat-button-toggle-checked {
|
1142
|
-
background-color: #bdbdbd; }
|
1143
|
-
|
1144
|
-
.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
|
1145
|
-
.mat-button-toggle-group-appearance-standard {
|
1146
|
-
border: solid 1px rgba(0, 0, 0, 0.12); }
|
1147
|
-
|
1148
|
-
.mat-button-toggle-appearance-standard .mat-button-toggle-label-content {
|
1149
|
-
line-height: 48px; }
|
1150
|
-
|
1151
|
-
.mat-card {
|
1152
|
-
background: white;
|
1153
|
-
color: rgba(0, 0, 0, 0.87); }
|
1154
|
-
.mat-card:not([class*='mat-elevation-z']) {
|
1155
|
-
-webkit-box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
|
1156
|
-
box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12); }
|
1157
|
-
.mat-card.mat-card-flat:not([class*='mat-elevation-z']) {
|
1158
|
-
-webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
1159
|
-
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12); }
|
1160
|
-
|
1161
|
-
.mat-card-subtitle {
|
1162
|
-
color: rgba(0, 0, 0, 0.54); }
|
1163
|
-
|
1164
|
-
.mat-checkbox-frame {
|
1165
|
-
border-color: rgba(0, 0, 0, 0.54); }
|
1166
|
-
|
1167
|
-
.mat-checkbox-checkmark {
|
1168
|
-
fill: #fafafa; }
|
1169
|
-
|
1170
|
-
.mat-checkbox-checkmark-path {
|
1171
|
-
stroke: #fafafa !important; }
|
1172
|
-
|
1173
|
-
.mat-checkbox-mixedmark {
|
1174
|
-
background-color: #fafafa; }
|
1175
|
-
|
1176
|
-
.mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, .mat-checkbox-checked.mat-primary .mat-checkbox-background {
|
1177
|
-
background-color: #ef6c00; }
|
1178
|
-
|
1179
|
-
.mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .mat-checkbox-checked.mat-accent .mat-checkbox-background {
|
1180
|
-
background-color: #039be5; }
|
1181
|
-
|
1182
|
-
.mat-checkbox-indeterminate.mat-warn .mat-checkbox-background, .mat-checkbox-checked.mat-warn .mat-checkbox-background {
|
1183
|
-
background-color: #e53935; }
|
1184
|
-
|
1185
|
-
.mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background, .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background {
|
1186
|
-
background-color: #b0b0b0; }
|
1187
|
-
|
1188
|
-
.mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame {
|
1189
|
-
border-color: #b0b0b0; }
|
1190
|
-
|
1191
|
-
.mat-checkbox-disabled .mat-checkbox-label {
|
1192
|
-
color: rgba(0, 0, 0, 0.54); }
|
1193
|
-
|
1194
|
-
.mat-checkbox .mat-ripple-element {
|
1195
|
-
background-color: black; }
|
1196
|
-
|
1197
|
-
.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,
|
1198
|
-
.mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element {
|
1199
|
-
background: #ef6c00; }
|
1200
|
-
|
1201
|
-
.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,
|
1202
|
-
.mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {
|
1203
|
-
background: #039be5; }
|
1204
|
-
|
1205
|
-
.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,
|
1206
|
-
.mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element {
|
1207
|
-
background: #e53935; }
|
1208
|
-
|
1209
|
-
.mat-chip.mat-standard-chip {
|
1210
|
-
background-color: #e0e0e0;
|
1211
|
-
color: rgba(0, 0, 0, 0.87); }
|
1212
|
-
.mat-chip.mat-standard-chip .mat-chip-remove {
|
1213
|
-
color: rgba(0, 0, 0, 0.87);
|
1214
|
-
opacity: 0.4; }
|
1215
|
-
.mat-chip.mat-standard-chip:not(.mat-chip-disabled):active {
|
1216
|
-
-webkit-box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
|
1217
|
-
box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12); }
|
1218
|
-
.mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover {
|
1219
|
-
opacity: 0.54; }
|
1220
|
-
.mat-chip.mat-standard-chip.mat-chip-disabled {
|
1221
|
-
opacity: 0.4; }
|
1222
|
-
.mat-chip.mat-standard-chip::after {
|
1223
|
-
background: black; }
|
1224
|
-
|
1225
|
-
.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary {
|
1226
|
-
background-color: #ef6c00;
|
1227
|
-
color: white; }
|
1228
|
-
.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove {
|
1229
|
-
color: white;
|
1230
|
-
opacity: 0.4; }
|
1231
|
-
.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element {
|
1232
|
-
background-color: rgba(255, 255, 255, 0.1); }
|
1233
|
-
|
1234
|
-
.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn {
|
1235
|
-
background-color: #e53935;
|
1236
|
-
color: white; }
|
1237
|
-
.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove {
|
1238
|
-
color: white;
|
1239
|
-
opacity: 0.4; }
|
1240
|
-
.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element {
|
1241
|
-
background-color: rgba(255, 255, 255, 0.1); }
|
1242
|
-
|
1243
|
-
.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent {
|
1244
|
-
background-color: #039be5;
|
1245
|
-
color: white; }
|
1246
|
-
.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove {
|
1247
|
-
color: white;
|
1248
|
-
opacity: 0.4; }
|
1249
|
-
.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element {
|
1250
|
-
background-color: rgba(255, 255, 255, 0.1); }
|
1251
|
-
|
1252
|
-
.mat-table {
|
1253
|
-
background: white; }
|
1254
|
-
|
1255
|
-
.mat-table thead, .mat-table tbody, .mat-table tfoot,
|
1256
|
-
mat-header-row, mat-row, mat-footer-row,
|
1257
|
-
[mat-header-row], [mat-row], [mat-footer-row],
|
1258
|
-
.mat-table-sticky {
|
1259
|
-
background: inherit; }
|
1260
|
-
|
1261
|
-
mat-row, mat-header-row, mat-footer-row,
|
1262
|
-
th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
|
1263
|
-
border-bottom-color: rgba(0, 0, 0, 0.12); }
|
1264
|
-
|
1265
|
-
.mat-header-cell {
|
1266
|
-
color: rgba(0, 0, 0, 0.54); }
|
1267
|
-
|
1268
|
-
.mat-cell, .mat-footer-cell {
|
1269
|
-
color: rgba(0, 0, 0, 0.87); }
|
1270
|
-
|
1271
|
-
.mat-calendar-arrow {
|
1272
|
-
border-top-color: rgba(0, 0, 0, 0.54); }
|
1273
|
-
|
1274
|
-
.mat-datepicker-toggle,
|
1275
|
-
.mat-datepicker-content .mat-calendar-next-button,
|
1276
|
-
.mat-datepicker-content .mat-calendar-previous-button {
|
1277
|
-
color: rgba(0, 0, 0, 0.54); }
|
1278
|
-
|
1279
|
-
.mat-calendar-table-header {
|
1280
|
-
color: rgba(0, 0, 0, 0.38); }
|
1281
|
-
|
1282
|
-
.mat-calendar-table-header-divider::after {
|
1283
|
-
background: rgba(0, 0, 0, 0.12); }
|
1284
|
-
|
1285
|
-
.mat-calendar-body-label {
|
1286
|
-
color: rgba(0, 0, 0, 0.54); }
|
1287
|
-
|
1288
|
-
.mat-calendar-body-cell-content,
|
1289
|
-
.mat-date-range-input-separator {
|
1290
|
-
color: rgba(0, 0, 0, 0.87);
|
1291
|
-
border-color: transparent; }
|
1292
|
-
|
1293
|
-
.mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
|
1294
|
-
color: rgba(0, 0, 0, 0.38); }
|
1295
|
-
|
1296
|
-
.mat-form-field-disabled .mat-date-range-input-separator {
|
1297
|
-
color: rgba(0, 0, 0, 0.38); }
|
1298
|
-
|
1299
|
-
.mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
|
1300
|
-
.cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
|
1301
|
-
.cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
|
1302
|
-
background-color: rgba(0, 0, 0, 0.04); }
|
1303
|
-
|
1304
|
-
.mat-calendar-body-in-preview {
|
1305
|
-
color: rgba(0, 0, 0, 0.24); }
|
1306
|
-
|
1307
|
-
.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
|
1308
|
-
border-color: rgba(0, 0, 0, 0.38); }
|
1309
|
-
|
1310
|
-
.mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
|
1311
|
-
border-color: rgba(0, 0, 0, 0.18); }
|
1312
|
-
|
1313
|
-
.mat-calendar-body-in-range::before {
|
1314
|
-
background: rgba(239, 108, 0, 0.2); }
|
1315
|
-
|
1316
|
-
.mat-calendar-body-comparison-identical,
|
1317
|
-
.mat-calendar-body-in-comparison-range::before {
|
1318
|
-
background: rgba(249, 171, 0, 0.2); }
|
1319
|
-
|
1320
|
-
.mat-calendar-body-comparison-bridge-start::before,
|
1321
|
-
[dir='rtl'] .mat-calendar-body-comparison-bridge-end::before {
|
1322
|
-
background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(239, 108, 0, 0.2)), color-stop(50%, rgba(249, 171, 0, 0.2)));
|
1323
|
-
background: linear-gradient(to right, rgba(239, 108, 0, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%); }
|
1324
|
-
|
1325
|
-
.mat-calendar-body-comparison-bridge-end::before,
|
1326
|
-
[dir='rtl'] .mat-calendar-body-comparison-bridge-start::before {
|
1327
|
-
background: -webkit-gradient(linear, right top, left top, color-stop(50%, rgba(239, 108, 0, 0.2)), color-stop(50%, rgba(249, 171, 0, 0.2)));
|
1328
|
-
background: linear-gradient(to left, rgba(239, 108, 0, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%); }
|
1329
|
-
|
1330
|
-
.mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
|
1331
|
-
.mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
|
1332
|
-
background: #a8dab5; }
|
1333
|
-
|
1334
|
-
.mat-calendar-body-comparison-identical.mat-calendar-body-selected,
|
1335
|
-
.mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
|
1336
|
-
background: #46a35e; }
|
1337
|
-
|
1338
|
-
.mat-calendar-body-selected {
|
1339
|
-
background-color: #ef6c00;
|
1340
|
-
color: white; }
|
1341
|
-
|
1342
|
-
.mat-calendar-body-disabled > .mat-calendar-body-selected {
|
1343
|
-
background-color: rgba(239, 108, 0, 0.4); }
|
1344
|
-
|
1345
|
-
.mat-calendar-body-today.mat-calendar-body-selected {
|
1346
|
-
-webkit-box-shadow: inset 0 0 0 1px white;
|
1347
|
-
box-shadow: inset 0 0 0 1px white; }
|
1348
|
-
|
1349
|
-
.mat-datepicker-content {
|
1350
|
-
-webkit-box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
1351
|
-
box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
1352
|
-
background-color: white;
|
1353
|
-
color: rgba(0, 0, 0, 0.87); }
|
1354
|
-
.mat-datepicker-content.mat-accent .mat-calendar-body-in-range::before {
|
1355
|
-
background: rgba(3, 155, 229, 0.2); }
|
1356
|
-
.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,
|
1357
|
-
.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range::before {
|
1358
|
-
background: rgba(249, 171, 0, 0.2); }
|
1359
|
-
.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start::before,
|
1360
|
-
.mat-datepicker-content.mat-accent [dir='rtl'] .mat-calendar-body-comparison-bridge-end::before {
|
1361
|
-
background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(3, 155, 229, 0.2)), color-stop(50%, rgba(249, 171, 0, 0.2)));
|
1362
|
-
background: linear-gradient(to right, rgba(3, 155, 229, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%); }
|
1363
|
-
.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end::before,
|
1364
|
-
.mat-datepicker-content.mat-accent [dir='rtl'] .mat-calendar-body-comparison-bridge-start::before {
|
1365
|
-
background: -webkit-gradient(linear, right top, left top, color-stop(50%, rgba(3, 155, 229, 0.2)), color-stop(50%, rgba(249, 171, 0, 0.2)));
|
1366
|
-
background: linear-gradient(to left, rgba(3, 155, 229, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%); }
|
1367
|
-
.mat-datepicker-content.mat-accent .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
|
1368
|
-
.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
|
1369
|
-
background: #a8dab5; }
|
1370
|
-
.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
|
1371
|
-
.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
|
1372
|
-
background: #46a35e; }
|
1373
|
-
.mat-datepicker-content.mat-accent .mat-calendar-body-selected {
|
1374
|
-
background-color: #039be5;
|
1375
|
-
color: white; }
|
1376
|
-
.mat-datepicker-content.mat-accent .mat-calendar-body-disabled > .mat-calendar-body-selected {
|
1377
|
-
background-color: rgba(3, 155, 229, 0.4); }
|
1378
|
-
.mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected {
|
1379
|
-
-webkit-box-shadow: inset 0 0 0 1px white;
|
1380
|
-
box-shadow: inset 0 0 0 1px white; }
|
1381
|
-
.mat-datepicker-content.mat-warn .mat-calendar-body-in-range::before {
|
1382
|
-
background: rgba(229, 57, 53, 0.2); }
|
1383
|
-
.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,
|
1384
|
-
.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range::before {
|
1385
|
-
background: rgba(249, 171, 0, 0.2); }
|
1386
|
-
.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start::before,
|
1387
|
-
.mat-datepicker-content.mat-warn [dir='rtl'] .mat-calendar-body-comparison-bridge-end::before {
|
1388
|
-
background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(229, 57, 53, 0.2)), color-stop(50%, rgba(249, 171, 0, 0.2)));
|
1389
|
-
background: linear-gradient(to right, rgba(229, 57, 53, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%); }
|
1390
|
-
.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end::before,
|
1391
|
-
.mat-datepicker-content.mat-warn [dir='rtl'] .mat-calendar-body-comparison-bridge-start::before {
|
1392
|
-
background: -webkit-gradient(linear, right top, left top, color-stop(50%, rgba(229, 57, 53, 0.2)), color-stop(50%, rgba(249, 171, 0, 0.2)));
|
1393
|
-
background: linear-gradient(to left, rgba(229, 57, 53, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%); }
|
1394
|
-
.mat-datepicker-content.mat-warn .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
|
1395
|
-
.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
|
1396
|
-
background: #a8dab5; }
|
1397
|
-
.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
|
1398
|
-
.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
|
1399
|
-
background: #46a35e; }
|
1400
|
-
.mat-datepicker-content.mat-warn .mat-calendar-body-selected {
|
1401
|
-
background-color: #e53935;
|
1402
|
-
color: white; }
|
1403
|
-
.mat-datepicker-content.mat-warn .mat-calendar-body-disabled > .mat-calendar-body-selected {
|
1404
|
-
background-color: rgba(229, 57, 53, 0.4); }
|
1405
|
-
.mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected {
|
1406
|
-
-webkit-box-shadow: inset 0 0 0 1px white;
|
1407
|
-
box-shadow: inset 0 0 0 1px white; }
|
1408
|
-
|
1409
|
-
.mat-datepicker-content-touch {
|
1410
|
-
-webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
|
1411
|
-
box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12); }
|
1412
|
-
|
1413
|
-
.mat-datepicker-toggle-active {
|
1414
|
-
color: #ef6c00; }
|
1415
|
-
.mat-datepicker-toggle-active.mat-accent {
|
1416
|
-
color: #039be5; }
|
1417
|
-
.mat-datepicker-toggle-active.mat-warn {
|
1418
|
-
color: #e53935; }
|
1419
|
-
|
1420
|
-
.mat-date-range-input-inner[disabled] {
|
1421
|
-
color: rgba(0, 0, 0, 0.38); }
|
1422
|
-
|
1423
|
-
.mat-dialog-container {
|
1424
|
-
-webkit-box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
|
1425
|
-
box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
|
1426
|
-
background: white;
|
1427
|
-
color: rgba(0, 0, 0, 0.87); }
|
1428
|
-
|
1429
|
-
.mat-divider {
|
1430
|
-
border-top-color: rgba(0, 0, 0, 0.12); }
|
1431
|
-
|
1432
|
-
.mat-divider-vertical {
|
1433
|
-
border-right-color: rgba(0, 0, 0, 0.12); }
|
1434
|
-
|
1435
|
-
.mat-expansion-panel {
|
1436
|
-
background: white;
|
1437
|
-
color: rgba(0, 0, 0, 0.87); }
|
1438
|
-
.mat-expansion-panel:not([class*='mat-elevation-z']) {
|
1439
|
-
-webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
1440
|
-
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12); }
|
1441
|
-
|
1442
|
-
.mat-action-row {
|
1443
|
-
border-top-color: rgba(0, 0, 0, 0.12); }
|
1444
|
-
|
1445
|
-
.mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled='true']),
|
1446
|
-
.mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled='true']),
|
1447
|
-
.mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled='true']) {
|
1448
|
-
background: rgba(0, 0, 0, 0.04); }
|
1449
|
-
|
1450
|
-
@media (hover: none) {
|
1451
|
-
.mat-expansion-panel:not(.mat-expanded):not([aria-disabled='true'])
|
1452
|
-
.mat-expansion-panel-header:hover {
|
1453
|
-
background: white; } }
|
1454
|
-
|
1455
|
-
.mat-expansion-panel-header-title {
|
1456
|
-
color: rgba(0, 0, 0, 0.87); }
|
1457
|
-
|
1458
|
-
.mat-expansion-panel-header-description,
|
1459
|
-
.mat-expansion-indicator::after {
|
1460
|
-
color: rgba(0, 0, 0, 0.54); }
|
1461
|
-
|
1462
|
-
.mat-expansion-panel-header[aria-disabled='true'] {
|
1463
|
-
color: rgba(0, 0, 0, 0.26); }
|
1464
|
-
.mat-expansion-panel-header[aria-disabled='true'] .mat-expansion-panel-header-title,
|
1465
|
-
.mat-expansion-panel-header[aria-disabled='true'] .mat-expansion-panel-header-description {
|
1466
|
-
color: inherit; }
|
1467
|
-
|
1468
|
-
.mat-expansion-panel-header {
|
1469
|
-
height: 48px; }
|
1470
|
-
.mat-expansion-panel-header.mat-expanded {
|
1471
|
-
height: 64px; }
|
1472
|
-
|
1473
|
-
.mat-form-field-label {
|
1474
|
-
color: rgba(0, 0, 0, 0.6); }
|
1475
|
-
|
1476
|
-
.mat-hint {
|
1477
|
-
color: rgba(0, 0, 0, 0.6); }
|
1478
|
-
|
1479
|
-
.mat-form-field.mat-focused .mat-form-field-label {
|
1480
|
-
color: #ef6c00; }
|
1481
|
-
.mat-form-field.mat-focused .mat-form-field-label.mat-accent {
|
1482
|
-
color: #039be5; }
|
1483
|
-
.mat-form-field.mat-focused .mat-form-field-label.mat-warn {
|
1484
|
-
color: #e53935; }
|
1485
|
-
|
1486
|
-
.mat-focused .mat-form-field-required-marker {
|
1487
|
-
color: #039be5; }
|
1488
|
-
|
1489
|
-
.mat-form-field-ripple {
|
1490
|
-
background-color: rgba(0, 0, 0, 0.87); }
|
1491
|
-
|
1492
|
-
.mat-form-field.mat-focused .mat-form-field-ripple {
|
1493
|
-
background-color: #ef6c00; }
|
1494
|
-
.mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {
|
1495
|
-
background-color: #039be5; }
|
1496
|
-
.mat-form-field.mat-focused .mat-form-field-ripple.mat-warn {
|
1497
|
-
background-color: #e53935; }
|
1498
|
-
|
1499
|
-
.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after {
|
1500
|
-
color: #ef6c00; }
|
1501
|
-
|
1502
|
-
.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix::after {
|
1503
|
-
color: #039be5; }
|
1504
|
-
|
1505
|
-
.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix::after {
|
1506
|
-
color: #e53935; }
|
1507
|
-
|
1508
|
-
.mat-form-field.mat-form-field-invalid .mat-form-field-label {
|
1509
|
-
color: #e53935; }
|
1510
|
-
.mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,
|
1511
|
-
.mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker {
|
1512
|
-
color: #e53935; }
|
1513
|
-
|
1514
|
-
.mat-form-field.mat-form-field-invalid .mat-form-field-ripple,
|
1515
|
-
.mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent {
|
1516
|
-
background-color: #e53935; }
|
1517
|
-
|
1518
|
-
.mat-error {
|
1519
|
-
color: #e53935; }
|
1520
|
-
|
1521
|
-
.mat-form-field-appearance-legacy .mat-form-field-label {
|
1522
|
-
color: rgba(0, 0, 0, 0.54); }
|
1523
|
-
|
1524
|
-
.mat-form-field-appearance-legacy .mat-hint {
|
1525
|
-
color: rgba(0, 0, 0, 0.54); }
|
1526
|
-
|
1527
|
-
.mat-form-field-appearance-legacy .mat-form-field-underline {
|
1528
|
-
background-color: rgba(0, 0, 0, 0.42); }
|
1529
|
-
|
1530
|
-
.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {
|
1531
|
-
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.42)), color-stop(33%, rgba(0, 0, 0, 0.42)), color-stop(0%, transparent));
|
1532
|
-
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);
|
1533
|
-
background-size: 4px 100%;
|
1534
|
-
background-repeat: repeat-x; }
|
1535
|
-
|
1536
|
-
.mat-form-field-appearance-standard .mat-form-field-underline {
|
1537
|
-
background-color: rgba(0, 0, 0, 0.42); }
|
1538
|
-
|
1539
|
-
.mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {
|
1540
|
-
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.42)), color-stop(33%, rgba(0, 0, 0, 0.42)), color-stop(0%, transparent));
|
1541
|
-
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);
|
1542
|
-
background-size: 4px 100%;
|
1543
|
-
background-repeat: repeat-x; }
|
1544
|
-
|
1545
|
-
.mat-form-field-appearance-fill .mat-form-field-flex {
|
1546
|
-
background-color: rgba(0, 0, 0, 0.04); }
|
1547
|
-
|
1548
|
-
.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex {
|
1549
|
-
background-color: rgba(0, 0, 0, 0.02); }
|
1550
|
-
|
1551
|
-
.mat-form-field-appearance-fill .mat-form-field-underline::before {
|
1552
|
-
background-color: rgba(0, 0, 0, 0.42); }
|
1553
|
-
|
1554
|
-
.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label {
|
1555
|
-
color: rgba(0, 0, 0, 0.38); }
|
1556
|
-
|
1557
|
-
.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before {
|
1558
|
-
background-color: transparent; }
|
1559
|
-
|
1560
|
-
.mat-form-field-appearance-outline .mat-form-field-outline {
|
1561
|
-
color: rgba(0, 0, 0, 0.12); }
|
1562
|
-
|
1563
|
-
.mat-form-field-appearance-outline .mat-form-field-outline-thick {
|
1564
|
-
color: rgba(0, 0, 0, 0.87); }
|
1565
|
-
|
1566
|
-
.mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {
|
1567
|
-
color: #ef6c00; }
|
1568
|
-
|
1569
|
-
.mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {
|
1570
|
-
color: #039be5; }
|
1571
|
-
|
1572
|
-
.mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick {
|
1573
|
-
color: #e53935; }
|
1574
|
-
|
1575
|
-
.mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick {
|
1576
|
-
color: #e53935; }
|
1577
|
-
|
1578
|
-
.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label {
|
1579
|
-
color: rgba(0, 0, 0, 0.38); }
|
1580
|
-
|
1581
|
-
.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline {
|
1582
|
-
color: rgba(0, 0, 0, 0.06); }
|
1583
|
-
|
1584
|
-
.mat-icon.mat-primary {
|
1585
|
-
color: #ef6c00; }
|
1586
|
-
|
1587
|
-
.mat-icon.mat-accent {
|
1588
|
-
color: #039be5; }
|
1589
|
-
|
1590
|
-
.mat-icon.mat-warn {
|
1591
|
-
color: #e53935; }
|
1592
|
-
|
1593
|
-
.mat-form-field-type-mat-native-select .mat-form-field-infix::after {
|
1594
|
-
color: rgba(0, 0, 0, 0.54); }
|
1595
|
-
|
1596
|
-
.mat-input-element:disabled,
|
1597
|
-
.mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix::after {
|
1598
|
-
color: rgba(0, 0, 0, 0.38); }
|
1599
|
-
|
1600
|
-
.mat-input-element {
|
1601
|
-
caret-color: #ef6c00; }
|
1602
|
-
.mat-input-element::-webkit-input-placeholder {
|
1603
|
-
color: rgba(0, 0, 0, 0.42); }
|
1604
|
-
.mat-input-element::-moz-placeholder {
|
1605
|
-
color: rgba(0, 0, 0, 0.42); }
|
1606
|
-
.mat-input-element:-ms-input-placeholder {
|
1607
|
-
color: rgba(0, 0, 0, 0.42); }
|
1608
|
-
.mat-input-element::-ms-input-placeholder {
|
1609
|
-
color: rgba(0, 0, 0, 0.42); }
|
1610
|
-
.mat-input-element::placeholder {
|
1611
|
-
color: rgba(0, 0, 0, 0.42); }
|
1612
|
-
.mat-input-element::-moz-placeholder {
|
1613
|
-
color: rgba(0, 0, 0, 0.42); }
|
1614
|
-
.mat-input-element::-webkit-input-placeholder {
|
1615
|
-
color: rgba(0, 0, 0, 0.42); }
|
1616
|
-
.mat-input-element:-ms-input-placeholder {
|
1617
|
-
color: rgba(0, 0, 0, 0.42); }
|
1618
|
-
|
1619
|
-
.mat-form-field.mat-accent .mat-input-element {
|
1620
|
-
caret-color: #039be5; }
|
1621
|
-
|
1622
|
-
.mat-form-field.mat-warn .mat-input-element,
|
1623
|
-
.mat-form-field-invalid .mat-input-element {
|
1624
|
-
caret-color: #e53935; }
|
1625
|
-
|
1626
|
-
.mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after {
|
1627
|
-
color: #e53935; }
|
1628
|
-
|
1629
|
-
.mat-list-base .mat-list-item {
|
1630
|
-
color: rgba(0, 0, 0, 0.87); }
|
1631
|
-
|
1632
|
-
.mat-list-base .mat-list-option {
|
1633
|
-
color: rgba(0, 0, 0, 0.87); }
|
1634
|
-
|
1635
|
-
.mat-list-base .mat-subheader {
|
1636
|
-
color: rgba(0, 0, 0, 0.54); }
|
1637
|
-
|
1638
|
-
.mat-list-item-disabled {
|
1639
|
-
background-color: #eeeeee; }
|
1640
|
-
|
1641
|
-
.mat-list-option:hover, .mat-list-option:focus,
|
1642
|
-
.mat-nav-list .mat-list-item:hover,
|
1643
|
-
.mat-nav-list .mat-list-item:focus,
|
1644
|
-
.mat-action-list .mat-list-item:hover,
|
1645
|
-
.mat-action-list .mat-list-item:focus {
|
1646
|
-
background: rgba(0, 0, 0, 0.04); }
|
1647
|
-
|
1648
|
-
.mat-list-single-selected-option, .mat-list-single-selected-option:hover, .mat-list-single-selected-option:focus {
|
1649
|
-
background: rgba(0, 0, 0, 0.12); }
|
1650
|
-
|
1651
|
-
.mat-menu-panel {
|
1652
|
-
background: white; }
|
1653
|
-
.mat-menu-panel:not([class*='mat-elevation-z']) {
|
1654
|
-
-webkit-box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
1655
|
-
box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12); }
|
1656
|
-
|
1657
|
-
.mat-menu-item {
|
1658
|
-
background: transparent;
|
1659
|
-
color: rgba(0, 0, 0, 0.87); }
|
1660
|
-
.mat-menu-item[disabled], .mat-menu-item[disabled]::after,
|
1661
|
-
.mat-menu-item[disabled] .mat-icon-no-color {
|
1662
|
-
color: rgba(0, 0, 0, 0.38); }
|
1663
|
-
|
1664
|
-
.mat-menu-item .mat-icon-no-color,
|
1665
|
-
.mat-menu-item-submenu-trigger::after {
|
1666
|
-
color: rgba(0, 0, 0, 0.54); }
|
1667
|
-
|
1668
|
-
.mat-menu-item:hover:not([disabled]),
|
1669
|
-
.mat-menu-item.cdk-program-focused:not([disabled]),
|
1670
|
-
.mat-menu-item.cdk-keyboard-focused:not([disabled]),
|
1671
|
-
.mat-menu-item-highlighted:not([disabled]) {
|
1672
|
-
background: rgba(0, 0, 0, 0.04); }
|
1673
|
-
|
1674
|
-
.mat-paginator {
|
1675
|
-
background: white; }
|
1676
|
-
|
1677
|
-
.mat-paginator,
|
1678
|
-
.mat-paginator-page-size .mat-select-trigger {
|
1679
|
-
color: rgba(0, 0, 0, 0.54); }
|
1680
|
-
|
1681
|
-
.mat-paginator-decrement,
|
1682
|
-
.mat-paginator-increment {
|
1683
|
-
border-top: 2px solid rgba(0, 0, 0, 0.54);
|
1684
|
-
border-right: 2px solid rgba(0, 0, 0, 0.54); }
|
1685
|
-
|
1686
|
-
.mat-paginator-first,
|
1687
|
-
.mat-paginator-last {
|
1688
|
-
border-top: 2px solid rgba(0, 0, 0, 0.54); }
|
1689
|
-
|
1690
|
-
.mat-icon-button[disabled] .mat-paginator-decrement,
|
1691
|
-
.mat-icon-button[disabled] .mat-paginator-increment,
|
1692
|
-
.mat-icon-button[disabled] .mat-paginator-first,
|
1693
|
-
.mat-icon-button[disabled] .mat-paginator-last {
|
1694
|
-
border-color: rgba(0, 0, 0, 0.38); }
|
1695
|
-
|
1696
|
-
.mat-paginator-container {
|
1697
|
-
min-height: 56px; }
|
1698
|
-
|
1699
|
-
.mat-progress-bar-background {
|
1700
|
-
fill: #ffe0b2; }
|
1701
|
-
|
1702
|
-
.mat-progress-bar-buffer {
|
1703
|
-
background-color: #ffe0b2; }
|
1704
|
-
|
1705
|
-
.mat-progress-bar-fill::after {
|
1706
|
-
background-color: #ef6c00; }
|
1707
|
-
|
1708
|
-
.mat-progress-bar.mat-accent .mat-progress-bar-background {
|
1709
|
-
fill: #80d8ff; }
|
1710
|
-
|
1711
|
-
.mat-progress-bar.mat-accent .mat-progress-bar-buffer {
|
1712
|
-
background-color: #80d8ff; }
|
1713
|
-
|
1714
|
-
.mat-progress-bar.mat-accent .mat-progress-bar-fill::after {
|
1715
|
-
background-color: #039be5; }
|
1716
|
-
|
1717
|
-
.mat-progress-bar.mat-warn .mat-progress-bar-background {
|
1718
|
-
fill: #ffcdd2; }
|
1719
|
-
|
1720
|
-
.mat-progress-bar.mat-warn .mat-progress-bar-buffer {
|
1721
|
-
background-color: #ffcdd2; }
|
1722
|
-
|
1723
|
-
.mat-progress-bar.mat-warn .mat-progress-bar-fill::after {
|
1724
|
-
background-color: #e53935; }
|
1725
|
-
|
1726
|
-
.mat-progress-spinner circle, .mat-spinner circle {
|
1727
|
-
stroke: #ef6c00; }
|
1728
|
-
|
1729
|
-
.mat-progress-spinner.mat-accent circle, .mat-spinner.mat-accent circle {
|
1730
|
-
stroke: #039be5; }
|
1731
|
-
|
1732
|
-
.mat-progress-spinner.mat-warn circle, .mat-spinner.mat-warn circle {
|
1733
|
-
stroke: #e53935; }
|
1734
|
-
|
1735
|
-
.mat-radio-outer-circle {
|
1736
|
-
border-color: rgba(0, 0, 0, 0.54); }
|
1737
|
-
|
1738
|
-
.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {
|
1739
|
-
border-color: #ef6c00; }
|
1740
|
-
|
1741
|
-
.mat-radio-button.mat-primary .mat-radio-inner-circle,
|
1742
|
-
.mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),
|
1743
|
-
.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,
|
1744
|
-
.mat-radio-button.mat-primary:active .mat-radio-persistent-ripple {
|
1745
|
-
background-color: #ef6c00; }
|
1746
|
-
|
1747
|
-
.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
|
1748
|
-
border-color: #039be5; }
|
1749
|
-
|
1750
|
-
.mat-radio-button.mat-accent .mat-radio-inner-circle,
|
1751
|
-
.mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),
|
1752
|
-
.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,
|
1753
|
-
.mat-radio-button.mat-accent:active .mat-radio-persistent-ripple {
|
1754
|
-
background-color: #039be5; }
|
1755
|
-
|
1756
|
-
.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {
|
1757
|
-
border-color: #e53935; }
|
1758
|
-
|
1759
|
-
.mat-radio-button.mat-warn .mat-radio-inner-circle,
|
1760
|
-
.mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),
|
1761
|
-
.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,
|
1762
|
-
.mat-radio-button.mat-warn:active .mat-radio-persistent-ripple {
|
1763
|
-
background-color: #e53935; }
|
1764
|
-
|
1765
|
-
.mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,
|
1766
|
-
.mat-radio-button.mat-radio-disabled .mat-radio-outer-circle {
|
1767
|
-
border-color: rgba(0, 0, 0, 0.38); }
|
1768
|
-
|
1769
|
-
.mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,
|
1770
|
-
.mat-radio-button.mat-radio-disabled .mat-radio-inner-circle {
|
1771
|
-
background-color: rgba(0, 0, 0, 0.38); }
|
1772
|
-
|
1773
|
-
.mat-radio-button.mat-radio-disabled .mat-radio-label-content {
|
1774
|
-
color: rgba(0, 0, 0, 0.38); }
|
1775
|
-
|
1776
|
-
.mat-radio-button .mat-ripple-element {
|
1777
|
-
background-color: black; }
|
1778
|
-
|
1779
|
-
.mat-select-value {
|
1780
|
-
color: rgba(0, 0, 0, 0.87); }
|
1781
|
-
|
1782
|
-
.mat-select-placeholder {
|
1783
|
-
color: rgba(0, 0, 0, 0.42); }
|
1784
|
-
|
1785
|
-
.mat-select-disabled .mat-select-value {
|
1786
|
-
color: rgba(0, 0, 0, 0.38); }
|
1787
|
-
|
1788
|
-
.mat-select-arrow {
|
1789
|
-
color: rgba(0, 0, 0, 0.54); }
|
1790
|
-
|
1791
|
-
.mat-select-panel {
|
1792
|
-
background: white; }
|
1793
|
-
.mat-select-panel:not([class*='mat-elevation-z']) {
|
1794
|
-
-webkit-box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
|
1795
|
-
box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12); }
|
1796
|
-
.mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple) {
|
1797
|
-
background: rgba(0, 0, 0, 0.12); }
|
1798
|
-
|
1799
|
-
.mat-form-field.mat-focused.mat-primary .mat-select-arrow {
|
1800
|
-
color: #ef6c00; }
|
1801
|
-
|
1802
|
-
.mat-form-field.mat-focused.mat-accent .mat-select-arrow {
|
1803
|
-
color: #039be5; }
|
1804
|
-
|
1805
|
-
.mat-form-field.mat-focused.mat-warn .mat-select-arrow {
|
1806
|
-
color: #e53935; }
|
1807
|
-
|
1808
|
-
.mat-form-field .mat-select.mat-select-invalid .mat-select-arrow {
|
1809
|
-
color: #e53935; }
|
1810
|
-
|
1811
|
-
.mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
|
1812
|
-
color: rgba(0, 0, 0, 0.38); }
|
1813
|
-
|
1814
|
-
.mat-drawer-container {
|
1815
|
-
background-color: #fafafa;
|
1816
|
-
color: rgba(0, 0, 0, 0.87); }
|
1817
|
-
|
1818
|
-
.mat-drawer {
|
1819
|
-
background-color: white;
|
1820
|
-
color: rgba(0, 0, 0, 0.87); }
|
1821
|
-
.mat-drawer.mat-drawer-push {
|
1822
|
-
background-color: white; }
|
1823
|
-
.mat-drawer:not(.mat-drawer-side) {
|
1824
|
-
-webkit-box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
|
1825
|
-
box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12); }
|
1826
|
-
|
1827
|
-
.mat-drawer-side {
|
1828
|
-
border-right: solid 1px rgba(0, 0, 0, 0.12); }
|
1829
|
-
.mat-drawer-side.mat-drawer-end {
|
1830
|
-
border-left: solid 1px rgba(0, 0, 0, 0.12);
|
1831
|
-
border-right: none; }
|
1832
|
-
|
1833
|
-
[dir='rtl'] .mat-drawer-side {
|
1834
|
-
border-left: solid 1px rgba(0, 0, 0, 0.12);
|
1835
|
-
border-right: none; }
|
1836
|
-
[dir='rtl'] .mat-drawer-side.mat-drawer-end {
|
1837
|
-
border-left: none;
|
1838
|
-
border-right: solid 1px rgba(0, 0, 0, 0.12); }
|
1839
|
-
|
1840
|
-
.mat-drawer-backdrop.mat-drawer-shown {
|
1841
|
-
background-color: rgba(0, 0, 0, 0.6); }
|
1842
|
-
|
1843
|
-
.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {
|
1844
|
-
background-color: #039be5; }
|
1845
|
-
|
1846
|
-
.mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
|
1847
|
-
background-color: rgba(3, 155, 229, 0.54); }
|
1848
|
-
|
1849
|
-
.mat-slide-toggle.mat-checked .mat-ripple-element {
|
1850
|
-
background-color: #039be5; }
|
1851
|
-
|
1852
|
-
.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb {
|
1853
|
-
background-color: #ef6c00; }
|
1854
|
-
|
1855
|
-
.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar {
|
1856
|
-
background-color: rgba(239, 108, 0, 0.54); }
|
1857
|
-
|
1858
|
-
.mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element {
|
1859
|
-
background-color: #ef6c00; }
|
1860
|
-
|
1861
|
-
.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb {
|
1862
|
-
background-color: #e53935; }
|
1863
|
-
|
1864
|
-
.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar {
|
1865
|
-
background-color: rgba(229, 57, 53, 0.54); }
|
1866
|
-
|
1867
|
-
.mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element {
|
1868
|
-
background-color: #e53935; }
|
1869
|
-
|
1870
|
-
.mat-slide-toggle:not(.mat-checked) .mat-ripple-element {
|
1871
|
-
background-color: black; }
|
1872
|
-
|
1873
|
-
.mat-slide-toggle-thumb {
|
1874
|
-
-webkit-box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
|
1875
|
-
box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
|
1876
|
-
background-color: #fafafa; }
|
1877
|
-
|
1878
|
-
.mat-slide-toggle-bar {
|
1879
|
-
background-color: rgba(0, 0, 0, 0.38); }
|
1880
|
-
|
1881
|
-
.mat-slider-track-background {
|
1882
|
-
background-color: rgba(0, 0, 0, 0.26); }
|
1883
|
-
|
1884
|
-
.mat-primary .mat-slider-track-fill,
|
1885
|
-
.mat-primary .mat-slider-thumb,
|
1886
|
-
.mat-primary .mat-slider-thumb-label {
|
1887
|
-
background-color: #ef6c00; }
|
1888
|
-
|
1889
|
-
.mat-primary .mat-slider-thumb-label-text {
|
1890
|
-
color: white; }
|
1891
|
-
|
1892
|
-
.mat-primary .mat-slider-focus-ring {
|
1893
|
-
background-color: rgba(239, 108, 0, 0.2); }
|
1894
|
-
|
1895
|
-
.mat-accent .mat-slider-track-fill,
|
1896
|
-
.mat-accent .mat-slider-thumb,
|
1897
|
-
.mat-accent .mat-slider-thumb-label {
|
1898
|
-
background-color: #039be5; }
|
1899
|
-
|
1900
|
-
.mat-accent .mat-slider-thumb-label-text {
|
1901
|
-
color: white; }
|
1902
|
-
|
1903
|
-
.mat-accent .mat-slider-focus-ring {
|
1904
|
-
background-color: rgba(3, 155, 229, 0.2); }
|
1905
|
-
|
1906
|
-
.mat-warn .mat-slider-track-fill,
|
1907
|
-
.mat-warn .mat-slider-thumb,
|
1908
|
-
.mat-warn .mat-slider-thumb-label {
|
1909
|
-
background-color: #e53935; }
|
1910
|
-
|
1911
|
-
.mat-warn .mat-slider-thumb-label-text {
|
1912
|
-
color: white; }
|
1913
|
-
|
1914
|
-
.mat-warn .mat-slider-focus-ring {
|
1915
|
-
background-color: rgba(229, 57, 53, 0.2); }
|
1916
|
-
|
1917
|
-
.mat-slider:hover .mat-slider-track-background,
|
1918
|
-
.cdk-focused .mat-slider-track-background {
|
1919
|
-
background-color: rgba(0, 0, 0, 0.38); }
|
1920
|
-
|
1921
|
-
.mat-slider-disabled .mat-slider-track-background,
|
1922
|
-
.mat-slider-disabled .mat-slider-track-fill,
|
1923
|
-
.mat-slider-disabled .mat-slider-thumb {
|
1924
|
-
background-color: rgba(0, 0, 0, 0.26); }
|
1925
|
-
|
1926
|
-
.mat-slider-disabled:hover .mat-slider-track-background {
|
1927
|
-
background-color: rgba(0, 0, 0, 0.26); }
|
1928
|
-
|
1929
|
-
.mat-slider-min-value .mat-slider-focus-ring {
|
1930
|
-
background-color: rgba(0, 0, 0, 0.12); }
|
1931
|
-
|
1932
|
-
.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,
|
1933
|
-
.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {
|
1934
|
-
background-color: rgba(0, 0, 0, 0.87); }
|
1935
|
-
|
1936
|
-
.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,
|
1937
|
-
.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {
|
1938
|
-
background-color: rgba(0, 0, 0, 0.26); }
|
1939
|
-
|
1940
|
-
.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {
|
1941
|
-
border-color: rgba(0, 0, 0, 0.26);
|
1942
|
-
background-color: transparent; }
|
1943
|
-
|
1944
|
-
.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {
|
1945
|
-
border-color: rgba(0, 0, 0, 0.38); }
|
1946
|
-
|
1947
|
-
.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {
|
1948
|
-
border-color: rgba(0, 0, 0, 0.26); }
|
1949
|
-
|
1950
|
-
.mat-slider-has-ticks .mat-slider-wrapper::after {
|
1951
|
-
border-color: rgba(0, 0, 0, 0.7); }
|
1952
|
-
|
1953
|
-
.mat-slider-horizontal .mat-slider-ticks {
|
1954
|
-
background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
|
1955
|
-
background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent); }
|
1956
|
-
|
1957
|
-
.mat-slider-vertical .mat-slider-ticks {
|
1958
|
-
background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent); }
|
1959
|
-
|
1960
|
-
.mat-step-header.cdk-keyboard-focused, .mat-step-header.cdk-program-focused, .mat-step-header:hover {
|
1961
|
-
background-color: rgba(0, 0, 0, 0.04); }
|
1962
|
-
|
1963
|
-
@media (hover: none) {
|
1964
|
-
.mat-step-header:hover {
|
1965
|
-
background: none; } }
|
1966
|
-
|
1967
|
-
.mat-step-header .mat-step-label,
|
1968
|
-
.mat-step-header .mat-step-optional {
|
1969
|
-
color: rgba(0, 0, 0, 0.54); }
|
1970
|
-
|
1971
|
-
.mat-step-header .mat-step-icon {
|
1972
|
-
background-color: rgba(0, 0, 0, 0.54);
|
1973
|
-
color: white; }
|
1974
|
-
|
1975
|
-
.mat-step-header .mat-step-icon-selected,
|
1976
|
-
.mat-step-header .mat-step-icon-state-done,
|
1977
|
-
.mat-step-header .mat-step-icon-state-edit {
|
1978
|
-
background-color: #ef6c00;
|
1979
|
-
color: white; }
|
1980
|
-
|
1981
|
-
.mat-step-header.mat-accent .mat-step-icon {
|
1982
|
-
color: white; }
|
1983
|
-
|
1984
|
-
.mat-step-header.mat-accent .mat-step-icon-selected,
|
1985
|
-
.mat-step-header.mat-accent .mat-step-icon-state-done,
|
1986
|
-
.mat-step-header.mat-accent .mat-step-icon-state-edit {
|
1987
|
-
background-color: #039be5;
|
1988
|
-
color: white; }
|
1989
|
-
|
1990
|
-
.mat-step-header.mat-warn .mat-step-icon {
|
1991
|
-
color: white; }
|
1992
|
-
|
1993
|
-
.mat-step-header.mat-warn .mat-step-icon-selected,
|
1994
|
-
.mat-step-header.mat-warn .mat-step-icon-state-done,
|
1995
|
-
.mat-step-header.mat-warn .mat-step-icon-state-edit {
|
1996
|
-
background-color: #e53935;
|
1997
|
-
color: white; }
|
1998
|
-
|
1999
|
-
.mat-step-header .mat-step-icon-state-error {
|
2000
|
-
background-color: transparent;
|
2001
|
-
color: #e53935; }
|
2002
|
-
|
2003
|
-
.mat-step-header .mat-step-label.mat-step-label-active {
|
2004
|
-
color: rgba(0, 0, 0, 0.87); }
|
2005
|
-
|
2006
|
-
.mat-step-header .mat-step-label.mat-step-label-error {
|
2007
|
-
color: #e53935; }
|
2008
|
-
|
2009
|
-
.mat-stepper-horizontal, .mat-stepper-vertical {
|
2010
|
-
background-color: white; }
|
2011
|
-
|
2012
|
-
.mat-stepper-vertical-line::before {
|
2013
|
-
border-left-color: rgba(0, 0, 0, 0.12); }
|
2014
|
-
|
2015
|
-
.mat-horizontal-stepper-header::before,
|
2016
|
-
.mat-horizontal-stepper-header::after,
|
2017
|
-
.mat-stepper-horizontal-line {
|
2018
|
-
border-top-color: rgba(0, 0, 0, 0.12); }
|
2019
|
-
|
2020
|
-
.mat-horizontal-stepper-header {
|
2021
|
-
height: 72px; }
|
2022
|
-
|
2023
|
-
.mat-stepper-label-position-bottom .mat-horizontal-stepper-header,
|
2024
|
-
.mat-vertical-stepper-header {
|
2025
|
-
padding: 24px 24px; }
|
2026
|
-
|
2027
|
-
.mat-stepper-vertical-line::before {
|
2028
|
-
top: -16px;
|
2029
|
-
bottom: -16px; }
|
2030
|
-
|
2031
|
-
.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::after, .mat-stepper-label-position-bottom .mat-horizontal-stepper-header::before {
|
2032
|
-
top: 36px; }
|
2033
|
-
|
2034
|
-
.mat-stepper-label-position-bottom .mat-stepper-horizontal-line {
|
2035
|
-
top: 36px; }
|
2036
|
-
|
2037
|
-
.mat-sort-header-arrow {
|
2038
|
-
color: #757575; }
|
2039
|
-
|
2040
|
-
.mat-tab-nav-bar,
|
2041
|
-
.mat-tab-header {
|
2042
|
-
border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
|
2043
|
-
|
2044
|
-
.mat-tab-group-inverted-header .mat-tab-nav-bar,
|
2045
|
-
.mat-tab-group-inverted-header .mat-tab-header {
|
2046
|
-
border-top: 1px solid rgba(0, 0, 0, 0.12);
|
2047
|
-
border-bottom: none; }
|
2048
|
-
|
2049
|
-
.mat-tab-label, .mat-tab-link {
|
2050
|
-
color: rgba(0, 0, 0, 0.87); }
|
2051
|
-
.mat-tab-label.mat-tab-disabled, .mat-tab-link.mat-tab-disabled {
|
2052
|
-
color: rgba(0, 0, 0, 0.38); }
|
2053
|
-
|
2054
|
-
.mat-tab-header-pagination-chevron {
|
2055
|
-
border-color: rgba(0, 0, 0, 0.87); }
|
2056
|
-
|
2057
|
-
.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
|
2058
|
-
border-color: rgba(0, 0, 0, 0.38); }
|
2059
|
-
|
2060
|
-
.mat-tab-group[class*='mat-background-'] .mat-tab-header,
|
2061
|
-
.mat-tab-nav-bar[class*='mat-background-'] {
|
2062
|
-
border-bottom: none;
|
2063
|
-
border-top: none; }
|
2064
|
-
|
2065
|
-
.mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
|
2066
|
-
.mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
|
2067
|
-
.mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
|
2068
|
-
.mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
|
2069
|
-
.mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
|
2070
|
-
background-color: rgba(255, 224, 178, 0.3); }
|
2071
|
-
|
2072
|
-
.mat-tab-group.mat-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary .mat-ink-bar {
|
2073
|
-
background-color: #ef6c00; }
|
2074
|
-
|
2075
|
-
.mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar {
|
2076
|
-
background-color: white; }
|
2077
|
-
|
2078
|
-
.mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
|
2079
|
-
.mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
|
2080
|
-
.mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
|
2081
|
-
.mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
|
2082
|
-
.mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
|
2083
|
-
background-color: rgba(128, 216, 255, 0.3); }
|
2084
|
-
|
2085
|
-
.mat-tab-group.mat-accent .mat-ink-bar, .mat-tab-nav-bar.mat-accent .mat-ink-bar {
|
2086
|
-
background-color: #039be5; }
|
2087
|
-
|
2088
|
-
.mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar, .mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar {
|
2089
|
-
background-color: white; }
|
2090
|
-
|
2091
|
-
.mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
|
2092
|
-
.mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
|
2093
|
-
.mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
|
2094
|
-
.mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
|
2095
|
-
.mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
|
2096
|
-
background-color: rgba(255, 205, 210, 0.3); }
|
2097
|
-
|
2098
|
-
.mat-tab-group.mat-warn .mat-ink-bar, .mat-tab-nav-bar.mat-warn .mat-ink-bar {
|
2099
|
-
background-color: #e53935; }
|
2100
|
-
|
2101
|
-
.mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar, .mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar {
|
2102
|
-
background-color: white; }
|
2103
|
-
|
2104
|
-
.mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
|
2105
|
-
.mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
|
2106
|
-
.mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
|
2107
|
-
.mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
|
2108
|
-
.mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
|
2109
|
-
background-color: rgba(255, 224, 178, 0.3); }
|
2110
|
-
|
2111
|
-
.mat-tab-group.mat-background-primary .mat-tab-header, .mat-tab-group.mat-background-primary .mat-tab-links, .mat-tab-group.mat-background-primary .mat-tab-header-pagination, .mat-tab-nav-bar.mat-background-primary .mat-tab-header, .mat-tab-nav-bar.mat-background-primary .mat-tab-links, .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination {
|
2112
|
-
background-color: #ef6c00; }
|
2113
|
-
|
2114
|
-
.mat-tab-group.mat-background-primary .mat-tab-label, .mat-tab-group.mat-background-primary .mat-tab-link, .mat-tab-nav-bar.mat-background-primary .mat-tab-label, .mat-tab-nav-bar.mat-background-primary .mat-tab-link {
|
2115
|
-
color: white; }
|
2116
|
-
.mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled {
|
2117
|
-
color: rgba(255, 255, 255, 0.4); }
|
2118
|
-
|
2119
|
-
.mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron {
|
2120
|
-
border-color: white; }
|
2121
|
-
|
2122
|
-
.mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
|
2123
|
-
border-color: rgba(255, 255, 255, 0.4); }
|
2124
|
-
|
2125
|
-
.mat-tab-group.mat-background-primary .mat-ripple-element, .mat-tab-nav-bar.mat-background-primary .mat-ripple-element {
|
2126
|
-
background-color: rgba(255, 255, 255, 0.12); }
|
2127
|
-
|
2128
|
-
.mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
|
2129
|
-
.mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
|
2130
|
-
.mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
|
2131
|
-
.mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
|
2132
|
-
.mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
|
2133
|
-
background-color: rgba(128, 216, 255, 0.3); }
|
2134
|
-
|
2135
|
-
.mat-tab-group.mat-background-accent .mat-tab-header, .mat-tab-group.mat-background-accent .mat-tab-links, .mat-tab-group.mat-background-accent .mat-tab-header-pagination, .mat-tab-nav-bar.mat-background-accent .mat-tab-header, .mat-tab-nav-bar.mat-background-accent .mat-tab-links, .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination {
|
2136
|
-
background-color: #039be5; }
|
2137
|
-
|
2138
|
-
.mat-tab-group.mat-background-accent .mat-tab-label, .mat-tab-group.mat-background-accent .mat-tab-link, .mat-tab-nav-bar.mat-background-accent .mat-tab-label, .mat-tab-nav-bar.mat-background-accent .mat-tab-link {
|
2139
|
-
color: white; }
|
2140
|
-
.mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled {
|
2141
|
-
color: rgba(255, 255, 255, 0.4); }
|
2142
|
-
|
2143
|
-
.mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron {
|
2144
|
-
border-color: white; }
|
2145
|
-
|
2146
|
-
.mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
|
2147
|
-
border-color: rgba(255, 255, 255, 0.4); }
|
2148
|
-
|
2149
|
-
.mat-tab-group.mat-background-accent .mat-ripple-element, .mat-tab-nav-bar.mat-background-accent .mat-ripple-element {
|
2150
|
-
background-color: rgba(255, 255, 255, 0.12); }
|
2151
|
-
|
2152
|
-
.mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
|
2153
|
-
.mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
|
2154
|
-
.mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
|
2155
|
-
.mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
|
2156
|
-
.mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
|
2157
|
-
background-color: rgba(255, 205, 210, 0.3); }
|
2158
|
-
|
2159
|
-
.mat-tab-group.mat-background-warn .mat-tab-header, .mat-tab-group.mat-background-warn .mat-tab-links, .mat-tab-group.mat-background-warn .mat-tab-header-pagination, .mat-tab-nav-bar.mat-background-warn .mat-tab-header, .mat-tab-nav-bar.mat-background-warn .mat-tab-links, .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination {
|
2160
|
-
background-color: #e53935; }
|
2161
|
-
|
2162
|
-
.mat-tab-group.mat-background-warn .mat-tab-label, .mat-tab-group.mat-background-warn .mat-tab-link, .mat-tab-nav-bar.mat-background-warn .mat-tab-label, .mat-tab-nav-bar.mat-background-warn .mat-tab-link {
|
2163
|
-
color: white; }
|
2164
|
-
.mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled {
|
2165
|
-
color: rgba(255, 255, 255, 0.4); }
|
2166
|
-
|
2167
|
-
.mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron {
|
2168
|
-
border-color: white; }
|
2169
|
-
|
2170
|
-
.mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
|
2171
|
-
border-color: rgba(255, 255, 255, 0.4); }
|
2172
|
-
|
2173
|
-
.mat-tab-group.mat-background-warn .mat-ripple-element, .mat-tab-nav-bar.mat-background-warn .mat-ripple-element {
|
2174
|
-
background-color: rgba(255, 255, 255, 0.12); }
|
2175
|
-
|
2176
|
-
.mat-toolbar {
|
2177
|
-
background: whitesmoke;
|
2178
|
-
color: rgba(0, 0, 0, 0.87); }
|
2179
|
-
.mat-toolbar.mat-primary {
|
2180
|
-
background: #ef6c00;
|
2181
|
-
color: white; }
|
2182
|
-
.mat-toolbar.mat-accent {
|
2183
|
-
background: #039be5;
|
2184
|
-
color: white; }
|
2185
|
-
.mat-toolbar.mat-warn {
|
2186
|
-
background: #e53935;
|
2187
|
-
color: white; }
|
2188
|
-
.mat-toolbar .mat-form-field-underline,
|
2189
|
-
.mat-toolbar .mat-form-field-ripple,
|
2190
|
-
.mat-toolbar .mat-focused .mat-form-field-ripple {
|
2191
|
-
background-color: currentColor; }
|
2192
|
-
.mat-toolbar .mat-form-field-label,
|
2193
|
-
.mat-toolbar .mat-focused .mat-form-field-label,
|
2194
|
-
.mat-toolbar .mat-select-value,
|
2195
|
-
.mat-toolbar .mat-select-arrow,
|
2196
|
-
.mat-toolbar .mat-form-field.mat-focused .mat-select-arrow {
|
2197
|
-
color: inherit; }
|
2198
|
-
.mat-toolbar .mat-input-element {
|
2199
|
-
caret-color: currentColor; }
|
2200
|
-
|
2201
|
-
.mat-toolbar-multiple-rows {
|
2202
|
-
min-height: 64px; }
|
2203
|
-
|
2204
|
-
.mat-toolbar-row, .mat-toolbar-single-row {
|
2205
|
-
height: 64px; }
|
2206
|
-
|
2207
|
-
@media (max-width: 599px) {
|
2208
|
-
.mat-toolbar-multiple-rows {
|
2209
|
-
min-height: 56px; }
|
2210
|
-
.mat-toolbar-row, .mat-toolbar-single-row {
|
2211
|
-
height: 56px; } }
|
2212
|
-
|
2213
|
-
.mat-tooltip {
|
2214
|
-
background: rgba(97, 97, 97, 0.9); }
|
2215
|
-
|
2216
|
-
.mat-tree {
|
2217
|
-
background: white; }
|
2218
|
-
|
2219
|
-
.mat-tree-node,
|
2220
|
-
.mat-nested-tree-node {
|
2221
|
-
color: rgba(0, 0, 0, 0.87); }
|
2222
|
-
|
2223
|
-
.mat-tree-node {
|
2224
|
-
min-height: 48px; }
|
2225
|
-
|
2226
|
-
.mat-snack-bar-container {
|
2227
|
-
color: rgba(255, 255, 255, 0.7);
|
2228
|
-
background: #323232;
|
2229
|
-
-webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
|
2230
|
-
box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12); }
|
2231
|
-
|
2232
|
-
.mat-simple-snackbar-action {
|
2233
|
-
color: #039be5; }
|
2234
|
-
|
2235
|
-
body {
|
2236
|
-
font-family: "Roboto", "Helvetica Neue", sans-serif; }
|
2237
|
-
|
2238
|
-
.td-dialog-title {
|
2239
|
-
font-family: "Roboto", "Helvetica Neue", sans-serif;
|
2240
|
-
font-size: 20px;
|
2241
|
-
font-weight: 500; }
|
2242
|
-
|
2243
|
-
.td-dialog-message {
|
2244
|
-
font-family: "Roboto", "Helvetica Neue", sans-serif;
|
2245
|
-
font-size: 16px;
|
2246
|
-
font-weight: 400;
|
2247
|
-
line-height: 28px; }
|
2248
|
-
|
2249
|
-
.td-key {
|
2250
|
-
font-family: "Roboto", "Helvetica Neue", sans-serif;
|
2251
|
-
font-size: 14px; }
|
2252
|
-
|
2253
|
-
.td-message-label {
|
2254
|
-
font-family: "Roboto", "Helvetica Neue", sans-serif;
|
2255
|
-
font-size: 14px;
|
2256
|
-
font-weight: 600;
|
2257
|
-
line-height: 24px; }
|
2258
|
-
|
2259
|
-
.td-message-sublabel {
|
2260
|
-
font-family: "Roboto", "Helvetica Neue", sans-serif;
|
2261
|
-
font-size: 14px; }
|
2262
|
-
|
2263
|
-
td-navigation-drawer .td-navigation-drawer-title {
|
2264
|
-
font-family: "Roboto", "Helvetica Neue", sans-serif;
|
2265
|
-
font-size: 16px; }
|
2266
|
-
|
2267
|
-
td-navigation-drawer .td-navigation-drawer-name {
|
2268
|
-
font-family: "Roboto", "Helvetica Neue", sans-serif;
|
2269
|
-
font-size: 14px;
|
2270
|
-
font-weight: 500;
|
2271
|
-
line-height: 20px; }
|
2272
|
-
|
2273
|
-
td-navigation-drawer .td-navigation-drawer-menu-toggle {
|
2274
|
-
font-family: "Roboto", "Helvetica Neue", sans-serif;
|
2275
|
-
font-size: 14px;
|
2276
|
-
font-weight: 400;
|
2277
|
-
line-height: 24px; }
|
2278
|
-
|
2279
|
-
td-breadcrumb:last-of-type {
|
2280
|
-
font-weight: bold;
|
2281
|
-
cursor: default; }
|
2282
|
-
|
2283
|
-
mat-list-item mat-icon,
|
2284
|
-
.mat-list-item-content mat-icon {
|
2285
|
-
color: rgba(0, 0, 0, 0.54); }
|
2286
|
-
mat-list-item mat-icon[matListAvatar],
|
2287
|
-
.mat-list-item-content mat-icon[matListAvatar] {
|
2288
|
-
background-color: rgba(0, 0, 0, 0.04); }
|
2289
|
-
|
2290
|
-
.mat-list-text p {
|
2291
|
-
color: rgba(0, 0, 0, 0.38); }
|
2292
|
-
|
2293
|
-
table.mat-table {
|
2294
|
-
background: transparent; }
|
2295
|
-
|
2296
|
-
.mat-row:hover, .mat-row:focus {
|
2297
|
-
background-color: rgba(0, 0, 0, 0.04); }
|
2298
|
-
|
2299
|
-
.mat-drawer-container {
|
2300
|
-
background-color: #e0e0e0; }
|
2301
|
-
|
2302
|
-
[mat-icon-button].td-layout-menu-button {
|
2303
|
-
margin-left: 0; }
|
2304
|
-
::ng-deep [dir='rtl'] [mat-icon-button].td-layout-menu-button {
|
2305
|
-
margin-right: 0;
|
2306
|
-
margin-left: 6px; }
|
2307
|
-
|
2308
|
-
td-layout-nav mat-toolbar,
|
2309
|
-
td-layout-nav-list mat-toolbar,
|
2310
|
-
td-layout-manage-list mat-toolbar,
|
2311
|
-
td-layout-card-over mat-toolbar,
|
2312
|
-
td-navigation-drawer mat-toolbar,
|
2313
|
-
td-layout mat-toolbar {
|
2314
|
-
-webkit-box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
|
2315
|
-
box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
|
2316
|
-
z-index: 1; }
|
2317
|
-
|
2318
|
-
body[dense] td-layout-nav mat-toolbar.td-layout-toolbar.mat-toolbar-row, body[dense] td-layout-nav mat-toolbar.td-layout-toolbar.mat-toolbar-single-row,
|
2319
|
-
body[dense] td-layout-nav-list mat-toolbar.td-layout-toolbar.mat-toolbar-row,
|
2320
|
-
body[dense] td-layout-nav-list mat-toolbar.td-layout-toolbar.mat-toolbar-single-row,
|
2321
|
-
body[dense] td-layout-card-over mat-toolbar.td-layout-toolbar.mat-toolbar-row,
|
2322
|
-
body[dense] td-layout-card-over mat-toolbar.td-layout-toolbar.mat-toolbar-single-row,
|
2323
|
-
td-layout-nav[dense] mat-toolbar.td-layout-toolbar.mat-toolbar-row,
|
2324
|
-
td-layout-nav[dense] mat-toolbar.td-layout-toolbar.mat-toolbar-single-row,
|
2325
|
-
td-layout-nav-list[dense] mat-toolbar.td-layout-toolbar.mat-toolbar-row,
|
2326
|
-
td-layout-nav-list[dense] mat-toolbar.td-layout-toolbar.mat-toolbar-single-row,
|
2327
|
-
td-layout-card-over[dense] mat-toolbar.td-layout-toolbar.mat-toolbar-row,
|
2328
|
-
td-layout-card-over[dense] mat-toolbar.td-layout-toolbar.mat-toolbar-single-row {
|
2329
|
-
height: 48px; }
|
2330
|
-
|
2331
|
-
body[dense] td-layout-card-over .td-layout-card-over-wrapper,
|
2332
|
-
td-layout-card-over[dense] .td-layout-card-over-wrapper {
|
2333
|
-
margin: -48px;
|
2334
|
-
margin-left: 0;
|
2335
|
-
margin-right: 0; }
|
2336
|
-
|
2337
|
-
.mat-drawer-side.td-layout-sidenav {
|
2338
|
-
-webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
2339
|
-
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12); }
|
2340
|
-
|
2341
|
-
.td-layout-footer {
|
2342
|
-
background: whitesmoke;
|
2343
|
-
color: rgba(0, 0, 0, 0.87);
|
2344
|
-
-webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
2345
|
-
box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12); }
|
2346
|
-
.td-layout-footer.mat-primary {
|
2347
|
-
background: #ef6c00; }
|
2348
|
-
.td-layout-footer.mat-primary,
|
2349
|
-
.td-layout-footer.mat-primary mat-icon {
|
2350
|
-
color: white; }
|
2351
|
-
.td-layout-footer.mat-accent {
|
2352
|
-
background: #039be5; }
|
2353
|
-
.td-layout-footer.mat-accent,
|
2354
|
-
.td-layout-footer.mat-accent mat-icon {
|
2355
|
-
color: white; }
|
2356
|
-
.td-layout-footer.mat-warn {
|
2357
|
-
background: #e53935; }
|
2358
|
-
.td-layout-footer.mat-warn,
|
2359
|
-
.td-layout-footer.mat-warn mat-icon {
|
2360
|
-
color: white; }
|
2361
|
-
|
2362
|
-
td-file-upload .td-file-upload-cancel mat-icon {
|
2363
|
-
background-color: #fafafa; }
|
2364
|
-
|
2365
|
-
td-file-input {
|
2366
|
-
/**
|
2367
|
-
* Class that is added ondragenter by the [TdFileDrop] directive.
|
2368
|
-
*/ }
|
2369
|
-
td-file-input .drop-zone {
|
2370
|
-
-webkit-transition: background 400ms cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
|
2371
|
-
transition: background 400ms cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
|
2372
|
-
transition: background 400ms cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
|
2373
|
-
transition: background 400ms cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
|
2374
|
-
-webkit-box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
|
2375
|
-
box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12); }
|
2376
|
-
|
2377
|
-
.mat-toolbar.td-window-dialog-toolbar {
|
2378
|
-
color: rgba(0, 0, 0, 0.87);
|
2379
|
-
border-bottom: 1px solid rgba(0, 0, 0, 0.12);
|
2380
|
-
background: none; }
|
2381
|
-
|
2382
|
-
.td-dialog-message {
|
2383
|
-
color: rgba(0, 0, 0, 0.54); }
|
2384
|
-
|
2385
|
-
.td-json-formatter-wrapper .function::after,
|
2386
|
-
.td-json-formatter-wrapper .date::after,
|
2387
|
-
.td-json-formatter-wrapper .td-object-name::after,
|
2388
|
-
.td-json-formatter-wrapper .td-array-length::after {
|
2389
|
-
content: '\200E'; }
|
2390
|
-
|
2391
|
-
.td-json-formatter-wrapper .td-key.td-key-node:focus, .td-json-formatter-wrapper .td-key.td-key-node:hover {
|
2392
|
-
background-color: rgba(0, 0, 0, 0.04); }
|
2393
|
-
|
2394
|
-
.td-json-formatter-wrapper .td-key.td-key-node .td-node-icon {
|
2395
|
-
color: rgba(0, 0, 0, 0.54); }
|
2396
|
-
|
2397
|
-
.td-json-formatter-wrapper .key {
|
2398
|
-
color: #ef6c00; }
|
2399
|
-
|
2400
|
-
.td-json-formatter-wrapper .value .string {
|
2401
|
-
color: #e53935; }
|
2402
|
-
|
2403
|
-
.td-json-formatter-wrapper .value .number {
|
2404
|
-
color: #039be5; }
|
2405
|
-
|
2406
|
-
.td-json-formatter-wrapper .value .boolean {
|
2407
|
-
color: #039be5; }
|
2408
|
-
|
2409
|
-
.td-json-formatter-wrapper .value .null,
|
2410
|
-
.td-json-formatter-wrapper .value .undefined {
|
2411
|
-
color: rgba(0, 0, 0, 0.38); }
|
2412
|
-
|
2413
|
-
.td-json-formatter-wrapper .value .function {
|
2414
|
-
color: #ef6c00; }
|
2415
|
-
|
2416
|
-
.td-json-formatter-wrapper .value .date {
|
2417
|
-
color: rgba(0, 0, 0, 0.87); }
|
2418
|
-
|
2419
|
-
.td-message.mat-primary {
|
2420
|
-
color: #ef6c00;
|
2421
|
-
background-color: rgba(239, 108, 0, 0.15); }
|
2422
|
-
|
2423
|
-
.td-message.mat-accent {
|
2424
|
-
color: #039be5;
|
2425
|
-
background-color: rgba(3, 155, 229, 0.15); }
|
2426
|
-
|
2427
|
-
.td-message.mat-warn {
|
2428
|
-
color: #e53935;
|
2429
|
-
background-color: rgba(229, 57, 53, 0.15); }
|
2430
|
-
|
2431
|
-
.td-side-sheet-container {
|
2432
|
-
background-color: white; }
|
2433
|
-
|
2434
|
-
/*# sourceMappingURL=orange-light-blue.css.map */
|