@lemoncat7/dsh-knowledge 2.2.13-next.12 → 2.2.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.js +1 -1
- package/lib/client.js.map +1 -1
- package/lib/web-note-editor-chrome.d.ts.map +1 -1
- package/lib/web-note-editor-chrome.js +1 -0
- package/lib/web-note-editor-chrome.js.map +1 -1
- package/lib/web-note-editor-outline.d.ts +2 -0
- package/lib/web-note-editor-outline.d.ts.map +1 -1
- package/lib/web-note-editor-outline.js +17 -6
- package/lib/web-note-editor-outline.js.map +1 -1
- package/package.json +1 -1
- package/web/note-editor.js +30 -30
- package/web/styles.css +11 -5
package/web/styles.css
CHANGED
|
@@ -1707,22 +1707,28 @@ html,
|
|
|
1707
1707
|
}
|
|
1708
1708
|
|
|
1709
1709
|
.sidebar.knowledge-glass-surface {
|
|
1710
|
-
background: var(--
|
|
1711
|
-
box-shadow:
|
|
1710
|
+
background: var(--material-sidebar);
|
|
1711
|
+
box-shadow: inset 0 1px 0 var(--surface-highlight), var(--shadow-soft);
|
|
1712
|
+
-webkit-backdrop-filter: none;
|
|
1713
|
+
backdrop-filter: none;
|
|
1712
1714
|
}
|
|
1713
1715
|
|
|
1714
1716
|
.topbar.knowledge-glass-surface,
|
|
1715
1717
|
.note-editor-toolbar.knowledge-glass-surface,
|
|
1716
1718
|
.notes-document-toolbar.knowledge-glass-surface,
|
|
1717
1719
|
.notes-content-header.knowledge-glass-surface {
|
|
1718
|
-
background: var(--
|
|
1719
|
-
box-shadow:
|
|
1720
|
+
background: var(--material-toolbar);
|
|
1721
|
+
box-shadow: none;
|
|
1722
|
+
-webkit-backdrop-filter: none;
|
|
1723
|
+
backdrop-filter: none;
|
|
1720
1724
|
}
|
|
1721
1725
|
|
|
1722
1726
|
.note-tree-panel.knowledge-glass-surface,
|
|
1723
1727
|
.notes-browser.knowledge-glass-surface {
|
|
1724
|
-
background: var(--
|
|
1728
|
+
background: var(--surface-pane);
|
|
1725
1729
|
box-shadow: none;
|
|
1730
|
+
-webkit-backdrop-filter: none;
|
|
1731
|
+
backdrop-filter: none;
|
|
1726
1732
|
}
|
|
1727
1733
|
|
|
1728
1734
|
.knowledge-card-surface {
|