UI font tweaks
parent
7caacc2ebf
commit
453c613ef4
|
@ -17,7 +17,7 @@ export async function queryDirectiveRenderer(
|
||||||
const results = await events.dispatchEvent(
|
const results = await events.dispatchEvent(
|
||||||
`query:${parsedQuery.table}`,
|
`query:${parsedQuery.table}`,
|
||||||
{ query: parsedQuery, pageName: pageName },
|
{ query: parsedQuery, pageName: pageName },
|
||||||
10 * 1000,
|
30 * 1000,
|
||||||
);
|
);
|
||||||
if (results.length === 0) {
|
if (results.length === 0) {
|
||||||
return "";
|
return "";
|
||||||
|
|
|
@ -72,9 +72,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.sb-current-page {
|
.sb-current-page {
|
||||||
font-weight: bold;
|
|
||||||
flex: 1;
|
flex: 1;
|
||||||
font-size: 28px;
|
|
||||||
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
@ -85,8 +83,6 @@
|
||||||
|
|
||||||
input.sb-edit-page-name {
|
input.sb-edit-page-name {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
font-weight: bold;
|
|
||||||
font-size: 28px;
|
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
border: 0;
|
border: 0;
|
||||||
|
|
|
@ -1,12 +1,17 @@
|
||||||
#sb-root {
|
#sb-root {
|
||||||
font-family: Arial;
|
|
||||||
--highlight-color: #464cfc;
|
--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 {
|
#sb-top {
|
||||||
background-color: rgb(213, 213, 213);
|
background-color: #e1e1e1;
|
||||||
border-bottom: rgb(193, 193, 193) 1px solid;
|
border-bottom: #cacaca 1px solid;
|
||||||
color: rgb(55, 55, 55);
|
}
|
||||||
|
|
||||||
|
#sb-top input.sb-edit-page-name {
|
||||||
|
// font-weight: bold;
|
||||||
|
font-size: 28px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sb-panel {
|
.sb-panel {
|
||||||
|
@ -74,7 +79,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.sb-filter-box .sb-header input {
|
.sb-filter-box .sb-header input {
|
||||||
font-family: "Arial";
|
font-family: var(--ui-font);
|
||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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.
|
* 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.
|
* 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/)
|
* New button icons, from [feather](https://feathericons.com/)
|
||||||
|
* UI font tweaks
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue