mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-10-01 17:34:37 +08:00
Merge pull request #988 from HeySora/system-font
Use the System/Browser font by default
This commit is contained in:
commit
9fa145dbc5
2 changed files with 6 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
|||
:root {
|
||||
--fontSans: Verdana, Geneva, "Bitstream Vera Sans", "DejaVu LGC Sans", Arial, sans-serif;
|
||||
--fontSerif: "Nimbus Roman No9 L", "Times New Roman", Times, FreeSerif, serif;
|
||||
--fontMono: "Liberation Mono", Monaco, Menlo, Consolas, "Courier New", FreeMono, Courier, monospace;
|
||||
--fontSans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
--fontSerif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
|
||||
--fontMono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||
}
|
||||
|
||||
#rl-app.fontArial {
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<div class="control-group">
|
||||
<label>Sans-serif</label>
|
||||
<select data-bind="value: fontSansSerif">
|
||||
<option value=""></option>
|
||||
<option value="">System Font</option>
|
||||
<option value="Arial">Arial</option>
|
||||
<option value="Lucida">Lucida</option>
|
||||
<option value="Tahoma">Tahoma</option>
|
||||
|
@ -26,7 +26,7 @@
|
|||
<div class="control-group">
|
||||
<label>Serif</label>
|
||||
<select data-bind="value: fontSerif">
|
||||
<option value=""></option>
|
||||
<option value="">System Font</option>
|
||||
<option value="Times">Times</option>
|
||||
<option value="Palatino">Palatino</option>
|
||||
<option value="Georgia">Georgia</option>
|
||||
|
@ -35,7 +35,7 @@
|
|||
<div class="control-group">
|
||||
<label>Mono</label>
|
||||
<select data-bind="value: fontMono">
|
||||
<option value=""></option>
|
||||
<option value="">System Font</option>
|
||||
<option value="Courier">Courier</option>
|
||||
<option value="Lucida">Lucida</option>
|
||||
</select>
|
||||
|
|
Loading…
Add table
Reference in a new issue