mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Add ui-monospace and SF Mono to --fonts-monospace (#24442)
				
					
				
			- Add `ui-monospace` to support Safari 13.4+. - Add `SF Mono` variant to support the font on non-mac. - Quote fonts as per [W3C recommendation](https://www.w3.org/TR/2018/REC-css-fonts-3-20180920/#propdef-font-family). > it is recommended to quote font family names that contain white space, digits, or punctuation characters other than hyphens Fixes: https://github.com/go-gitea/gitea/issues/22125
This commit is contained in:
		@@ -1,7 +1,7 @@
 | 
			
		||||
:root {
 | 
			
		||||
  /* fonts */
 | 
			
		||||
  --fonts-proportional: -apple-system, "Segoe UI", system-ui, "Roboto", "Helvetica Neue", "Arial";
 | 
			
		||||
  --fonts-monospace: "SFMono-Regular", "Menlo", "Monaco", "Consolas", "Liberation Mono", "Courier New", monospace, var(--fonts-emoji);
 | 
			
		||||
  --fonts-proportional: -apple-system, "Segoe UI", system-ui, Roboto, "Helvetica Neue", Arial;
 | 
			
		||||
  --fonts-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace, var(--fonts-emoji);
 | 
			
		||||
  --fonts-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji Mozilla";
 | 
			
		||||
  /* "font-weight: bold" starts from 700, some fonts do not provide "bolding" for weight 600. */
 | 
			
		||||
  /* But some users consider "700" is too heavy, so use 601, which is when Segoe UI on Linux */
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user