logo

etc_portage

Unnamed repository; edit this file 'description' to name the repository. git clone https://hacktivis.me/git/etc_portage.git

0020-style.css-Fix-overflows.patch (799B)


  1. From 189b1ad74de4096a312d1d498bbff5ab1bcf0655 Mon Sep 17 00:00:00 2001
  2. From: "Haelwenn (lanodan) Monnier" <contact@hacktivis.me>
  3. Date: Sun, 17 Mar 2019 01:27:24 +0100
  4. Subject: [PATCH 20/22] style.css: Fix overflows
  5. ---
  6. style.css | 13 ++++++++++++-
  7. 1 file changed, 12 insertions(+), 1 deletion(-)
  8. diff --git a/style.css b/style.css
  9. index 167498a..4d5e7a9 100644
  10. --- a/style.css
  11. +++ b/style.css
  12. @@ -6,6 +6,7 @@ html, body {
  13. margin: 0;
  14. padding: 0;
  15. font-family: sans;
  16. + overflow-wrap: break-word;
  17. }
  18. header h1 {
  19. @@ -60,9 +61,19 @@ td.num {
  20. text-align: right;
  21. }
  22. +td.date {
  23. + min-width: 8em;
  24. +}
  25. +
  26. +td.log-summary,
  27. +td.index-name,
  28. +td.index-description {
  29. + max-width: 50em;
  30. + break-word: break-all;
  31. +}
  32. +
  33. td:nth-child(1) {
  34. text-align: right;
  35. - min-width: 8em;
  36. }
  37. tr td {
  38. --
  39. 2.26.2