Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(DH): Change font-color and link style #664

Merged
merged 1 commit into from
Oct 25, 2023
Merged
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
23 changes: 11 additions & 12 deletions libs/ui/elements/src/lib/metadata-info/metadata-info.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
>
record.metadata.about
</p>
<div class="text-gray-900 mb-6 md-description sm:mb-4 sm:pr-16">
<div class="mb-6 md-description sm:mb-4 sm:pr-16">
<gn-ui-content-ghost ghostClass="h-32" [showContent]="fieldReady('abstract')">
<p
class="whitespace-pre-line break-words"
Expand Down Expand Up @@ -33,10 +33,7 @@
*ngIf="metadata.lineage"
[title]="'record.metadata.origin' | translate"
>
<p
class="text-gray-900 mb-5 pt-4 whitespace-pre-line break-words"
gnUiLinkify
>
<p class="mb-5 pt-4 whitespace-pre-line break-words" gnUiLinkify>
{{ metadata.lineage }}
</p>
<div
Expand Down Expand Up @@ -85,12 +82,14 @@
>
<div class="py-5 px-5 rounded bg-gray-100 text-gray-700">
<p class="text-sm" translate>record.metadata.sheet</p>
<a [href]="metadata.landingPage" target="_blank">
<mat-icon
class="material-symbols-outlined inline-block align-bottom pt-1.5 text-xs text-black !w-[20px]"
>open_in_new</mat-icon
>
<span class="text-primary break-all">{{ metadata.landingPage }}</span>
</a>
<p class="text-primary font-medium mt-1" translate>
<a [href]="metadata.landingPage" target="_blank">
<mat-icon
class="material-symbols-outlined inline-block align-bottom pt-1.5 text-xs text-black !w-[20px]"
>open_in_new</mat-icon
>
<span class="break-all">{{ metadata.landingPage }}</span>
</a>
</p>
</div>
</gn-ui-expandable-panel>
Loading