1
1
mirror of https://github.com/go-gitea/gitea synced 2024-07-07 10:35:48 +00:00

Fix poor table column width due to breaking words (#31473)

Caused by #31091

---------

Co-authored-by: silverwind <me@silverwind.io>
This commit is contained in:
Brecht Van Lommel 2024-06-24 19:48:43 +02:00 committed by GitHub
parent a4899ffa24
commit 053e5829a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,11 @@
overflow: hidden;
font-size: 16px;
line-height: 1.5 !important;
overflow-wrap: anywhere;
overflow-wrap: break-word;
}
.conversation-holder .markup {
overflow-wrap: anywhere; /* prevent overflow in code comments. TODO: properly restrict .conversation-holder width and remove this */
}
.markup > *:first-child {