Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ <h1>{{ 'preprints.title' | translate }}</h1>
} @else {
<div [innerHTML]="osfPreprintProvider()?.descriptionHtml"></div>
}
<a class="font-bold" routerLink="/preprints">{{ 'preprints.poweredBy' | translate }}</a>
<a class="dark-blue-two-link font-bold" routerLink="/preprints">{{ 'preprints.poweredBy' | translate }}</a>
</div>

<osf-search-input
Expand All @@ -39,7 +39,7 @@ <h1>{{ 'preprints.title' | translate }}</h1>
<p-skeleton width="10%" height="1rem" />
} @else if (osfPreprintProvider()!.examplePreprintId) {
<a
class="font-bold"
class="dark-blue-two-link font-bold"
[routerLink]="['/preprints', osfPreprintProvider()!.id, osfPreprintProvider()!.examplePreprintId]"
>{{ 'preprints.showExample' | translate }}
</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@

.provider-description {
line-height: 1.5rem;

a {
font-weight: bold;
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ <h1>{{ currentUser()?.fullName }}</h1>
@if (currentUser()?.social?.orcid) {
<div class="flex flex-row align-items-center gap-2">
<img ngSrc="assets/icons/colored/orcid.svg" width="16" height="16" alt="orcid" />
<a class="font-bold" [href]="'https://orcid.org/' + currentUser()?.social?.orcid">
<a class="dark-blue-two-link font-bold" [href]="'https://orcid.org/' + currentUser()?.social?.orcid">
https://orcid.org/{{ currentUser()?.social?.orcid }}
</a>
</div>
}

<div class="flex flex-row align-items-center gap-2">
<img ngSrc="assets/icons/colored/cos-shield.svg" width="16" height="16" alt="cos-shield" />
<a class="font-bold" [href]="currentUser()?.link">{{ currentUser()?.link }}</a>
<a class="dark-blue-two-link font-bold" [href]="currentUser()?.link">{{ currentUser()?.link }}</a>
</div>
</div>

Expand Down
5 changes: 3 additions & 2 deletions src/assets/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1469,7 +1469,8 @@
"pendingWithdrawal": "Pending Withdrawal",
"approved": "Approved",
"declined": "Declined",
"inProgress": "In Progress"
"inProgress": "In Progress",
"removed": "Removed"
},
"makeDecision": {
"header": "Make decision",
Expand Down Expand Up @@ -2840,7 +2841,7 @@
},
"institutions": {
"title": "Institutions",
"description": "OSF Institutions enhances transparency and increases the visibility of research outputs, accelerating discovery and reuse. Institutional members focus on generating and sharing research, and let OSF Institutions handle the infrastructure. <br /> <a class='font-bold' href='https://www.cos.io/products/osf-institutions' target='_blank'>Read more</a>",
"description": "OSF Institutions enhances transparency and increases the visibility of research outputs, accelerating discovery and reuse. Institutional members focus on generating and sharing research, and let OSF Institutions handle the infrastructure. <br /> <a class='dark-blue-two-link font-bold' href='https://www.cos.io/products/osf-institutions' target='_blank'>Read more</a>",
"searchInstitutions": "Search institutions",
"searchInstitutionsDesctiption": "Please select an institution to apply to your search. Only OSF Institutions member affiliations are discoverable. ",
"learnMore": "Learn more about OSF Institutions."
Expand Down
4 changes: 4 additions & 0 deletions src/styles/_common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,10 @@
color: var(--dark-blue-1);
}

.dark-blue-two-link {
color: var(--dark-blue-2);
}

.provider-description {
a:hover {
color: var(--branding-primary-color);
Expand Down