aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/css/repo.css
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2024-05-10 14:25:49 +0200
committerGitHub <noreply@github.com>2024-05-10 12:25:49 +0000
commit5556782ebeb1ca4d17e2fff434b11651887b9899 (patch)
treef8754d4a10a246e8a07aaf520d510f986a8a06d8 /web_src/css/repo.css
parent7424f27cf30065a1308aa3ba4d75ea82c0af4af9 (diff)
downloadgitea-5556782ebeb1ca4d17e2fff434b11651887b9899.tar.gz
gitea-5556782ebeb1ca4d17e2fff434b11651887b9899.zip
Forbid deprecated `break-word` in CSS (#30934)
Forbid [deprecated](https://drafts.csswg.org/css-text-3/#word-break-property) `break-word` and fix all occurences. Regarding `overflow-wrap: break-word` vs `overflow-wrap: anywhere`: Example of difference: https://jsfiddle.net/silverwind/1va6972r/ [Here](https://stackoverflow.com/questions/77651244) it says: > The differences between normal, break-word and anywhere are only clear if you are using width: min-content on the element containing the text, and you also set a max-width. A pretty rare scenario. I don't think this difference will make any practical impact as we are not hitting this rare scenario.
Diffstat (limited to 'web_src/css/repo.css')
-rw-r--r--web_src/css/repo.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/web_src/css/repo.css b/web_src/css/repo.css
index f02b2b7578..7f07e732a3 100644
--- a/web_src/css/repo.css
+++ b/web_src/css/repo.css
@@ -410,7 +410,7 @@ td .commit-summary {
}
.repository.file.list .non-diff-file-content .plain-text pre {
- word-break: break-word;
+ overflow-wrap: anywhere;
white-space: pre-wrap;
}