diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-05-09 09:09:52 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-05-09 11:06:23 +0800 |
commit | 448aa307c324899a45b56d00c23d247b789eca27 (patch) | |
tree | a7586b97a878083e8aee59b018f52828baa6b5eb /data | |
parent | 26ca1f2c563d5b4b2f3d3adcf427b8c3db62f4c4 (diff) | |
download | gsoc2013-evolution-448aa307c324899a45b56d00c23d247b789eca27.tar.gz gsoc2013-evolution-448aa307c324899a45b56d00c23d247b789eca27.tar.zst gsoc2013-evolution-448aa307c324899a45b56d00c23d247b789eca27.zip |
Right-align mail header names.
We used to do this before WebKit and it looked better.
Also fix up the header section for right-to-left locales:
put the collapse button on the right, and images on the left.
Diffstat (limited to 'data')
-rw-r--r-- | data/webview.css | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/data/webview.css b/data/webview.css index 8d4c3397c2..f28ed3d668 100644 --- a/data/webview.css +++ b/data/webview.css @@ -72,6 +72,50 @@ object { /* GtkWidgets */ font-weight: bold; } +/**** HEADERS ****/ + +table.header { + border-spacing: 0px; + border-top-width: 0px; + border-right-width: 0px; + border-bottom-width: 0px; + border-left-width: 0px; + width: 100%; +} + +tr.header { + vertical-align: top; + width: 100%; +} + +th.header { + white-space: nowrap; +} + +td.header { + width: inherit; +} + +.ltr { + text-align: left; +} + +th.ltr { + padding-right: 6px; + text-align: right; + width: auto; +} + +.rtl { + text-align: right; +} + +th.rtl { + padding-left: 6px; + text-align: left; + width: auto; +} + /***** PRINTING *******/ .printing-header { |