@lemoncat7/dsh-knowledge 2.3.0 → 2.3.1

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.
Files changed (40) hide show
  1. package/README.md +11 -4
  2. package/docs/architecture.md +1 -1
  3. package/lib/api.d.ts.map +1 -1
  4. package/lib/api.js +93 -0
  5. package/lib/api.js.map +1 -1
  6. package/lib/client.js +1 -1
  7. package/lib/client.js.map +1 -1
  8. package/lib/extraction.js +9 -2
  9. package/lib/extraction.js.map +1 -1
  10. package/lib/notes/domain.d.ts +8 -0
  11. package/lib/notes/domain.d.ts.map +1 -1
  12. package/lib/notes/domain.js.map +1 -1
  13. package/lib/notes/share-import.d.ts +36 -0
  14. package/lib/notes/share-import.d.ts.map +1 -0
  15. package/lib/notes/share-import.js +325 -0
  16. package/lib/notes/share-import.js.map +1 -0
  17. package/lib/notes/share-page.d.ts +12 -0
  18. package/lib/notes/share-page.d.ts.map +1 -0
  19. package/lib/notes/share-page.js +81 -0
  20. package/lib/notes/share-page.js.map +1 -0
  21. package/lib/notes/store.d.ts +15 -1
  22. package/lib/notes/store.d.ts.map +1 -1
  23. package/lib/notes/store.js +177 -6
  24. package/lib/notes/store.js.map +1 -1
  25. package/lib/web-note-editor-selection.d.ts.map +1 -1
  26. package/lib/web-note-editor-selection.js +23 -0
  27. package/lib/web-note-editor-selection.js.map +1 -1
  28. package/lib/web.d.ts.map +1 -1
  29. package/lib/web.js +7 -6
  30. package/lib/web.js.map +1 -1
  31. package/package.json +1 -1
  32. package/web/app.js +303 -29
  33. package/web/index.html +1 -2
  34. package/web/note-editor.js +64 -64
  35. package/web/styles.css +168 -291
  36. package/lib/web-workspace-effects.d.ts +0 -13
  37. package/lib/web-workspace-effects.d.ts.map +0 -1
  38. package/lib/web-workspace-effects.js +0 -366
  39. package/lib/web-workspace-effects.js.map +0 -1
  40. package/web/workspace-effects.js +0 -16
package/web/styles.css CHANGED
@@ -30,20 +30,20 @@
30
30
  --radius: 14px;
31
31
  --radius-control: 9px;
32
32
  --radius-small: 7px;
33
- --material-sidebar: var(--surface);
34
- --material-toolbar: var(--surface);
35
- --material-panel: color-mix(in srgb, var(--surface-raised) 88%, var(--surface));
36
- --material-control: var(--surface-raised);
37
- --material-control-hover: color-mix(in srgb, var(--surface-raised) 92%, var(--surface-hover));
33
+ --workspace-glass-surface: rgba(255, 255, 255, 0.16);
34
+ --material-toolbar: transparent;
35
+ --material-panel: rgba(255, 255, 255, 0.24);
36
+ --material-control: rgba(255, 255, 255, 0.27);
37
+ --material-control-hover: rgba(255, 255, 255, 0.38);
38
38
  --separator: color-mix(in srgb, var(--border) 76%, transparent);
39
39
  --panel-border: color-mix(in srgb, var(--border-strong) 58%, var(--border));
40
40
  --surface-highlight: color-mix(in srgb, var(--surface-raised) 74%, transparent);
41
41
  --shadow-soft: 0 1px 2px color-mix(in srgb, var(--text) 5%, transparent);
42
42
  --shadow-panel: 0 1px 2px rgb(0 0 0 / 5%), 0 9px 24px rgb(31 31 35 / 7.5%);
43
43
  --surface-canvas: var(--bg);
44
- --surface-pane: color-mix(in srgb, var(--surface) 92%, var(--surface-raised));
45
- --surface-editor: var(--surface-raised);
46
- --surface-overlay: var(--surface-raised);
44
+ --surface-pane: transparent;
45
+ --surface-editor: transparent;
46
+ --surface-overlay: rgba(246, 247, 250, 0.88);
47
47
  --shadow-control: 0 1px 2px rgb(0 0 0 / 5.5%), inset 0 1px 0 rgb(255 255 255 / 58%);
48
48
  --shadow-floating: 0 22px 70px color-mix(in srgb, var(--text) 18%, transparent), 0 2px 8px color-mix(in srgb, var(--text) 8%, transparent);
49
49
  --glass-clear: color-mix(in srgb, var(--surface-raised) 20%, transparent);
@@ -53,7 +53,7 @@
53
53
  --glass-separator: var(--border);
54
54
  --glass-rim-light: color-mix(in srgb, var(--surface-raised) 58%, transparent);
55
55
  --glass-rim-shadow: color-mix(in srgb, var(--text) 12%, transparent);
56
- --glass-filter: saturate(1.08) contrast(1.02) blur(18px);
56
+ --glass-filter: saturate(1.22) contrast(1.03) blur(32px);
57
57
  --glass-shadow: inset 0 1px 0 var(--glass-rim-light), inset 0 -1px 0 var(--glass-rim-shadow), 0 10px 28px rgb(0 0 0 / 8.5%);
58
58
  --liquid-glass-large: color-mix(in srgb, var(--surface) 68%, transparent);
59
59
  --liquid-glass-regular: color-mix(in srgb, var(--surface-raised) 52%, transparent);
@@ -124,6 +124,14 @@
124
124
  --glass-rim-shadow: rgb(0 0 0 / 30%);
125
125
  --card-highlight: rgb(255 255 255 / 11%);
126
126
  --card-fill: rgb(7 9 11 / 22%);
127
+ --workspace-glass-surface: rgb(25 33 35 / 90%);
128
+ --material-toolbar: transparent;
129
+ --material-panel: rgb(32 41 43 / 58%);
130
+ --material-control: rgb(39 50 53 / 72%);
131
+ --material-control-hover: rgb(39 50 53 / 84%);
132
+ --surface-pane: transparent;
133
+ --surface-editor: transparent;
134
+ --surface-overlay: rgb(25 33 35 / 94%);
127
135
  }
128
136
  }
129
137
 
@@ -143,6 +151,14 @@
143
151
  --interaction-glare-rim: rgb(255 255 255 / 10%);
144
152
  --card-highlight: rgb(255 255 255 / 11%);
145
153
  --card-fill: rgb(7 9 11 / 22%);
154
+ --workspace-glass-surface: rgb(25 33 35 / 90%);
155
+ --material-toolbar: transparent;
156
+ --material-panel: rgb(32 41 43 / 58%);
157
+ --material-control: rgb(39 50 53 / 72%);
158
+ --material-control-hover: rgb(39 50 53 / 84%);
159
+ --surface-pane: transparent;
160
+ --surface-editor: transparent;
161
+ --surface-overlay: rgb(25 33 35 / 94%);
146
162
  }
147
163
 
148
164
  * { box-sizing: border-box; }
@@ -161,6 +177,23 @@ body {
161
177
 
162
178
  /* Embedded workspaces expose the host canvas only between their own opaque
163
179
  panels. Standalone management pages still keep a stable plugin-owned base. */
180
+ :root[data-dsh-embed-mode="embedded"],
181
+ :root[data-dsh-host-theme="true"] { --surface-canvas: transparent; }
182
+
183
+ /* The workspace and iframe remain transparent. Only the visible sidebar and
184
+ main pane own material, preventing a full-page glass sheet. */
185
+ :root[data-dsh-embed-mode="embedded"] {
186
+ --workspace-glass-surface: rgba(255, 255, 255, 0.08);
187
+ --glass-filter: saturate(.65) contrast(1.015) blur(24px);
188
+ }
189
+
190
+ :root[data-dsh-embed-mode="embedded"][data-color-scheme="dark"] {
191
+ --workspace-glass-surface: rgb(16 23 25 / 18%);
192
+ --glass-filter: saturate(.55) contrast(1.02) blur(24px);
193
+ }
194
+
195
+ :root[data-dsh-embed-mode="embedded"],
196
+ :root[data-dsh-embed-mode="embedded"] body,
164
197
  :root[data-dsh-host-theme="true"],
165
198
  :root[data-dsh-host-theme="true"] body { background: transparent; }
166
199
 
@@ -437,7 +470,7 @@ html,
437
470
  border: 1px solid var(--glass-border);
438
471
  border-radius: 15px;
439
472
  overflow: hidden;
440
- background: var(--material-sidebar);
473
+ background: var(--workspace-glass-surface);
441
474
  box-shadow: inset 0 1px 0 var(--surface-highlight), var(--shadow-soft);
442
475
  -webkit-backdrop-filter: var(--glass-filter);
443
476
  backdrop-filter: var(--glass-filter);
@@ -561,10 +594,12 @@ html,
561
594
  overflow-x: hidden;
562
595
  overflow-y: auto;
563
596
  overscroll-behavior: contain;
564
- border: 1px solid var(--border);
597
+ border: 1px solid var(--glass-border);
565
598
  border-radius: 15px;
566
- background: var(--surface);
567
- box-shadow: inset 0 1px 0 var(--surface-highlight), var(--shadow-soft);
599
+ background: var(--workspace-glass-surface);
600
+ box-shadow: var(--glass-shadow);
601
+ -webkit-backdrop-filter: var(--glass-filter);
602
+ backdrop-filter: var(--glass-filter);
568
603
  }
569
604
  .topbar {
570
605
  position: sticky;
@@ -581,10 +616,10 @@ html,
581
616
  border-radius: 0;
582
617
  padding: 14px clamp(18px, 3vw, 38px);
583
618
  overflow: hidden;
584
- background: color-mix(in srgb, var(--material-toolbar) 94%, transparent);
619
+ background: transparent;
585
620
  box-shadow: none;
586
- -webkit-backdrop-filter: var(--glass-filter);
587
- backdrop-filter: var(--glass-filter);
621
+ -webkit-backdrop-filter: none;
622
+ backdrop-filter: none;
588
623
  }
589
624
  .topbar h1 { margin: 0; font-size: var(--font-title); line-height: 1.2; font-weight: 650; letter-spacing: -.025em; text-wrap: balance; }
590
625
  .topbar p { margin: 3px 0 0; color: var(--text-tertiary); font-size: var(--font-caption); text-wrap: pretty; }
@@ -849,8 +884,8 @@ html,
849
884
  overflow: hidden;
850
885
  border: 1px solid var(--glass-border);
851
886
  border-radius: 15px;
852
- background: var(--surface-editor);
853
- box-shadow: var(--glass-shadow);
887
+ background: transparent;
888
+ box-shadow: none;
854
889
  }
855
890
  .note-tree-panel {
856
891
  min-width: 0;
@@ -860,10 +895,10 @@ html,
860
895
  grid-template-rows: auto auto minmax(0, 1fr) auto;
861
896
  overflow: hidden;
862
897
  border-right: 1px solid var(--glass-separator);
863
- background: var(--surface-pane);
898
+ background: transparent;
864
899
  box-shadow: none;
865
- -webkit-backdrop-filter: var(--glass-filter);
866
- backdrop-filter: var(--glass-filter);
900
+ -webkit-backdrop-filter: none;
901
+ backdrop-filter: none;
867
902
  }
868
903
  .note-tree-scrim { display: none; }
869
904
  .note-tree-header { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 12px 8px 16px; }
@@ -946,9 +981,9 @@ html,
946
981
  display: grid;
947
982
  grid-template-columns: clamp(250px, 25%, 320px) minmax(0, 1fr);
948
983
  overflow: hidden;
949
- background: var(--surface-editor);
984
+ background: transparent;
950
985
  }
951
- .notes-browser { min-width: 0; min-height: 0; display: grid; grid-template-rows: auto auto minmax(0, 1fr); overflow: hidden; border-right: 1px solid var(--glass-separator); background: var(--surface-pane); box-shadow: none; -webkit-backdrop-filter: var(--glass-filter); backdrop-filter: var(--glass-filter); }
986
+ .notes-browser { min-width: 0; min-height: 0; display: grid; grid-template-rows: auto auto minmax(0, 1fr); overflow: hidden; border-right: 1px solid var(--glass-separator); background: transparent; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
952
987
  .notes-browser-header { min-height: 68px; display: grid; gap: 8px; padding: 10px 10px 7px; }
953
988
  .notes-browser-header > div:first-child { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
954
989
  .notes-browser-header h2 { margin: 0; font-size: 13px; font-weight: 650; }
@@ -998,6 +1033,7 @@ html,
998
1033
  .notes-tree-empty, .notes-folder-empty { display: grid; place-content: center; justify-items: center; gap: 5px; color: var(--text-tertiary); text-align: center; }
999
1034
  .notes-tree-empty { min-height: 170px; padding: 24px 12px; }
1000
1035
  .notes-tree-empty strong { color: var(--text-secondary); font-size: 12px; }
1036
+ .notes-tree-empty.is-error strong, .notes-tree-empty.is-error span { color: var(--danger); }
1001
1037
  .notes-search-results { display: grid; gap: 2px; }
1002
1038
  .notes-search-row { min-width: 0; display: grid; grid-template-columns: 24px minmax(0, 1fr); align-items: center; gap: 8px; border: 0; border-radius: 7px; padding: 7px 8px; background: transparent; color: var(--text); text-align: left; }
1003
1039
  .notes-search-row:hover { background: var(--surface-hover); }
@@ -1010,8 +1046,8 @@ html,
1010
1046
  .note-node-icon.is-document, .note-node-icon[data-media-kind="text"] { border-color: color-mix(in srgb, var(--accent) 30%, var(--border-strong)); color: var(--accent); }
1011
1047
  .note-node-icon.is-large { width: 38px; height: 46px; border-radius: 6px; padding-bottom: 5px; font-size: 7px; }
1012
1048
  .note-node-icon.is-folder.is-large { width: 44px; height: 32px; }
1013
- .notes-content { min-width: 0; min-height: 0; overflow: auto; background: var(--surface-editor); }
1014
- .notes-content-header { position: sticky; top: 0; z-index: 2; border-bottom: 1px solid var(--separator); padding: 11px 22px 13px; background: var(--material-toolbar); -webkit-backdrop-filter: blur(16px) saturate(108%); backdrop-filter: blur(16px) saturate(108%); }
1049
+ .notes-content { min-width: 0; min-height: 0; overflow: auto; background: transparent; }
1050
+ .notes-content-header { position: sticky; top: 0; z-index: 2; border-bottom: 1px solid var(--separator); padding: 11px 22px 13px; background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }
1015
1051
  .notes-breadcrumb { min-width: 0; display: flex; align-items: center; gap: 5px; overflow: hidden; color: var(--text-tertiary); font-size: 10px; }
1016
1052
  .notes-breadcrumb span { min-width: 0; display: flex; align-items: center; gap: 5px; }
1017
1053
  .notes-breadcrumb button { min-width: 0; overflow: hidden; border: 0; padding: 2px; background: transparent; color: inherit; font: inherit; text-overflow: ellipsis; white-space: nowrap; }
@@ -1021,15 +1057,19 @@ html,
1021
1057
  .notes-content-title h2 { margin: 0; font-size: 18px; letter-spacing: -.015em; }
1022
1058
  .notes-content-title p { margin: 3px 0 0; color: var(--text-tertiary); font-size: 10px; }
1023
1059
  .notes-content-actions { display: flex; gap: 7px; }
1024
- .notes-file-list { min-width: 620px; padding: 6px 12px 28px; }
1025
- .notes-file-row { min-height: 46px; display: grid; grid-template-columns: minmax(230px, 1fr) 130px 72px auto; align-items: center; gap: 12px; border-radius: 6px; padding: 3px 8px; transition: background .14s ease; }
1060
+ .notes-file-table { min-width: 0; overflow-x: auto; overscroll-behavior-inline: contain; }
1061
+ .notes-file-columns, .notes-file-row { min-width: 820px; display: grid; grid-template-columns: minmax(230px, 1fr) 130px 72px 260px; align-items: center; gap: 12px; }
1062
+ .notes-file-columns { min-height: 32px; margin: 0 12px; border-bottom: 1px solid var(--separator); padding: 5px 8px; color: var(--text-tertiary); font-size: 9px; font-weight: 620; letter-spacing: .025em; }
1063
+ .notes-file-columns span:nth-child(4) { text-align: right; }
1064
+ .notes-file-list { min-width: 820px; padding: 4px 12px 28px; }
1065
+ .notes-file-row { min-height: 46px; border-radius: 6px; padding: 3px 8px; transition: background-color var(--motion-fast) ease; }
1026
1066
  .notes-file-row:hover { background: var(--surface-hover); }
1027
1067
  .notes-file-main { min-width: 0; display: flex; align-items: center; gap: 10px; border: 0; padding: 3px; background: transparent; color: var(--text); text-align: left; }
1028
1068
  .notes-file-main > span:last-child { min-width: 0; }
1029
1069
  .notes-file-main strong, .notes-file-main small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
1030
1070
  .notes-file-main strong { font-size: 12px; font-weight: 560; }
1031
1071
  .notes-file-main small, .notes-file-row time, .notes-file-size { color: var(--text-tertiary); font-size: 10px; }
1032
- .notes-file-actions { display: flex; opacity: 0; pointer-events: none; transition: opacity .12s ease; }
1072
+ .notes-file-actions { display: flex; align-items: center; justify-content: flex-end; gap: 2px; opacity: 0; pointer-events: none; transition: opacity .12s ease; }
1033
1073
  .notes-file-row:hover .notes-file-actions, .notes-file-row:focus-within .notes-file-actions { opacity: 1; pointer-events: auto; }
1034
1074
  .notes-folder-empty { min-height: 360px; padding: 32px; }
1035
1075
  .notes-folder-empty h3 { margin: 9px 0 0; color: var(--text); font-size: 16px; }
@@ -1037,17 +1077,57 @@ html,
1037
1077
  .notes-folder-empty > div { display: flex; gap: 8px; }
1038
1078
  .notes-empty-folder-mark { position: relative; width: 58px; height: 40px; border: 1.5px solid var(--border-strong); border-radius: 7px; background: var(--surface-soft); }
1039
1079
  .notes-empty-folder-mark::before { content: ""; position: absolute; top: -8px; left: 4px; width: 24px; height: 8px; border: 1.5px solid var(--border-strong); border-bottom: 0; border-radius: 5px 5px 0 0; background: var(--surface-soft); }
1080
+ .shares-page { min-width: 0; display: grid; gap: 4px; }
1081
+ .shares-heading-actions { display: flex; align-items: center; justify-content: flex-end; gap: 7px; }
1082
+ .shares-panel { min-height: 360px; }
1083
+ .shares-panel-header h3 { font-size: 13px; }
1084
+ .shares-panel-header p { margin: 4px 0 0; color: var(--text-tertiary); font-size: 10px; }
1085
+ .shares-panel-body { min-width: 0; }
1086
+ .notes-share-list { min-width: 0; overflow: auto; overscroll-behavior: contain; padding: 10px 12px 32px; }
1087
+ .notes-share-row { min-width: 0; min-height: 76px; display: grid; grid-template-columns: minmax(240px, 1fr) minmax(190px, .62fr) auto; align-items: center; gap: 16px; border-bottom: 1px solid var(--separator); padding: 10px 8px; transition: background var(--motion-fast) ease; }
1088
+ .notes-share-row:hover { border-radius: 9px; background: var(--surface-hover); }
1089
+ .notes-share-main { min-width: 0; min-height: 52px; display: grid; grid-template-columns: 46px minmax(0, 1fr); align-items: center; gap: 12px; border: 0; padding: 3px; background: transparent; color: var(--text); font: inherit; text-align: left; }
1090
+ .notes-share-main > span:last-child { min-width: 0; }
1091
+ .notes-share-main strong, .notes-share-main small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
1092
+ .notes-share-main strong { font-size: 12px; font-weight: 620; }
1093
+ .notes-share-main small { margin-top: 3px; color: var(--text-tertiary); font-size: 10px; }
1094
+ .notes-share-meta { min-width: 0; display: grid; gap: 4px; color: var(--text-tertiary); font-size: 10px; }
1095
+ .notes-share-meta span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
1096
+ .notes-share-meta time { margin-left: 5px; color: var(--text-secondary); font-variant-numeric: tabular-nums; }
1097
+ .notes-share-actions { display: flex; align-items: center; justify-content: flex-end; gap: 4px; }
1098
+ .notes-share-error { align-self: start; display: grid; gap: 7px; margin: 18px; border: 1px solid color-mix(in srgb, var(--danger) 28%, var(--panel-border)); border-radius: 12px; padding: 16px; background: var(--danger-soft); color: var(--danger); }
1099
+ .notes-share-error p { margin: 0; color: var(--text-secondary); }
1100
+ .notes-share-error .button { justify-self: start; }
1101
+ .notes-share-empty { min-height: 100%; }
1102
+ .notes-share-empty-mark { position: relative; width: 52px; height: 36px; border: 1.5px solid var(--border-strong); border-radius: 9px; background: var(--surface-soft); }
1103
+ .notes-share-empty-mark::before { position: absolute; top: 9px; left: 15px; width: 19px; height: 14px; border: 1.5px solid var(--text-tertiary); border-radius: 999px; content: ""; }
1104
+ .notes-share-empty-mark::after { position: absolute; top: 16px; left: 7px; width: 36px; height: 1px; background: var(--text-tertiary); content: ""; }
1105
+ .share-import-form { display: grid; gap: 18px; }
1106
+ .share-import-url-row { min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 7px; }
1107
+ .share-import-url-row .input { width: 100%; }
1108
+ .share-import-field-error { margin: 6px 0 0; color: var(--danger); font-size: 11px; line-height: 1.5; }
1109
+ .share-import-preview { min-width: 0; min-height: 82px; display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; align-items: center; gap: 13px; border: 1px solid var(--glass-border); border-radius: 13px; padding: 13px; background: var(--material-panel); box-shadow: var(--shadow-soft); }
1110
+ .share-import-preview[data-state="loading"] { opacity: .66; }
1111
+ .share-import-preview[data-state="error"] { border-color: color-mix(in srgb, var(--danger) 28%, var(--glass-border)); }
1112
+ .share-import-preview > div { min-width: 0; }
1113
+ .share-import-preview strong, .share-import-preview p { display: block; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
1114
+ .share-import-preview strong { color: var(--text); font-size: 12px; }
1115
+ .share-import-preview p { margin: 4px 0 0; color: var(--text-tertiary); font-size: 10px; }
1116
+ .share-import-preview-mark { position: relative; width: 42px; height: 32px; border: 1.5px solid var(--border-strong); border-radius: 8px; background: var(--surface-soft); }
1117
+ .share-import-preview-mark::after { position: absolute; inset: 8px 12px; border: solid var(--text-tertiary); border-width: 0 1.5px 1.5px 0; content: ""; transform: rotate(45deg); }
1118
+ .share-import-note { margin: -4px 0 0; border-left: 2px solid var(--border-strong); padding: 5px 0 5px 10px; color: var(--text-tertiary); font-size: 10px; line-height: 1.6; }
1119
+ .dialog.share-import-dialog { width: min(560px, calc(100vw - 32px)); }
1040
1120
  .notes-content.is-document, .notes-content.is-file { display: grid; grid-template-rows: auto minmax(0, 1fr) auto; overflow: hidden; }
1041
- .notes-content.is-document { --notes-document-inline: clamp(24px, 4.5vw, 76px); background: var(--surface-editor); }
1121
+ .notes-content.is-document { --notes-document-inline: clamp(24px, 4.5vw, 76px); background: transparent; }
1042
1122
  .notes-content.is-document.has-line-numbers { --notes-document-inline: clamp(34px, 3.2vw, 48px); }
1043
1123
  .notes-editor-frame { position: relative; min-width: 0; min-height: 0; display: grid; grid-template-columns: minmax(0, 1fr) 0; overflow: hidden; }
1044
1124
  .notes-editor-frame[data-outline-open="true"] { grid-template-columns: minmax(0, 1fr) minmax(190px, 236px); }
1045
- .notes-document-toolbar { position: relative; z-index: 2; min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--separator); padding: 5px 14px 5px 20px; background: var(--material-toolbar); -webkit-backdrop-filter: blur(16px) saturate(108%); backdrop-filter: blur(16px) saturate(108%); }
1125
+ .notes-document-toolbar { position: relative; z-index: 2; min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--separator); padding: 5px 14px 5px 20px; background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }
1046
1126
  .notes-toolbar-leading { min-width: 0; display: flex; flex: 1 1 auto; align-items: center; overflow: hidden; }
1047
- .notes-file-info { min-width: 0; display: flex; align-items: center; flex-wrap: wrap; gap: 4px 22px; color: var(--text-tertiary); font-size: 11px; font-variant-numeric: tabular-nums; }
1048
- .notes-file-info-item { min-width: 0; display: inline-flex; align-items: baseline; gap: 4px; }
1049
- .notes-file-info-item strong { color: var(--text-secondary); font-size: inherit; font-weight: 590; }
1050
- .notes-file-info-item > span { max-width: 180px; overflow: hidden; text-overflow: ellipsis; }
1127
+ .notes-file-info { width: 100%; min-width: 0; display: grid; grid-template-columns: minmax(150px, 1.1fr) minmax(130px, 1fr) minmax(90px, .7fr) minmax(180px, 1.2fr); align-items: center; gap: 8px 18px; color: var(--text-tertiary); font-size: 10px; font-variant-numeric: tabular-nums; }
1128
+ .notes-file-info-item { min-width: 0; display: grid; grid-template-columns: 34px minmax(0, 1fr); align-items: baseline; gap: 6px; }
1129
+ .notes-file-info-item strong { color: var(--text-secondary); font-size: 9px; font-weight: 640; letter-spacing: .02em; }
1130
+ .notes-file-info-item > span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
1051
1131
  .notes-file-info-item[data-note-info="id"] > span { font-family: var(--font-mono); }
1052
1132
  .notes-document-actions { display: flex; flex: none; align-items: center; justify-content: flex-end; gap: 5px; }
1053
1133
  .notes-save-state { color: var(--text-tertiary); font-size: 10px; white-space: nowrap; }
@@ -1167,6 +1247,22 @@ html,
1167
1247
  .notes-selection-block-menu .notes-selection-control { text-align: left; }
1168
1248
  .notes-selection-link-form { min-width: min(390px, calc(100vw - 26px)); display: grid; grid-template-columns: minmax(150px, 1fr) auto auto; align-items: center; gap: 4px; border-top: 1px solid var(--separator); margin-top: 4px; padding-top: 4px; }
1169
1249
  .notes-selection-link-error { grid-column: 1 / -1; color: var(--danger); font-size: 10px; }
1250
+ .dialog.notes-agent-guide-dialog { width: min(620px, calc(100vw - 40px)); }
1251
+ .dialog.notes-share-dialog { width: min(560px, calc(100vw - 40px)); }
1252
+ .notes-share-dialog-body { display: grid; gap: 16px; }
1253
+ .notes-share-dialog-kind { min-width: 0; display: grid; grid-template-columns: 46px minmax(0, 1fr); align-items: center; gap: 12px; }
1254
+ .notes-share-dialog-kind > span:last-child { min-width: 0; }
1255
+ .notes-share-dialog-kind strong, .notes-share-dialog-kind small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
1256
+ .notes-share-dialog-kind strong { color: var(--text); font-size: 13px; }
1257
+ .notes-share-dialog-kind small { margin-top: 3px; color: var(--text-tertiary); font-size: 10px; }
1258
+ .notes-share-link-label { display: grid; gap: 7px; color: var(--text-secondary); font-size: 11px; font-weight: 620; }
1259
+ .notes-share-link-row { min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 7px; }
1260
+ .notes-share-link-input { min-width: 0; font-family: var(--font-mono); font-size: 11px; }
1261
+ .notes-share-dialog-note { margin: 0; color: var(--text-tertiary); font-size: 11px; line-height: 1.65; }
1262
+ .notes-share-dialog-danger { display: flex; align-items: center; justify-content: space-between; gap: 14px; border-top: 1px solid var(--separator); padding-top: 14px; }
1263
+ .notes-share-dialog-danger strong, .notes-share-dialog-danger small { display: block; }
1264
+ .notes-share-dialog-danger strong { color: var(--text); font-size: 11px; }
1265
+ .notes-share-dialog-danger small { margin-top: 2px; color: var(--text-tertiary); font-size: 10px; }
1170
1266
  .dialog.note-history-dialog { width: min(1040px, calc(100vw - 40px)); height: min(760px, calc(100dvh - 48px)); max-height: min(760px, calc(100dvh - 48px)); }
1171
1267
  .dialog.note-history-dialog .dialog-body { min-height: 0; display: flex; padding: 0; }
1172
1268
  .note-history-workspace { min-width: 0; min-height: 0; width: 100%; display: grid; grid-template-columns: 224px minmax(0, 1fr); overflow: hidden; background: var(--surface-editor); }
@@ -1205,7 +1301,7 @@ html,
1205
1301
  .notes-editor-error strong { color: var(--text); font-size: 13px; }
1206
1302
  @keyframes note-editor-loading { 0%, 100% { opacity: .25; transform: scaleX(.72); } 50% { opacity: .75; transform: scaleX(1); } }
1207
1303
  @media (prefers-reduced-motion: reduce) { .notes-editor-loading::before { animation: none; opacity: .55; } }
1208
- .notes-document-statusbar { position: relative; z-index: 2; min-height: 36px; display: flex; align-items: center; border-top: 1px solid var(--separator); padding: 6px 20px; background: var(--material-toolbar); -webkit-backdrop-filter: blur(16px) saturate(108%); backdrop-filter: blur(16px) saturate(108%); }
1304
+ .notes-document-statusbar { position: relative; z-index: 2; min-height: 36px; display: flex; align-items: center; border-top: 1px solid var(--separator); padding: 6px 20px; background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }
1209
1305
  .notes-document-statusbar .notes-file-info { width: 100%; }
1210
1306
  .notes-inline-viewer { min-width: 0; min-height: 0; display: grid; place-items: center; overflow: auto; padding: clamp(18px, 3vw, 36px); background: color-mix(in srgb, var(--surface-soft) 35%, var(--surface)); }
1211
1307
  .notes-inline-viewer.is-pdf { padding: 0; background: var(--surface-soft); }
@@ -1289,10 +1385,10 @@ html,
1289
1385
  gap: 14px;
1290
1386
  border-bottom: 1px solid var(--separator);
1291
1387
  padding: 5px 14px 5px 20px;
1292
- background: var(--material-toolbar);
1293
- box-shadow: inset 0 1px 0 var(--glass-rim-light);
1294
- -webkit-backdrop-filter: var(--glass-filter);
1295
- backdrop-filter: var(--glass-filter);
1388
+ background: transparent;
1389
+ box-shadow: none;
1390
+ -webkit-backdrop-filter: none;
1391
+ backdrop-filter: none;
1296
1392
  }
1297
1393
  .note-editor-loading { grid-template-rows: auto minmax(0, 1fr); }
1298
1394
  .editor-load-label { color: var(--text-tertiary); font-size: 10px; }
@@ -1680,257 +1776,13 @@ html,
1680
1776
  .toast.error { border-color: color-mix(in srgb, var(--danger) 45%, var(--border)); color: var(--danger); }
1681
1777
  @keyframes toast-in { from { opacity: 0; transform: translateY(7px); } }
1682
1778
 
1683
- /*
1684
- * Workspace effects
1685
- *
1686
- * This is the single visual contract for glass refraction, edge response,
1687
- * glare and directory entrance. Business renderers only provide stable item
1688
- * identities; the effects runtime owns observers and pointer tracking.
1689
- */
1690
- .knowledge-glass-filter-bank {
1691
- position: fixed;
1692
- width: 0;
1693
- height: 0;
1694
- overflow: hidden;
1695
- pointer-events: none;
1696
- }
1697
-
1698
- .knowledge-glass-surface {
1699
- transform: translateZ(0);
1700
- -webkit-backdrop-filter: blur(18px) saturate(1.18) contrast(1.025);
1701
- backdrop-filter: blur(18px) saturate(1.18) contrast(1.025);
1702
- }
1703
-
1704
- .knowledge-glass-surface[data-knowledge-glass="svg"] {
1705
- -webkit-backdrop-filter: var(--knowledge-glass-filter) saturate(1.18) contrast(1.025);
1706
- backdrop-filter: var(--knowledge-glass-filter) saturate(1.18) contrast(1.025);
1707
- }
1708
-
1709
- .sidebar.knowledge-glass-surface {
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;
1714
- }
1715
-
1716
- .topbar.knowledge-glass-surface,
1717
- .note-editor-toolbar.knowledge-glass-surface,
1718
- .notes-document-toolbar.knowledge-glass-surface,
1719
- .notes-content-header.knowledge-glass-surface {
1720
- background: var(--material-toolbar);
1721
- box-shadow: none;
1722
- -webkit-backdrop-filter: none;
1723
- backdrop-filter: none;
1724
- }
1725
-
1726
- .note-tree-panel.knowledge-glass-surface,
1727
- .notes-browser.knowledge-glass-surface {
1728
- background: var(--surface-pane);
1729
- box-shadow: none;
1730
- -webkit-backdrop-filter: none;
1731
- backdrop-filter: none;
1732
- }
1733
-
1734
- .knowledge-card-surface {
1735
- --knowledge-pointer-x: 50%;
1736
- --knowledge-pointer-y: 50%;
1737
- --knowledge-card-spotlight: transparent;
1738
- border-color: var(--glass-border);
1739
- background:
1740
- radial-gradient(
1741
- circle 210px at var(--knowledge-pointer-x) var(--knowledge-pointer-y),
1742
- var(--knowledge-card-spotlight) 0%,
1743
- transparent 72%
1744
- ),
1745
- linear-gradient(145deg, color-mix(in srgb, var(--card-highlight) 22%, transparent), transparent 58%),
1746
- var(--card-fill);
1747
- -webkit-backdrop-filter: blur(18px) saturate(1.08) contrast(1.02);
1748
- backdrop-filter: blur(18px) saturate(1.08) contrast(1.02);
1749
- box-shadow:
1750
- inset 0 1px 0 var(--card-highlight),
1751
- inset 0 -1px 0 var(--glass-rim-shadow),
1752
- 0 2px 6px rgb(0 0 0 / 4%),
1753
- 0 10px 28px rgb(0 0 0 / 7%);
1754
- transition:
1755
- border-color var(--motion-base) ease,
1756
- box-shadow 220ms var(--ease-out),
1757
- transform 220ms var(--ease-out);
1758
- }
1759
-
1760
- @media (hover: hover) {
1761
- .knowledge-card-surface:hover {
1762
- --knowledge-card-spotlight: color-mix(in srgb, var(--card-highlight) 64%, transparent);
1763
- border-color: color-mix(in srgb, var(--border) 68%, var(--text-tertiary));
1764
- box-shadow:
1765
- inset 0 1px 0 var(--card-highlight),
1766
- inset 0 -1px 0 var(--glass-rim-shadow),
1767
- 0 3px 8px rgb(0 0 0 / 6%),
1768
- 0 14px 34px rgb(0 0 0 / 10%);
1769
- transform: translateY(-1px);
1770
- }
1771
- }
1772
-
1773
- .knowledge-border-surface {
1774
- --knowledge-border-angle: 0deg;
1775
- --knowledge-border-proximity: 0;
1776
- position: relative;
1777
- isolation: isolate;
1778
- }
1779
-
1780
- .knowledge-border-surface::before,
1781
- .knowledge-border-surface::after {
1782
- position: absolute;
1783
- border-radius: inherit;
1784
- pointer-events: none;
1785
- content: "";
1786
- }
1787
-
1788
- .knowledge-border-surface::before {
1789
- z-index: 20;
1790
- inset: 0;
1791
- padding: 1px;
1792
- background: conic-gradient(
1793
- from var(--knowledge-border-angle),
1794
- var(--interaction-glow-core) 0deg,
1795
- var(--interaction-glow-soft) 10deg,
1796
- transparent 27deg 333deg,
1797
- var(--interaction-glow-soft) 350deg,
1798
- var(--interaction-glow-core) 360deg
1799
- );
1800
- opacity: calc(var(--knowledge-border-proximity) * .96);
1801
- transition: opacity 150ms ease-out;
1802
- -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
1803
- -webkit-mask-composite: xor;
1804
- mask-composite: exclude;
1805
- }
1806
-
1807
- .knowledge-border-surface::after {
1808
- z-index: 19;
1809
- inset: -3px;
1810
- padding: 3px;
1811
- background: conic-gradient(
1812
- from var(--knowledge-border-angle),
1813
- var(--interaction-glow-haze) 0deg,
1814
- transparent 22deg 338deg,
1815
- var(--interaction-glow-haze) 360deg
1816
- );
1817
- filter: blur(3px);
1818
- opacity: calc(var(--knowledge-border-proximity) * .42);
1819
- transition: opacity 210ms ease-out;
1820
- -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
1821
- -webkit-mask-composite: xor;
1822
- mask-composite: exclude;
1823
- }
1824
-
1825
- .knowledge-glare-surface {
1826
- position: relative;
1827
- isolation: isolate;
1828
- overflow: hidden;
1829
- }
1830
-
1831
- .knowledge-glare-surface::after {
1832
- position: absolute;
1833
- z-index: 5;
1834
- top: -65%;
1835
- bottom: -65%;
1836
- left: -62%;
1837
- width: 44%;
1838
- border-radius: 45%;
1839
- background: linear-gradient(
1840
- 90deg,
1841
- transparent 0%,
1842
- color-mix(in srgb, var(--interaction-glare-light) 24%, transparent) 32%,
1843
- var(--interaction-glare-light) 48%,
1844
- var(--interaction-glare-rim) 61%,
1845
- transparent 78%
1846
- );
1847
- opacity: 0;
1848
- transform: skewX(-18deg) translate3d(0, 0, 0);
1849
- pointer-events: none;
1850
- transition:
1851
- opacity 150ms ease-out,
1852
- transform 760ms cubic-bezier(.2, .72, .2, 1);
1853
- content: "";
1854
- }
1855
-
1856
- .knowledge-glare-surface:is(:hover, :focus-visible, :focus-within):not(:disabled)::after {
1857
- opacity: .92;
1858
- transform: skewX(-18deg) translate3d(390%, 0, 0);
1859
- }
1860
-
1861
- .knowledge-list-reveal {
1862
- opacity: 0;
1863
- translate: 0 16px;
1864
- scale: .97;
1865
- transform-origin: center top;
1866
- transition:
1867
- opacity 280ms ease-out var(--knowledge-list-delay, 0ms),
1868
- translate 360ms var(--ease-out) var(--knowledge-list-delay, 0ms),
1869
- scale 360ms var(--ease-out) var(--knowledge-list-delay, 0ms);
1870
- will-change: opacity, translate, scale;
1871
- }
1872
-
1873
- .knowledge-list-reveal.is-visible {
1874
- opacity: 1;
1875
- translate: 0 0;
1876
- scale: 1;
1877
- will-change: auto;
1878
- }
1879
-
1880
- .base-grid .knowledge-list-reveal {
1881
- translate: 0 20px;
1882
- scale: .96;
1883
- transition-duration: 320ms, 420ms, 420ms;
1884
- }
1885
-
1886
- .base-grid .knowledge-list-reveal.is-visible {
1887
- translate: 0 0;
1888
- scale: 1;
1889
- }
1890
-
1891
- .base-card.is-archived.knowledge-list-reveal { opacity: 0; }
1892
- .base-card.is-archived.knowledge-list-reveal.is-visible { opacity: .78; }
1893
-
1894
- .knowledge-animated-list[data-scroll-top="true"][data-scroll-bottom="false"] {
1895
- -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 24px), transparent 100%);
1896
- mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 24px), transparent 100%);
1897
- }
1898
-
1899
- .knowledge-animated-list[data-scroll-top="false"][data-scroll-bottom="true"] {
1900
- -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 18px, #000 100%);
1901
- mask-image: linear-gradient(to bottom, transparent 0, #000 18px, #000 100%);
1902
- }
1903
-
1904
- .knowledge-animated-list[data-scroll-top="false"][data-scroll-bottom="false"] {
1905
- -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 18px, #000 calc(100% - 24px), transparent 100%);
1906
- mask-image: linear-gradient(to bottom, transparent 0, #000 18px, #000 calc(100% - 24px), transparent 100%);
1907
- }
1908
-
1909
- @media (hover: none), (pointer: coarse) {
1910
- .knowledge-glare-surface::after,
1911
- .knowledge-border-surface::before,
1912
- .knowledge-border-surface::after { display: none; }
1913
- }
1914
-
1915
1779
  @media (prefers-reduced-transparency: reduce) {
1916
- .sidebar, .topbar, .note-tree-panel, .notes-browser, .notes-content-header, .notes-document-toolbar, .notes-document-statusbar, .note-editor-toolbar, .dialog-backdrop {
1780
+ .sidebar, .main, .topbar, .note-tree-panel, .notes-browser, .notes-content-header, .notes-document-toolbar, .notes-document-statusbar, .note-editor-toolbar, .dialog-backdrop {
1917
1781
  -webkit-backdrop-filter: none;
1918
1782
  backdrop-filter: none;
1919
1783
  }
1920
- .sidebar, .topbar, .note-tree-panel, .notes-browser, .notes-content-header, .notes-document-toolbar, .notes-document-statusbar, .note-editor-toolbar { background: var(--surface); }
1921
- .knowledge-glass-surface,
1922
- .knowledge-glass-surface[data-knowledge-glass="svg"] {
1923
- -webkit-backdrop-filter: none;
1924
- backdrop-filter: none;
1925
- }
1926
- .knowledge-card-surface {
1927
- background: var(--surface-raised);
1928
- -webkit-backdrop-filter: none;
1929
- backdrop-filter: none;
1930
- }
1931
- .knowledge-border-surface::before,
1932
- .knowledge-border-surface::after,
1933
- .knowledge-glare-surface::after { display: none; }
1784
+ .sidebar, .main { background: var(--surface); }
1785
+ .topbar, .note-tree-panel, .notes-browser, .notes-content-header, .notes-document-toolbar, .notes-document-statusbar, .note-editor-toolbar { background: transparent; }
1934
1786
  }
1935
1787
 
1936
1788
  @media (max-width: 980px) {
@@ -2091,6 +1943,8 @@ html,
2091
1943
  .note-history-mode, .note-history-detail-actions .button { min-width: 0; min-height: 44px; padding-inline: 5px; }
2092
1944
  .note-history-content { padding: 18px max(14px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left)); }
2093
1945
  .dialog.note-history-dialog { width: 100%; height: 100dvh; max-height: none; }
1946
+ .notes-file-table { overflow: visible; }
1947
+ .notes-file-columns { display: none; }
2094
1948
  .notes-file-list { min-width: 0; display: grid; gap: 8px; padding: 10px 12px max(28px, calc(16px + env(safe-area-inset-bottom))); }
2095
1949
  .notes-file-row { min-width: 0; min-height: 0; grid-template-columns: minmax(0, 1fr) auto; gap: 7px 12px; border: 1px solid var(--separator); border-radius: 12px; padding: 10px 11px; background: var(--material-panel); box-shadow: var(--shadow-soft); }
2096
1950
  .notes-file-row:hover { background: var(--material-panel); }
@@ -2105,6 +1959,24 @@ html,
2105
1959
  .notes-file-row > .notes-file-size { grid-column: 2; justify-self: end; }
2106
1960
  .notes-file-actions { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 5px; opacity: 1; pointer-events: auto; }
2107
1961
  .notes-file-actions .button { min-width: 0; width: 100%; padding-inline: 5px; }
1962
+ .notes-document-statusbar { min-height: 52px; }
1963
+ .notes-file-info { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px 12px; }
1964
+ .notes-file-info-item { grid-template-columns: 32px minmax(0, 1fr); }
1965
+ .shares-heading { align-items: stretch; flex-direction: column; }
1966
+ .shares-heading-actions { display: grid; grid-template-columns: minmax(0, 1fr) auto; }
1967
+ .shares-heading-actions .button { min-height: 44px; }
1968
+ .notes-share-list { display: grid; gap: 8px; padding: 10px 12px max(28px, calc(16px + env(safe-area-inset-bottom))); }
1969
+ .notes-share-row { min-height: 0; grid-template-columns: minmax(0, 1fr); align-items: stretch; gap: 9px; border: 1px solid var(--separator); border-radius: 12px; padding: 11px; background: var(--material-panel); box-shadow: var(--shadow-soft); }
1970
+ .notes-share-row:hover { background: var(--material-panel); }
1971
+ .notes-share-main { min-height: 54px; grid-template-columns: 46px minmax(0, 1fr); }
1972
+ .notes-share-main strong { font-size: 14px; }
1973
+ .notes-share-main small, .notes-share-meta { font-size: 11px; }
1974
+ .notes-share-actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); justify-content: stretch; }
1975
+ .notes-share-actions .button { width: 100%; min-width: 0; min-height: 44px; padding-inline: 5px; }
1976
+ .share-import-url-row { grid-template-columns: minmax(0, 1fr); }
1977
+ .share-import-url-row .button { width: 100%; min-height: 44px; }
1978
+ .share-import-preview { grid-template-columns: 44px minmax(0, 1fr); }
1979
+ .share-import-preview > .badge { grid-column: 2; justify-self: start; }
2108
1980
  .button, .tab, .nav-button, .note-tree-base, .note-tree-document, .note-tree-new, .note-tree-more, .notes-search-row, .check-option, .range-row { min-height: 44px; touch-action: manipulation; }
2109
1981
  .notes-breadcrumb button { min-height: 44px; margin-block: -12px; touch-action: manipulation; }
2110
1982
  .note-add-button, .pane-toggle-button, .mobile-menu { width: 44px; min-width: 44px; min-height: 44px; }
@@ -2122,6 +1994,10 @@ html,
2122
1994
  .toast { max-width: none; }
2123
1995
  }
2124
1996
 
1997
+ @media (min-width: 761px) and (max-width: 1120px) {
1998
+ .notes-file-info { grid-template-columns: repeat(2, minmax(150px, 1fr)); }
1999
+ }
2000
+
2125
2001
  @media (max-width: 520px) {
2126
2002
  .api-access-heading, .api-access-actions, .api-address-row { align-items: stretch; flex-direction: column; }
2127
2003
  .login-page { padding: 16px; }
@@ -2163,8 +2039,13 @@ html,
2163
2039
  .notes-agent-capabilities { grid-template-columns: 1fr; }
2164
2040
  .notes-content-title { align-items: stretch; flex-direction: column; }
2165
2041
  .notes-content-actions .button { flex: 1 1 auto; }
2042
+ .notes-share-link-row { grid-template-columns: minmax(0, 1fr); }
2043
+ .notes-share-link-row .button { width: 100%; min-height: 44px; }
2044
+ .notes-share-dialog-danger { align-items: stretch; flex-direction: column; }
2045
+ .notes-share-dialog-danger .button { width: 100%; min-height: 44px; }
2166
2046
  .notes-document-statusbar { padding-inline: 14px; }
2167
- .notes-file-info { gap: 3px 14px; }
2047
+ .notes-file-info { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px 12px; }
2048
+ .notes-file-info-item { grid-template-columns: 32px minmax(0, 1fr); }
2168
2049
  .notes-document-title { padding-top: 24px; }
2169
2050
  }
2170
2051
 
@@ -2187,10 +2068,6 @@ html,
2187
2068
 
2188
2069
  @media (prefers-reduced-motion: reduce) {
2189
2070
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
2190
- .knowledge-list-reveal { opacity: 1; translate: 0 0; scale: 1; }
2191
- .knowledge-glare-surface::after,
2192
- .knowledge-border-surface::before,
2193
- .knowledge-border-surface::after { display: none; }
2194
2071
  }
2195
2072
 
2196
2073
  @media (forced-colors: active) {
@@ -1,13 +0,0 @@
1
- interface WorkspaceEffectsApi {
2
- refresh(root?: ParentNode): void;
3
- destroy(): void;
4
- }
5
- declare global {
6
- interface Window {
7
- DshKnowledgeEffects?: WorkspaceEffectsApi;
8
- }
9
- }
10
- declare function refresh(root?: ParentNode): void;
11
- declare function destroy(): void;
12
- export { destroy, refresh };
13
- //# sourceMappingURL=web-workspace-effects.d.ts.map