TFE page: remove underlines from all links, lowercase keywords/languages/formats, inclusive writing, prevent keyword mid-word breaks, editable restriction messages in admin

This commit is contained in:
Pontoporeia
2026-06-08 10:56:23 +02:00
parent 9a8f0cad65
commit 71949425c7
6 changed files with 98 additions and 14 deletions

View File

@@ -53,27 +53,32 @@ article dl {
/* Each dt/dd pair grouped in a <div> inside <dl> */
article dl > div {
display: flex;
display: grid;
grid-template-columns: auto 1fr;
gap: var(--space-3xs);
flex-wrap: wrap;
}
article dl dt {
color: var(--text-primary);
font-weight: 400;
flex-shrink: 0;
}
article dl dd {
color: var(--text-primary);
font-weight: 700;
margin: 0;
min-width: 0;
word-break: normal;
overflow-wrap: normal;
}
article dl dd a {
color: inherit;
text-decoration: underline;
text-underline-offset: 2px;
text-decoration: none;
}
article dl dd a:hover {
text-decoration: none;
}
/* Note field: align dt/dd to top, value in italics */
@@ -169,13 +174,13 @@ aside figcaption {
font-size: var(--step--1);
font-weight: 500;
color: var(--text-primary);
text-decoration: underline;
text-underline-offset: 2px;
text-decoration: none;
word-break: break-all;
}
.tfe-download-link:hover {
color: var(--accent-primary);
text-decoration: none;
}
.tfe-download-icon {
@@ -192,8 +197,11 @@ aside figcaption {
.tfe-pdf-fallback a {
color: var(--text-primary);
text-decoration: underline;
text-underline-offset: 2px;
text-decoration: none;
}
.tfe-pdf-fallback a:hover {
text-decoration: none;
}
/* "Not available" and "no files" notices */