[tor-commits] [atlas/master] Fixes the display of long contact information (#23868)

irl at torproject.org irl at torproject.org
Tue Nov 14 13:52:33 UTC 2017


commit 261aa0a43b28810b1e90be902fa2c20fc7ba6b6a
Author: Iain R. Learmonth <irl at fsfe.org>
Date:   Tue Nov 14 13:39:08 2017 +0000

    Fixes the display of long contact information (#23868)
---
 css/atlas.css | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/css/atlas.css b/css/atlas.css
index 5d0f554..f26fa7d 100644
--- a/css/atlas.css
+++ b/css/atlas.css
@@ -74,3 +74,16 @@ table input {
 .flags-cell {
     width: 150px;
 }
+
+/* Allow displaying long contact info (#23868) */
+dd {
+    -ms-word-break: break-all;
+    word-break: break-all;
+
+    /* Non standard for webkit */
+    word-break: break-word;
+
+    -webkit-hyphens: auto;
+    -moz-hyphens: auto;
+    hyphens: auto;
+}





More information about the tor-commits mailing list