diff options
3 files changed, 5 insertions, 9 deletions
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/layout/components/footer/footer.component.scss b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/layout/components/footer/footer.component.scss index dbb5a100..365bd9ce 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/layout/components/footer/footer.component.scss +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/layout/components/footer/footer.component.scss @@ -15,16 +15,12 @@ $topnav-background-color: #222; } .footer { - position: fixed; + position: relative; bottom: 0; - // background-color: $topnav-background-color; width: 100%; - // height: 7.5em; z-index: 1002; - // bottom: 0px; - // right: 0px; - // width: 84%; - margin-bottom: -.5rem; + //margin-bottom: -0.5rem; + margin-top: calc(100vh - 250px); } .footer-logo { diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/layout/components/sidebar/sidebar.component.scss b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/layout/components/sidebar/sidebar.component.scss index 02c969cc..59b7e347 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/layout/components/sidebar/sidebar.component.scss +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/layout/components/sidebar/sidebar.component.scss @@ -52,7 +52,7 @@ left: 235px; width: 235px; //height: 100%; - height: 76%; + height: 84%; margin-left: -235px; //margin-bottom: 48px; margin-bottom: 0px; diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/report-list.service.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/report-list.service.ts index aad435f5..d0094ab9 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/report-list.service.ts +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/report-list.service.ts @@ -12,7 +12,7 @@ export class ReportListService { deleteReport(reportId : string) : Observable<any> { - return this._http.get(environment.baseUrl + "/raptor.htm?action=report.delete&c_master=" + reportId); + return this._http.get(environment.baseUrl + "raptor.htm?action=report.delete&c_master=" + reportId); } getAllReports():Observable<any>{ return this._http.get(environment.baseUrl + "raptor.htm?action=report.search.execute&r_page=0&show_all=true"); |