From 9e69c1bfddb11031d2917535a7a99accd3c1e19e Mon Sep 17 00:00:00 2001 From: Tiago Melo Date: Thu, 7 Nov 2019 14:10:17 -0100 Subject: [PATCH] mgr/dashboard: Fix SCSS imports Signed-off-by: Tiago Melo --- .../app/ceph/cephfs/cephfs-chart/cephfs-chart.component.scss | 2 +- .../src/app/ceph/dashboard/health-pie/health-pie.component.scss | 2 +- .../src/app/ceph/dashboard/info-card/info-card-popover.scss | 2 +- .../src/app/ceph/pool/pool-list/pool-list.component.scss | 2 +- .../auth/login-password-form/login-password-form.component.scss | 2 +- .../frontend/src/app/core/auth/login/login.component.scss | 2 +- .../src/app/core/auth/role-details/role-details.component.scss | 2 +- .../app/core/layouts/blank-layout/blank-layout.component.scss | 2 +- .../app/core/layouts/login-layout/login-layout.component.scss | 2 +- .../layouts/workbench-layout/workbench-layout.component.scss | 2 +- .../app/core/navigation/breadcrumbs/breadcrumbs.component.scss | 2 +- .../app/core/navigation/navigation/navigation.component.scss | 2 +- .../core/navigation/notifications/notifications.component.scss | 2 +- .../src/app/shared/components/helper/helper.component.scss | 2 +- .../src/app/shared/components/modal/modal.component.scss | 2 +- .../notifications-sidebar/notifications-sidebar.component.scss | 2 +- .../components/select-badges/select-badges.component.scss | 2 +- .../src/app/shared/components/select/select.component.scss | 2 +- .../app/shared/components/sparkline/sparkline.component.scss | 2 +- .../app/shared/components/usage-bar/usage-bar.component.scss | 2 +- src/pybind/mgr/dashboard/frontend/src/styles.scss | 2 +- src/pybind/mgr/dashboard/frontend/src/styles/chart-tooltip.scss | 2 +- .../mgr/dashboard/frontend/src/styles/vendor.overrides.scss | 2 +- 23 files changed, 23 insertions(+), 23 deletions(-) diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/cephfs/cephfs-chart/cephfs-chart.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/ceph/cephfs/cephfs-chart/cephfs-chart.component.scss index 81457a14708..f872325f01f 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/cephfs/cephfs-chart/cephfs-chart.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/cephfs/cephfs-chart/cephfs-chart.component.scss @@ -1,4 +1,4 @@ -@import '../../../../styles/chart-tooltip.scss'; +@import 'chart-tooltip.scss'; .chart-container { position: relative; diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/health-pie/health-pie.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/health-pie/health-pie.component.scss index e2d23cd4f04..0bb814956b9 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/health-pie/health-pie.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/health-pie/health-pie.component.scss @@ -1,4 +1,4 @@ -@import '../../../../styles/chart-tooltip.scss'; +@import 'chart-tooltip.scss'; $canvas-width: 100%; $canvas-height: 100%; diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/info-card/info-card-popover.scss b/src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/info-card/info-card-popover.scss index dcfc4a40058..bfc2766d8ad 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/info-card/info-card-popover.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/info-card/info-card-popover.scss @@ -1,4 +1,4 @@ -@import 'defaults'; +@import 'defaults.scss'; .info-card-popover-cluster-status { max-width: 23vw; diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/pool/pool-list/pool-list.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/ceph/pool/pool-list/pool-list.component.scss index d7b40d6f1ad..252903bee97 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/pool/pool-list/pool-list.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/pool/pool-list/pool-list.component.scss @@ -1,4 +1,4 @@ -@import 'defaults'; +@import 'defaults.scss'; ::ng-deep .pg-clean { color: $color-bright-green; diff --git a/src/pybind/mgr/dashboard/frontend/src/app/core/auth/login-password-form/login-password-form.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/core/auth/login-password-form/login-password-form.component.scss index 0feabe59408..2eb33c321b0 100755 --- a/src/pybind/mgr/dashboard/frontend/src/app/core/auth/login-password-form/login-password-form.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/core/auth/login-password-form/login-password-form.component.scss @@ -1,4 +1,4 @@ -@import 'defaults'; +@import 'defaults.scss'; ::ng-deep cd-login-password-form { h4 { diff --git a/src/pybind/mgr/dashboard/frontend/src/app/core/auth/login/login.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/core/auth/login/login.component.scss index 7535c8c84ff..566564023b5 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/core/auth/login/login.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/core/auth/login/login.component.scss @@ -1,4 +1,4 @@ -@import 'defaults'; +@import 'defaults.scss'; ::ng-deep cd-login { h1 { diff --git a/src/pybind/mgr/dashboard/frontend/src/app/core/auth/role-details/role-details.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/core/auth/role-details/role-details.component.scss index 96a29d72339..94aff2a0c30 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/core/auth/role-details/role-details.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/core/auth/role-details/role-details.component.scss @@ -1,4 +1,4 @@ -@import 'defaults'; +@import 'defaults.scss'; thead { background-color: $color-table-header-bg; diff --git a/src/pybind/mgr/dashboard/frontend/src/app/core/layouts/blank-layout/blank-layout.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/core/layouts/blank-layout/blank-layout.component.scss index 0de9b5f8c09..e5fbfa446aa 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/core/layouts/blank-layout/blank-layout.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/core/layouts/blank-layout/blank-layout.component.scss @@ -1,4 +1,4 @@ -@import 'defaults'; +@import 'defaults.scss'; ::ng-deep #toast-container { margin-top: 2vw; diff --git a/src/pybind/mgr/dashboard/frontend/src/app/core/layouts/login-layout/login-layout.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/core/layouts/login-layout/login-layout.component.scss index c88a7664bc9..c428fc2a71e 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/core/layouts/login-layout/login-layout.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/core/layouts/login-layout/login-layout.component.scss @@ -1,4 +1,4 @@ -@import 'defaults'; +@import 'defaults.scss'; ::ng-deep .login { color: $color-login-row-text; diff --git a/src/pybind/mgr/dashboard/frontend/src/app/core/layouts/workbench-layout/workbench-layout.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/core/layouts/workbench-layout/workbench-layout.component.scss index 78884d1a4b9..71366d03835 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/core/layouts/workbench-layout/workbench-layout.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/core/layouts/workbench-layout/workbench-layout.component.scss @@ -1,4 +1,4 @@ -@import 'defaults'; +@import 'defaults.scss'; .dashboard { background-color: $color-whitesmoke-gray; diff --git a/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/breadcrumbs/breadcrumbs.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/breadcrumbs/breadcrumbs.component.scss index da02057afae..3025e8358cb 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/breadcrumbs/breadcrumbs.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/breadcrumbs/breadcrumbs.component.scss @@ -1,4 +1,4 @@ -@import 'defaults'; +@import 'defaults.scss'; .breadcrumb { padding: 8px 0; diff --git a/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/navigation/navigation.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/navigation/navigation.component.scss index 0000dd3337e..c3c0f942f6d 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/navigation/navigation.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/navigation/navigation.component.scss @@ -1,4 +1,4 @@ -@import 'defaults'; +@import 'defaults.scss'; /* --------------------------------------------------- NAVBAR STYLE diff --git a/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/notifications/notifications.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/notifications/notifications.component.scss index 8a2269b1c46..5c7eb75377f 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/notifications/notifications.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/notifications/notifications.component.scss @@ -1,4 +1,4 @@ -@import 'defaults'; +@import 'defaults.scss'; .running i { color: $color-primary; diff --git a/src/pybind/mgr/dashboard/frontend/src/app/shared/components/helper/helper.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/shared/components/helper/helper.component.scss index 199adf5b6a1..e2844d0debb 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/shared/components/helper/helper.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/shared/components/helper/helper.component.scss @@ -1,4 +1,4 @@ -@import 'defaults'; +@import 'defaults.scss'; i { color: $color-helper-bg; diff --git a/src/pybind/mgr/dashboard/frontend/src/app/shared/components/modal/modal.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/shared/components/modal/modal.component.scss index bdb7491a7ba..5a7248f5377 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/shared/components/modal/modal.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/shared/components/modal/modal.component.scss @@ -1,4 +1,4 @@ -@import 'defaults'; +@import 'defaults.scss'; .modal-header { @include hf; diff --git a/src/pybind/mgr/dashboard/frontend/src/app/shared/components/notifications-sidebar/notifications-sidebar.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/shared/components/notifications-sidebar/notifications-sidebar.component.scss index 8f5d577e8b4..0bfe19fbd85 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/shared/components/notifications-sidebar/notifications-sidebar.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/shared/components/notifications-sidebar/notifications-sidebar.component.scss @@ -1,4 +1,4 @@ -@import 'defaults'; +@import 'defaults.scss'; :host { position: fixed; diff --git a/src/pybind/mgr/dashboard/frontend/src/app/shared/components/select-badges/select-badges.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/shared/components/select-badges/select-badges.component.scss index 9bda676bee6..925ef0df6a7 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/shared/components/select-badges/select-badges.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/shared/components/select-badges/select-badges.component.scss @@ -1,4 +1,4 @@ -@import 'defaults'; +@import 'defaults.scss'; .badge-remove { color: $color-solid-white; diff --git a/src/pybind/mgr/dashboard/frontend/src/app/shared/components/select/select.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/shared/components/select/select.component.scss index 6145f0bf4c7..a5942d0c218 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/shared/components/select/select.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/shared/components/select/select.component.scss @@ -1,4 +1,4 @@ -@import 'defaults'; +@import 'defaults.scss'; .select-menu-item { display: block; diff --git a/src/pybind/mgr/dashboard/frontend/src/app/shared/components/sparkline/sparkline.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/shared/components/sparkline/sparkline.component.scss index ec7d98291e8..ef4ae7a322b 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/shared/components/sparkline/sparkline.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/shared/components/sparkline/sparkline.component.scss @@ -1,4 +1,4 @@ -@import '../../../../styles/chart-tooltip.scss'; +@import 'chart-tooltip.scss'; .chart-container { position: static !important; diff --git a/src/pybind/mgr/dashboard/frontend/src/app/shared/components/usage-bar/usage-bar.component.scss b/src/pybind/mgr/dashboard/frontend/src/app/shared/components/usage-bar/usage-bar.component.scss index 6d178b4738e..d71e282a2d3 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/shared/components/usage-bar/usage-bar.component.scss +++ b/src/pybind/mgr/dashboard/frontend/src/app/shared/components/usage-bar/usage-bar.component.scss @@ -1,4 +1,4 @@ -@import 'defaults'; +@import 'defaults.scss'; .bg-info { background-color: $color-progress-bar-info-bg !important; diff --git a/src/pybind/mgr/dashboard/frontend/src/styles.scss b/src/pybind/mgr/dashboard/frontend/src/styles.scss index bb883e43ec0..4b82d206e5b 100644 --- a/src/pybind/mgr/dashboard/frontend/src/styles.scss +++ b/src/pybind/mgr/dashboard/frontend/src/styles.scss @@ -1,5 +1,5 @@ /* You can add global styles to this file, and also import other style files */ -@import 'defaults'; +@import 'defaults.scss'; // Angular2-Tree Component @import '~angular-tree-component/dist/angular-tree-component.css'; diff --git a/src/pybind/mgr/dashboard/frontend/src/styles/chart-tooltip.scss b/src/pybind/mgr/dashboard/frontend/src/styles/chart-tooltip.scss index 3a574dfa538..477f95a8e06 100644 --- a/src/pybind/mgr/dashboard/frontend/src/styles/chart-tooltip.scss +++ b/src/pybind/mgr/dashboard/frontend/src/styles/chart-tooltip.scss @@ -1,4 +1,4 @@ -@import 'defaults'; +@import 'defaults.scss'; .chart-container { position: absolute; diff --git a/src/pybind/mgr/dashboard/frontend/src/styles/vendor.overrides.scss b/src/pybind/mgr/dashboard/frontend/src/styles/vendor.overrides.scss index 0cca9de8f02..ac78087b636 100644 --- a/src/pybind/mgr/dashboard/frontend/src/styles/vendor.overrides.scss +++ b/src/pybind/mgr/dashboard/frontend/src/styles/vendor.overrides.scss @@ -1,3 +1,3 @@ /* Vendor specific scss */ -@import 'defaults'; +@import 'defaults.scss'; -- 2.39.5