From edd7aad8c80fa3dacd49ba35153ec91cd5ae1770 Mon Sep 17 00:00:00 2001 From: Michel Gabriel Date: Thu, 24 Aug 2023 11:35:25 +0200 Subject: [PATCH] Do not break link in the middle of a word. The breaking of links in a word is turned around, it's not for all links anymore but the break now has to be added to the exception in order to avoid side effects on the majority of links --- web-ui/src/main/resources/catalog/style/gn.less | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/web-ui/src/main/resources/catalog/style/gn.less b/web-ui/src/main/resources/catalog/style/gn.less index cd7cb38fa6e..a4fd3cf7793 100644 --- a/web-ui/src/main/resources/catalog/style/gn.less +++ b/web-ui/src/main/resources/catalog/style/gn.less @@ -216,7 +216,6 @@ div[gn-transfer-ownership] * .list-group { a { word-wrap: break-word; - word-break: break-all; } .gn-break { word-wrap: break-word; @@ -947,6 +946,11 @@ i.fa-times.delete:hover { .gn-status-lg { font-size: inherit !important; } + .gn-md-title { + a { + word-break: break-all; + } + } } }