Retyles button add dataset on overview and removes pop up on click
This commit is contained in:
parent
eb0bf2f003
commit
4c825d80b4
|
@ -97,11 +97,11 @@
|
||||||
<span class="material-icons">horizontal_rule</span>
|
<span class="material-icons">horizontal_rule</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row mt-2">
|
<div class="row mt-2 add-dataset-txt">
|
||||||
<button mat-raised-button class="add-dataset-btn" *ngIf="isDraftDmp(dmp)" (click)="addNewDataset()">
|
<a class="add-dataset-btn" *ngIf="isDraftDmp(dmp)" [routerLink]="['/datasets/new/' + dmp.id]" target="_blank">
|
||||||
<mat-icon>add</mat-icon>
|
<mat-icon>add</mat-icon>
|
||||||
{{'DMP-LISTING.ACTIONS.ADD-DATASET-SHORT' | translate}}
|
{{'DMP-LISTING.ACTIONS.ADD-DATASET-SHORT' | translate}}
|
||||||
</button>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-4 col-lg-4 p-0">
|
<div class="col-md-4 col-lg-4 p-0">
|
||||||
|
|
|
@ -1,267 +1,267 @@
|
||||||
.container-fluid {
|
.container-fluid {
|
||||||
margin: 2em 4em;
|
margin: 2em 4em;
|
||||||
padding: 2em;
|
padding: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ********ICONS********
|
// ********ICONS********
|
||||||
|
|
||||||
.back-icon {
|
.back-icon {
|
||||||
opacity: 0.4;
|
opacity: 0.4;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mat-mini-fab {
|
.mat-mini-fab {
|
||||||
width: 2.5em;
|
width: 2.5em;
|
||||||
height: 2.5em;
|
height: 2.5em;
|
||||||
background-color: #129d99;
|
background-color: #129d99;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mat-mini-fab-icon,
|
.mat-mini-fab-icon,
|
||||||
.status-icon {
|
.status-icon {
|
||||||
font-size: 1.2em;
|
font-size: 1.2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.status-icon {
|
.status-icon {
|
||||||
color: #a7a7a7;
|
color: #a7a7a7;
|
||||||
}
|
}
|
||||||
|
|
||||||
.account-icon {
|
.account-icon {
|
||||||
font-size: 2.5em;
|
font-size: 2.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ********BUTTONS********
|
// ********BUTTONS********
|
||||||
|
|
||||||
.id-btn {
|
.id-btn {
|
||||||
background: url("../../../../assets/images/NoPath.png") no-repeat center;
|
background: url("../../../../assets/images/NoPath.png") no-repeat center;
|
||||||
width: 1em;
|
width: 1em;
|
||||||
margin-right: 0.3em;
|
margin-right: 0.3em;
|
||||||
align-self: center;
|
align-self: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dataset-btn {
|
.dataset-btn {
|
||||||
width: 36.1em;
|
width: 36.1em;
|
||||||
padding: 0 1.1em;
|
padding: 0 1.1em;
|
||||||
background-color: #f7dd72;
|
background-color: #f7dd72;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
color: #212121;
|
color: #212121;
|
||||||
// opacity: 0.8;
|
// opacity: 0.8;
|
||||||
}
|
}
|
||||||
|
|
||||||
.show-more-btn {
|
.show-more-btn {
|
||||||
width: 31.6em;
|
width: 31.6em;
|
||||||
padding: 0 1em;
|
padding: 0 1em;
|
||||||
background-color: #ffffff00;
|
background-color: #ffffff00;
|
||||||
color: #129d99;
|
color: #129d99;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
|
||||||
.frame-btn {
|
.frame-btn {
|
||||||
border: 1px solid #212121;
|
border: 1px solid #212121;
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
.finalize-btn {
|
.finalize-btn {
|
||||||
border: 1px solid #129d99;
|
border: 1px solid #129d99;
|
||||||
color: #129d99;
|
color: #129d99;
|
||||||
}
|
}
|
||||||
|
|
||||||
.grant-title {
|
.grant-title {
|
||||||
width: 130px;
|
width: 130px;
|
||||||
color: #089dbb;
|
color: #089dbb;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
padding: 0px 10px;
|
padding: 0px 10px;
|
||||||
margin-top: -16px;
|
margin-top: -16px;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
.frame-btn,
|
.frame-btn,
|
||||||
.finalize-btn {
|
.finalize-btn {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
box-shadow: 0px 2px 6px #00000029;
|
box-shadow: 0px 2px 6px #00000029;
|
||||||
}
|
}
|
||||||
|
|
||||||
.remove-btn {
|
.remove-btn {
|
||||||
border: none;
|
border: none;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
font-size: 0.875em;
|
font-size: 0.875em;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.invite-btn {
|
.invite-btn {
|
||||||
width: 9.4em;
|
width: 9.4em;
|
||||||
height: 2.9em;
|
height: 2.9em;
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
box-shadow: 0px 3px 6px #1e202029;
|
box-shadow: 0px 3px 6px #1e202029;
|
||||||
border: 2px solid #212121;
|
border: 2px solid #212121;
|
||||||
border-radius: 30px;
|
border-radius: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.account_btn {
|
.account_btn {
|
||||||
background: white;
|
background: white;
|
||||||
color: #d5d5d5;
|
color: #d5d5d5;
|
||||||
border: none;
|
border: none;
|
||||||
height: 2.9em;
|
height: 2.9em;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ********TEXT********
|
// ********TEXT********
|
||||||
|
|
||||||
.dmp-logo {
|
.dmp-logo {
|
||||||
width: 4.8em;
|
width: 4.8em;
|
||||||
height: 2.6em;
|
height: 2.6em;
|
||||||
background: #129d99;
|
background: #129d99;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
font-size: 0.875em;
|
font-size: 0.875em;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.label-txt {
|
.label-txt {
|
||||||
font-size: 0.875em;
|
font-size: 0.875em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.label2-txt {
|
.label2-txt {
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.label-txt,
|
.label-txt,
|
||||||
.label2-txt {
|
.label2-txt {
|
||||||
color: #848484;
|
color: #848484;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dmp-label {
|
.dmp-label {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.uppercase {
|
.uppercase {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
.researcher {
|
.researcher {
|
||||||
font-size: 0.875em;
|
font-size: 0.875em;
|
||||||
color: #008887;
|
color: #008887;
|
||||||
padding-right: 0.5em;
|
padding-right: 0.5em;
|
||||||
align-self: center;
|
align-self: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header {
|
.header {
|
||||||
opacity: 0.6;
|
opacity: 0.6;
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
margin-bottom: 0.5em;
|
margin-bottom: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dmp-label,
|
.dmp-label,
|
||||||
.header {
|
.header {
|
||||||
font-size: 1.25em;
|
font-size: 1.25em;
|
||||||
color: #212121;
|
color: #212121;
|
||||||
}
|
}
|
||||||
|
|
||||||
.desc-txt {
|
.desc-txt {
|
||||||
width: 48.25em;
|
width: 48.25em;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
color: #212121;
|
color: #212121;
|
||||||
margin-bottom: 1.875em;
|
margin-bottom: 1.875em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dataset {
|
.dataset {
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dataset-btn-label {
|
.dataset-btn-label {
|
||||||
margin-right: 1em;
|
margin-right: 1em;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
letter-spacing: 0px;
|
letter-spacing: 0px;
|
||||||
color: #212121;
|
color: #212121;
|
||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
.doi-label {
|
.doi-label {
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
color: #212121;
|
color: #212121;
|
||||||
opacity: 0.6;
|
opacity: 0.6;
|
||||||
margin-bottom: 0.3em;
|
margin-bottom: 0.3em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.doi-txt {
|
.doi-txt {
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
letter-spacing: 0.009em;
|
letter-spacing: 0.009em;
|
||||||
color: #7d7d7d;
|
color: #7d7d7d;
|
||||||
width: 12em;
|
width: 12em;
|
||||||
height: 1.2em;
|
height: 1.2em;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
border: none;
|
border: none;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
.doi-panel {
|
.doi-panel {
|
||||||
height: 3.5em;
|
height: 3.5em;
|
||||||
background: #fafafa;
|
background: #fafafa;
|
||||||
border: 1px solid #d1d1d1;
|
border: 1px solid #d1d1d1;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
|
||||||
.doi-link {
|
.doi-link {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
.frame {
|
.frame {
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
box-shadow: 0px 1px 5px #00000026;
|
box-shadow: 0px 1px 5px #00000026;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
min-width: 18.5em;
|
min-width: 18.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.frame-txt {
|
.frame-txt {
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.finalize-txt {
|
.finalize-txt {
|
||||||
color: #129d99;
|
color: #129d99;
|
||||||
}
|
}
|
||||||
|
|
||||||
.frame-txt,
|
.frame-txt,
|
||||||
.finalize-txt {
|
.finalize-txt {
|
||||||
font-size: 0.75em;
|
font-size: 0.75em;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
letter-spacing: 0px;
|
letter-spacing: 0px;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hr-line {
|
.hr-line {
|
||||||
border: 1px solid #dbdbdb;
|
border: 1px solid #dbdbdb;
|
||||||
// width: 274px;
|
// width: 274px;
|
||||||
// width: 17em;
|
// width: 17em;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.authors {
|
.authors {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.authors-label {
|
.authors-label {
|
||||||
font-size: 0.875em;
|
font-size: 0.875em;
|
||||||
color: #212121;
|
color: #212121;
|
||||||
height: 1.4em;
|
height: 1.4em;
|
||||||
margin-bottom: 0px;
|
margin-bottom: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.authors-role {
|
.authors-role {
|
||||||
font-size: 0.875em;
|
font-size: 0.875em;
|
||||||
color: #a8a8a8;
|
color: #a8a8a8;
|
||||||
height: 1.4em;
|
height: 1.4em;
|
||||||
margin-bottom: 0px;
|
margin-bottom: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ********CENTER ELEMENTS********
|
// ********CENTER ELEMENTS********
|
||||||
|
@ -272,50 +272,54 @@
|
||||||
.dmp-logo,
|
.dmp-logo,
|
||||||
.frame-btn,
|
.frame-btn,
|
||||||
.finalize-btn {
|
.finalize-btn {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dmp-label,
|
.dmp-label,
|
||||||
.dataset-btn,
|
.dataset-btn,
|
||||||
|
.add-dataset-btn,
|
||||||
.doi-panel,
|
.doi-panel,
|
||||||
.researcher {
|
.researcher {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.add-dataset-btn {
|
.add-dataset-btn {
|
||||||
border: 2px solid #212121;
|
color: #212121 !important;
|
||||||
border-radius: 30px;
|
}
|
||||||
|
|
||||||
|
.add-dataset-btn:hover {
|
||||||
|
color: #129d99 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.show-more-btn {
|
.show-more-btn {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
::ng-deep .mat-select-value {
|
::ng-deep .mat-select-value {
|
||||||
color: #848484 !important;
|
color: #848484 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
::ng-deep .versions-select .mat-form-field-wrapper {
|
::ng-deep .versions-select .mat-form-field-wrapper {
|
||||||
background-color: transparent !important;
|
background-color: transparent !important;
|
||||||
padding-bottom: 0 !important;
|
padding-bottom: 0 !important;
|
||||||
width: 6.5rem;
|
width: 6.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
::ng-deep .versions-select .mat-form-field-wrapper .mat-form-field-flex {
|
::ng-deep .versions-select .mat-form-field-wrapper .mat-form-field-flex {
|
||||||
padding: 0 0.5rem 0 0.625rem;
|
padding: 0 0.5rem 0 0.625rem;
|
||||||
margin-bottom: 0.2rem;
|
margin-bottom: 0.2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
::ng-deep mat-select .mat-select-arrow-wrapper {
|
::ng-deep mat-select .mat-select-arrow-wrapper {
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
}
|
}
|
||||||
|
|
||||||
::ng-deep .mat-form-field-appearance-outline .mat-form-field-infix {
|
::ng-deep .mat-form-field-appearance-outline .mat-form-field-infix {
|
||||||
padding: 0rem 0rem 0.4rem 0rem !important;
|
padding: 0rem 0rem 0.4rem 0rem !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
// .card-content {
|
// .card-content {
|
||||||
|
|
|
@ -656,23 +656,7 @@ export class DmpOverviewComponent extends BaseComponent implements OnInit {
|
||||||
// }
|
// }
|
||||||
|
|
||||||
addNewDataset() {
|
addNewDataset() {
|
||||||
const dialogRef = this.dialog.open(StartNewDatasetDialogComponent, {
|
this.router.navigate(['/datasets', 'new', this.dmp.id]);
|
||||||
disableClose: false,
|
|
||||||
restoreFocus: false,
|
|
||||||
data: {
|
|
||||||
startNewDmp: false,
|
|
||||||
formGroup: new DatasetWizardEditorModel().buildForm()
|
|
||||||
}
|
|
||||||
});
|
|
||||||
dialogRef.afterClosed().pipe(takeUntil(this._destroyed)).subscribe(result => {
|
|
||||||
if (result) {
|
|
||||||
if (result.startNewDmp) {
|
|
||||||
this.openNewDmpDialog();
|
|
||||||
} else {
|
|
||||||
this.router.navigate(['/datasets', 'new', result.formGroup.get('dmp').value.id]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
createDoiLink(doi: string): string {
|
createDoiLink(doi: string): string {
|
||||||
|
|
Loading…
Reference in New Issue