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:18:40 +0800 |
commit | 88317a7844d278314a7ded6f686892cfb9f73de1 (patch) | |
tree | 94e2f89575a600ba5cb6ac987b0a03bc4cfbf506 /data | |
parent | 7cf439f1a276c66e8f0c849841692633754b7e52 (diff) | |
download | gsoc2013-evolution-88317a7844d278314a7ded6f686892cfb9f73de1.tar.gz gsoc2013-evolution-88317a7844d278314a7ded6f686892cfb9f73de1.tar.zst gsoc2013-evolution-88317a7844d278314a7ded6f686892cfb9f73de1.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.
Diffstat (limited to 'data')
-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 { |