UI font tweaks

pull/184/head
Zef Hemel 2022-12-09 14:16:28 +01:00
parent 7caacc2ebf
commit 453c613ef4
4 changed files with 13 additions and 10 deletions

View File

@ -17,7 +17,7 @@ export async function queryDirectiveRenderer(
const results = await events.dispatchEvent(
`query:${parsedQuery.table}`,
{ query: parsedQuery, pageName: pageName },
10 * 1000,
30 * 1000,
);
if (results.length === 0) {
return "";

View File

@ -72,9 +72,7 @@
}
.sb-current-page {
font-weight: bold;
flex: 1;
font-size: 28px;
overflow: hidden;
white-space: nowrap;
@ -85,8 +83,6 @@
input.sb-edit-page-name {
background: transparent;
font-weight: bold;
font-size: 28px;
white-space: nowrap;
text-align: left;
border: 0;

View File

@ -1,12 +1,17 @@
#sb-root {
font-family: Arial;
--highlight-color: #464cfc;
--ui-font: -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";
font-family: var(--ui-font);
}
#sb-top {
background-color: rgb(213, 213, 213);
border-bottom: rgb(193, 193, 193) 1px solid;
color: rgb(55, 55, 55);
background-color: #e1e1e1;
border-bottom: #cacaca 1px solid;
}
#sb-top input.sb-edit-page-name {
// font-weight: bold;
font-size: 28px;
}
.sb-panel {
@ -74,7 +79,7 @@
}
.sb-filter-box .sb-header input {
font-family: "Arial";
font-family: var(--ui-font);
color: #000;
}

View File

@ -7,7 +7,9 @@ release.
* Replaced the `--password` flag with `--user` taking a basic auth combination of username and password, e.g. `--user pete:1234`. Authentication now uses standard basic auth. This should fix attachments not working with password-protected setups.
* Added support for ~~strikethrough~~ syntax.
* New logo! Contributed by [petercoyne](https://github.com/silverbulletmd/silverbullet/pull/177)
* New button icons, from [feather](https://feathericons.com/)
* UI font tweaks
---