diff --git a/assets/common.css b/assets/common.css index db9ac87..78db0d8 100644 --- a/assets/common.css +++ b/assets/common.css @@ -262,7 +262,7 @@ html.light-mode .light-block { color: var(--text-error); } -.input-form .loading { +.loading { width: 24px; height: 24px; border: 4px solid var(--color-purple); @@ -277,4 +277,15 @@ html.light-mode .light-block { text-align: center; font-style: italic; font-weight: var(--font-extrabold); +} + +.tree-item-self[data-type]:after { + content: attr(data-type); + border: 1px solid var(--background-modifier-border); + background-color: var(--background-primary-alt); + padding: 0 4px; + border-radius: 4px; + font-size: var(--font-smaller); + /* font-style: italic; */ + font-variant: all-petite-caps; } \ No newline at end of file diff --git a/assets/global.css b/assets/global.css index 38ac617..667f0d6 100644 --- a/assets/global.css +++ b/assets/global.css @@ -2673,7 +2673,7 @@ body:not(.native-scrollbars) * { content: ': '; } -.suggestion-item.mod-complex .suggestion-highlight { +.suggestion-item.mod-complex .highlight { font-weight: bold; } @@ -2722,7 +2722,7 @@ body:not(.native-scrollbars) * { margin: 0 var(--size-4-1) 0 var(--size-4-3); } -.suggestion-highlight { +.highlight { font-weight: bold; } diff --git a/bun.lockb b/bun.lockb index eacc22d..d1d9a4e 100644 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/components/BoldContent.vue b/components/BoldContent.vue new file mode 100644 index 0000000..f8b3564 --- /dev/null +++ b/components/BoldContent.vue @@ -0,0 +1,29 @@ + + + \ No newline at end of file diff --git a/components/Markdown.vue b/components/Markdown.vue index b20b47c..0825d85 100644 --- a/components/Markdown.vue +++ b/components/Markdown.vue @@ -1,18 +1,33 @@