diff options
Diffstat (limited to 'res')
-rw-r--r-- | res/templates-vector/mail.css | 5 | ||||
-rw-r--r-- | res/templates-vector/notif_mail.html | 4 | ||||
-rw-r--r-- | res/templates-vector/notif_mail.txt | 2 | ||||
-rw-r--r-- | res/templates/notif_mail.html | 2 | ||||
-rw-r--r-- | res/templates/notif_mail.txt | 2 |
5 files changed, 9 insertions, 6 deletions
diff --git a/res/templates-vector/mail.css b/res/templates-vector/mail.css index 642948fdc1..103c5ff8ca 100644 --- a/res/templates-vector/mail.css +++ b/res/templates-vector/mail.css @@ -85,11 +85,14 @@ body { .sender_name { margin-left: 75px; display: inline; - font-weight: bold; + font-size: 13px; + color: #a2a2a2; } .message_time { float: right; + font-size: 11px; + color: #a2a2a2; } .message_body { diff --git a/res/templates-vector/notif_mail.html b/res/templates-vector/notif_mail.html index 86e7b6e867..c49cc66548 100644 --- a/res/templates-vector/notif_mail.html +++ b/res/templates-vector/notif_mail.html @@ -8,9 +8,9 @@ <body> <div id="page"> <div class="header"> - <img class="logo" src="http://matrix.org/img/vector-logo-email.png" width="64" height="83" alt="Vector"/> + <img class="logo" src="http://matrix.org/img/vector-logo-email.png" width="64" height="83" alt="[Vector]"/> <div class="salutation">Hi {{ user_display_name }},</div> - <div class="summarytext">{{ summary_text|replace("%app%", "Vector") }}</div> + <div class="summarytext">{{ summary_text }}</div> </div> <div class="content"> {% for room in rooms %} diff --git a/res/templates-vector/notif_mail.txt b/res/templates-vector/notif_mail.txt index dec2e5960b..24843042a5 100644 --- a/res/templates-vector/notif_mail.txt +++ b/res/templates-vector/notif_mail.txt @@ -1,6 +1,6 @@ Hi {{ user_display_name }}, -{{ summary_text|replace("%app%", "Vector") }} +{{ summary_text }} {% for room in rooms %} {% include 'room.txt' with context %} diff --git a/res/templates/notif_mail.html b/res/templates/notif_mail.html index 0290fdea01..cc3573e65a 100644 --- a/res/templates/notif_mail.html +++ b/res/templates/notif_mail.html @@ -8,7 +8,7 @@ <body> <div id="page"> <div className="salutation">Hi {{ user_display_name }},</div> - <div className="summarytext">{{ summary_text|replace("%app%", "Matrix") }}</div> + <div className="summarytext">{{ summary_text }}</div> <div class="content"> {% for room in rooms %} {% include 'room.html' with context %} diff --git a/res/templates/notif_mail.txt b/res/templates/notif_mail.txt index 5d5a8442f9..24843042a5 100644 --- a/res/templates/notif_mail.txt +++ b/res/templates/notif_mail.txt @@ -1,6 +1,6 @@ Hi {{ user_display_name }}, -{{ summary_text|replace("%app%", "Matrix") }} +{{ summary_text }} {% for room in rooms %} {% include 'room.txt' with context %} |