This commit is contained in:
Antoine M 2024-08-08 15:26:49 +02:00
parent 7f87ca34e7
commit 9f2a984ab9

View File

@ -27,25 +27,25 @@ main
:has(img) :has(img)
) { ) {
&:not(.cta--primary, .cta--secondary, .cta--button, .wp-block-button__link) { &:not(.cta--primary, .cta--secondary, .cta--button, .wp-block-button__link) {
@apply inline-flex items-center; @apply inline items-center;
@apply px-2 py-1; @apply px-2 py-1 first-letter:text-primary underline font-bold relative rounded-md;
@apply text-primary underline font-bold relative;
@apply rounded-md;
&:after { &:after {
@apply ml-2 inline-block; @apply ml-2 inline-block;
transform: translateY(-13px);
html[lang='fr-FR'] & { html[lang='fr-FR'] & {
content: "S'ouvre dans un nouvel onglet "; content: " S'ouvre dans un nouvel onglet ";
} }
html[lang='nl-NL'] & { html[lang='nl-NL'] & {
content: 'Opent in een nieuw tabblad'; content: ' Opent in een nieuw tabblad';
} }
@apply w-4 h-4 inline-block ml-2 bg-center bg-no-repeat; @apply w-4 h-4 inline-block ml-2 bg-center bg-no-repeat;
font-size: 0 !important; font-size: 0 !important;
background-image: url('../resources/img/graphic-assets/icone-external-link-black.svg'); background-image: url('../resources/img/graphic-assets/icone-external-link-purple.svg');
} }
&:hover { &:hover {
background: rgba(239, 239, 239); background: rgba(239, 239, 239, 1);
} }
} }
} }
@ -73,7 +73,19 @@ a[href$='.pdf']:is(a[href*='homegrade\.local'], a[href*='homegrade\.brussels']):
.external-link { .external-link {
&:after { &:after {
@apply ml-2 inline-block; @apply ml-2 inline-block;
content: url('../resources/img/graphic-assets/icone-external-link-purple.svg'); content: url('../resources/img/graphic-assets/icone-external-link-black.svg');
transform: translateY(1px); transform: translateY(1px);
} }
} }
.homegrade-blocks-highlight {
a[target='_blank']:not([href*='homegrade\.local']):not([href*='homegrade\.brussels']):not(
:has(img)
) {
&:not(.cta--primary, .cta--secondary, .cta--button, .wp-block-button__link) {
&:hover {
background: none;
}
}
}
}