Complete redo of content indexing and querying (#517)

Complete redo of data store
Introduces live queries and live templates
This commit is contained in:
Zef Hemel
2023-10-03 14:16:33 +02:00
committed by GitHub
parent 7af98e7c7b
commit 0313565610
200 changed files with 4675 additions and 4363 deletions
+1 -1
View File
@@ -378,7 +378,7 @@
color: var(--editor-wiki-link-page-color); // #8f96c2;
}
.sb-task-marker {
.sb-task-mark {
color: var(--editor-task-marker-color);
}
+4 -2
View File
@@ -308,7 +308,7 @@
cursor: pointer;
}
.sb-task-marker {
.sb-task-mark {
font-size: 91%;
}
@@ -448,9 +448,11 @@
iframe {
border: 0;
width: 100%;
max-width: 100%;
padding: 0;
margin: 0;
max-width: 100%;
border: 1px solid var(--editor-directive-background-color);
border-radius: 5px;
}
}
+57 -51
View File
@@ -74,10 +74,8 @@ body {
}
.sb-notifications {
position: fixed;
bottom: 0;
left: 5px;
right: 5px;
float: right;
margin-top: 8px;
font-size: 15px;
z-index: 100;
@@ -87,66 +85,74 @@ body {
border-radius: 5px;
}
}
}
#sb-current-page {
flex: 1;
#sb-current-page {
flex: 1;
overflow: hidden;
white-space: nowrap;
text-align: left;
display: block;
overflow: hidden;
white-space: nowrap;
text-align: left;
display: block;
.cm-scroller {
font-family: var(--ui-font);
}
.cm-scroller {
font-family: var(--ui-font);
}
.cm-content {
.cm-content {
padding: 0;
.cm-line {
padding: 0;
.cm-line {
padding: 0;
}
}
}
}
.sb-actions {
text-align: right;
position: absolute;
right: 15px;
top: 0;
}
.progress-wrapper {
display: inline-block;
position: relative;
top: -6px;
padding: 4px;
background-color: var(--top-background-color);
margin-right: -2px;
}
.progress-bar {
display: flex;
justify-content: center;
align-items: center;
width: 20px;
height: 20px;
border-radius: 50%;
font-size: 6px;
}
// .progress-bar::before {
// content: "66%";
// }
}
.sb-panel {
flex: 1;
.sb-actions {
text-align: right;
position: absolute;
right: 15px;
top: 0;
}
.progress-wrapper {
display: inline-block;
position: relative;
top: -6px;
padding: 4px;
background-color: var(--top-background-color);
margin-right: -2px;
}
.progress-bar {
display: flex;
justify-content: center;
align-items: center;
width: 20px;
height: 20px;
border-radius: 50%;
font-size: 6px;
}
// .progress-bar::before {
// content: "66%";
// }
}
.sb-panel {
flex: 1;
}
.sb-ps-iframe {
width: 100%;
margin-top: 10px;
border: 1px solid var(--editor-directive-background-color);
border-radius: 5px;
}
#sb-main {
display: flex;
flex-direction: row;