mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 05:13:10 +00:00
fish_config: use system-ui/sans serif for non-shell/code text
This is nicer. It was actually using monospace fonts across the board before. Tweak tab rendering.
This commit is contained in:
parent
776fc0b7f3
commit
f3cf32a085
1 changed files with 7 additions and 5 deletions
|
@ -1,7 +1,7 @@
|
|||
body {
|
||||
background: linear-gradient(to bottom, #a7cfdf 0%, #23538a 100%);
|
||||
/* List explained in the doc theme pydoctheme.css */
|
||||
font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, "Ubuntu Mono", "Hack", "Noto Sans Mono", Liberation Mono, monospace;
|
||||
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI",Roboto, "Helvetica Neue", Arial, sans-serif;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
|
@ -30,14 +30,12 @@ body {
|
|||
|
||||
.tab {
|
||||
display: table-cell;
|
||||
border: 1px solid #ccc;
|
||||
border-right: none;
|
||||
border-top: none;
|
||||
padding-bottom: 15px;
|
||||
padding-top: 15px;
|
||||
padding-left: 3px;
|
||||
padding-right: 3px;
|
||||
font-size: 14pt;
|
||||
font-size: 18pt;
|
||||
font-weight: 500;
|
||||
text-align: center;
|
||||
background-color: white;
|
||||
cursor: pointer;
|
||||
|
@ -511,6 +509,10 @@ img.delete_icon {
|
|||
color: #c0c0c0; /* set_color normal, assume white (not brwhite) */
|
||||
}
|
||||
|
||||
.prompt_demo, .prompt_demo_text, .data_table_row, .colorpicker_text_sample_tight, .colorpicker_text_sample, .history_text, pre, code, tt {
|
||||
font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, "Ubuntu Mono", "Hack", "Noto Sans Mono", Liberation Mono, monospace;
|
||||
}
|
||||
|
||||
.prompt_demo {
|
||||
color: #aaa;
|
||||
white-space: pre;
|
||||
|
|
Loading…
Reference in a new issue