diff options
author | Go MAEDA <maeda@farend.jp> | 2024-10-17 03:11:48 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2024-10-17 03:11:48 +0000 |
commit | ab1cd525949a87e2a920166b3b1d2b696e738967 (patch) | |
tree | 32cc3838b82abb40cc67d7a722e4a61a7071eba7 /app/views | |
parent | 20ee60da051a91ebab323a56bbafba9c83d82e8b (diff) | |
download | redmine-ab1cd525949a87e2a920166b3b1d2b696e738967.tar.gz redmine-ab1cd525949a87e2a920166b3b1d2b696e738967.zip |
Remove Verdana and Trebuchet MS fonts in email notifications (#41321).
This change ensures consistency with the new default theme, which no longer uses these fonts.
git-svn-id: https://svn.redmine.org/redmine/trunk@23137 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/layouts/mailer.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/layouts/mailer.html.erb b/app/views/layouts/mailer.html.erb index fff36c0cb..a1906f5a0 100644 --- a/app/views/layouts/mailer.html.erb +++ b/app/views/layouts/mailer.html.erb @@ -2,12 +2,12 @@ <head> <style> body { - font-family: Verdana, sans-serif; + font-family: sans-serif; font-size: 14px; line-height: 1.4em; color: #222; } -h1, h2, h3 { font-family: "Trebuchet MS", Verdana, sans-serif; margin: 0px; } +h1, h2, h3 { font-family: sans-serif; margin: 0px; } h1 { font-size: 1.3em; line-height: 1.4em;} h2, h3 { font-size: 1.1em; } a, a:link, a:visited { color: #169;} |