diff options
author | Milan Crha <mcrha@redhat.com> | 2013-10-09 22:16:14 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2013-10-09 22:16:14 +0800 |
commit | 00005fe386bb9fa13aedd484cb015a736cef4d55 (patch) | |
tree | 287f581ad24bc29855959958ac433f816df9b20b | |
parent | c3c9ba6705c76a1a806ee43eba9c698a96640ec1 (diff) | |
download | gsoc2013-evolution-00005fe386bb9fa13aedd484cb015a736cef4d55.tar.gz gsoc2013-evolution-00005fe386bb9fa13aedd484cb015a736cef4d55.tar.zst gsoc2013-evolution-00005fe386bb9fa13aedd484cb015a736cef4d55.zip |
Auto-wrap long anchors
Make Webkit auto-wrap long anchors, thus they do not dictate content
width, which may make it too wide for a window with extra long links.
-rw-r--r-- | data/webview-print.css | 6 | ||||
-rw-r--r-- | data/webview.css | 5 |
2 files changed, 10 insertions, 1 deletions
diff --git a/data/webview-print.css b/data/webview-print.css index 28712e5c3f..499f6e3b32 100644 --- a/data/webview-print.css +++ b/data/webview-print.css @@ -41,6 +41,11 @@ th { margin: 8px; } +a { + white-space:normal; + word-break:break-all; +} + /***** PRINTING *******/ .printing-header { @@ -60,4 +65,3 @@ th { .attachments-list th { font-weight: bold; } - diff --git a/data/webview.css b/data/webview.css index 9d381a8a68..6a5eb1b00f 100644 --- a/data/webview.css +++ b/data/webview.css @@ -70,6 +70,11 @@ object { /* GtkWidgets */ font-weight: bold; } +a { + white-space:normal; + word-break:break-all; +} + /**** HEADERS ****/ table.header { |