diff --git a/dmp-frontend/src/app/app.module.ts b/dmp-frontend/src/app/app.module.ts index 182a7ba77..3579bfa61 100644 --- a/dmp-frontend/src/app/app.module.ts +++ b/dmp-frontend/src/app/app.module.ts @@ -69,7 +69,8 @@ import { UserWorkspaceComponent } from './user-workspace/user-workspace.componen import { AutocompleteRemoteComponent } from './form/fields/autocomplete-remote/autocomplete-remote.component'; import { Ng4LoadingSpinnerModule } from 'ng4-loading-spinner'; -import { BreadcrumbComponent } from './widgets/breadcrumb/breadcrumb.component'; +import { BreadcrumbComponent } from './widgets/breadcrumb/breadcrumb.component'; +import { DmpDetailedComponent } from './viewers/src/app/viewers/dmp-detailed/dmp-detailed.component'; @@ -101,7 +102,7 @@ import { BreadcrumbComponent } from './widgets/breadcrumb/breadcrumb.component'; DatasetTableFilterPipe, DatasetStatusFilterPipe, StatusToString, - BreadcrumbComponent + BreadcrumbComponent, DmpDetailedComponent ], imports: [ BrowserModule, diff --git a/dmp-frontend/src/app/projects/project.css b/dmp-frontend/src/app/projects/project.css index f643122ce..2c6b2c7e6 100644 --- a/dmp-frontend/src/app/projects/project.css +++ b/dmp-frontend/src/app/projects/project.css @@ -49,4 +49,14 @@ tr.hover:hover > * { background-color:#337ab7; color:white; margin-top:15px; -} \ No newline at end of file +} + +a{ + cursor: pointer; +} +.not-active { + pointer-events: none; + cursor:not-allowed; + opacity: 0.5; + filter: alpha(opacity=50); /* For IE8 and earlier */ + } \ No newline at end of file diff --git a/dmp-frontend/src/app/projects/project.html b/dmp-frontend/src/app/projects/project.html index 3e382057a..e79dab8f5 100644 --- a/dmp-frontend/src/app/projects/project.html +++ b/dmp-frontend/src/app/projects/project.html @@ -29,10 +29,10 @@ Αbbreviation - Start Date + Start Date - End Date + End Date Status @@ -59,8 +59,16 @@ {{project?.enddate | date:'yyyy-MM-dd HH:mm:ss Z'}} {{project?.status | statusToString}} {{project?.description}} - - + + + + + + diff --git a/dmp-frontend/src/app/viewers/dmp-detailed/dmp-detailed.component.css b/dmp-frontend/src/app/viewers/dmp-detailed/dmp-detailed.component.css new file mode 100644 index 000000000..e69de29bb diff --git a/dmp-frontend/src/app/viewers/dmp-detailed/dmp-detailed.component.html b/dmp-frontend/src/app/viewers/dmp-detailed/dmp-detailed.component.html new file mode 100644 index 000000000..28d54915a --- /dev/null +++ b/dmp-frontend/src/app/viewers/dmp-detailed/dmp-detailed.component.html @@ -0,0 +1,3 @@ +

+ dmp-detailed works! +

diff --git a/dmp-frontend/src/app/viewers/dmp-detailed/dmp-detailed.component.ts b/dmp-frontend/src/app/viewers/dmp-detailed/dmp-detailed.component.ts new file mode 100644 index 000000000..8976abfb9 --- /dev/null +++ b/dmp-frontend/src/app/viewers/dmp-detailed/dmp-detailed.component.ts @@ -0,0 +1,15 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-dmp-detailed', + templateUrl: './dmp-detailed.component.html', + styleUrls: ['./dmp-detailed.component.css'] +}) +export class DmpDetailedComponent implements OnInit { + + constructor() { } + + ngOnInit() { + } + +}