From 174865b9aaab1ccf2f10bf0aaf786faaafc8526a Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Fri, 19 Apr 2024 12:20:35 -0400 Subject: [PATCH] Fixes #15760: Permit breaking of long words for wrap within object attribute tables --- netbox/project-static/dist/netbox.css | Bin 552769 -> 552812 bytes .../styles/transitional/_tables.scss | 5 +++++ 2 files changed, 5 insertions(+) diff --git a/netbox/project-static/dist/netbox.css b/netbox/project-static/dist/netbox.css index 7cf2533fc228e74ecd494d1d8c303cdddef45e6c..1a73196a162cf7e962bdf696f53b666fc103cb36 100644 GIT binary patch delta 61 zcmX?jPw~w?#fBEf7N!>F7M2#)7Pc1lEgWqb(=VrU2uh?>=a;1xrRC(8>y{TK7FZ?b RRhDO@7Nu@)$>7+_1_12!7u5g& delta 31 ncmaEJPx0VA#fBEf7N!>F7M2#)7Pc1lEgWqb+c#!#>}CT1(z^^N diff --git a/netbox/project-static/styles/transitional/_tables.scss b/netbox/project-static/styles/transitional/_tables.scss index 0af11f9cd..6429fd1aa 100644 --- a/netbox/project-static/styles/transitional/_tables.scss +++ b/netbox/project-static/styles/transitional/_tables.scss @@ -37,6 +37,11 @@ table.attr-table { border-bottom-style: hidden; } + // Permit breaking of words which don't fit on one line in the cell + td { + overflow-wrap: anywhere; + } + } // Remove bottom margin from
 elements inside table cells