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 @@ -8,7 +8,12 @@
{{ 'toast.cookie-consent.message' | translate }}
</div>
<div class="row-fixed flex justify-content-end">
<p-button link [label]="'toast.cookie-consent.accept' | translate" (onClick)="acceptCookies()"> </p-button>
<p-button
class="btn-link-dark-blue"
link
[label]="'toast.cookie-consent.accept' | translate"
(onClick)="acceptCookies()"
/>
</div>
</div>
</ng-template>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.inactive {
color: var(--grey-1);
color: var(--grey-4);
}

.storage {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ <h2>
<div class="flex flex-row gap-1 line-height-3">
<p class="white-space-nowrap">{{ 'resourceCard.labels.from' | translate }}</p>
<a
class="block line-height-4 white-space-normal word-break-word"
class="block white-space-normal word-break-word"
[href]="resource().isPartOf!.absoluteUrl"
target="_blank"
rel="noopener noreferrer"
Expand All @@ -69,7 +69,7 @@ <h2>
<div class="flex flex-row gap-1 line-height-3">
<p class="white-space-nowrap">{{ 'resourceCard.labels.from' | translate }}</p>
<a
class="block line-height-4 white-space-normal"
class="block white-space-normal"
[href]="resource().isContainedBy!.absoluteUrl"
target="_blank"
rel="noopener noreferrer"
Expand Down
1 change: 1 addition & 0 deletions src/styles/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ $base-font-size: 16px;
--grey-1: #8b97a4;
--grey-2: #e0e1e2;
--grey-3: #eff0f1;
--grey-4: #606b7b;
--grey-outline: #00000029;
--white: #ffffff;

Expand Down
4 changes: 4 additions & 0 deletions src/styles/overrides/button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,7 @@
.copy-icon-btn .p-button {
height: 1.5rem;
}

.btn-link-dark-blue {
--p-button-link-color: var(--dark-blue-2);
}
2 changes: 1 addition & 1 deletion src/styles/overrides/tag.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
--p-tag-warn-background: var(--yellow-2);
--p-tag-warn-color: var(--yellow-1);

--p-tag-secondary-background: var(--grey-1);
--p-tag-secondary-background: var(--grey-4);
--p-tag-secondary-color: var(--white);

--p-tag-info-background: var(--bg-blue-2);
Expand Down