Note moving
Some checks are pending
Build Electron App / build (macos-latest, build:mac) (push) Waiting to run
Build Electron App / build (ubuntu-latest, build:linux) (push) Waiting to run
Build Electron App / build (windows-latest, build:win) (push) Waiting to run

This commit is contained in:
nicwands
2026-03-12 13:25:56 -04:00
parent 93edf204ce
commit c93fc2cc58
24 changed files with 10210 additions and 2518 deletions

File diff suppressed because one or more lines are too long

View File

@@ -337,7 +337,9 @@ a,
button,
input,
pre,
span {
span,
label,
li {
font-family: var(--font-mono);
font-weight: 400;
line-height: 1;
@@ -603,7 +605,8 @@ main.directory .notes {
font-weight: 700;
}
.note-editor p em {
font-style: italic;
/* font-style: italic; */
color: var(--grey-100);
}
.note-editor hr {
border: 1px dashed currentColor;
@@ -789,6 +792,14 @@ main.category .new-note {
display: block;
margin-top: 9px;
margin-bottom: 14px;
}
main.instructions .content {
display: flex;
flex-direction: column;
gap: 20px;
}
main.instructions .content hr {
border-bottom: 1px dashed currentColor;
}main.search .back {
display: block;
opacity: 0.25;
@@ -823,4 +834,74 @@ main.search .results {
display: flex;
flex-direction: column;
gap: 14px;
}.preferences {
padding-top: 8px;
padding-bottom: 60px;
}
.preferences .back {
opacity: 0.25;
display: block;
margin-top: 9px;
margin-bottom: 14px;
}
.preferences h1 {
margin-bottom: 20px;
}
.preferences .plugin {
display: flex;
margin-bottom: 16px;
}
.preferences input[type=radio] {
display: block;
flex-shrink: 0;
width: 10px;
height: 10px;
margin-right: 10px;
border: 1px solid white;
cursor: pointer;
}
.preferences input[type=radio]:checked {
background-color: white;
}
.preferences .info .description {
color: var(--grey-100);
margin-top: 6px;
}
.preferences .config {
display: flex;
flex-direction: column;
gap: 10px;
margin-top: 16px;
}
.preferences .config-field {
display: flex;
flex-direction: column;
gap: 4px;
}
.preferences .config-field input {
width: 100%;
border: 1px solid var(--grey-100);
border-radius: 0.2em;
padding: 0.2em 0.5em;
}
.preferences .error {
color: red;
margin-top: 16px;
}
.preferences .save-btn {
position: fixed;
bottom: 0;
left: 0;
right: 0;
padding: 16px 0;
text-align: center;
border-top: 1px dashed currentColor;
background: var(--theme-bg);
}
.preferences .save-btn .svg-spinner {
width: 1em;
height: 1em;
}
.preferences .save-btn:hover {
color: var(--theme-accent);
}