Daniel.y commited on
Commit
06b9891
·
unverified ·
2 Parent(s): 6672d48 bd5f309

Merge pull request #1132 from danielaskdd/main

Browse files
lightrag/api/webui/assets/index-BMVv3U43.css DELETED
Binary file (52.6 kB)
 
lightrag/api/webui/assets/index-BSOt8Nur.css ADDED
Binary file (52.9 kB). View file
 
lightrag/api/webui/assets/{index-CchWw5nW.js → index-T7hdp_6t.js} RENAMED
Binary files a/lightrag/api/webui/assets/index-CchWw5nW.js and b/lightrag/api/webui/assets/index-T7hdp_6t.js differ
 
lightrag/api/webui/index.html CHANGED
Binary files a/lightrag/api/webui/index.html and b/lightrag/api/webui/index.html differ
 
lightrag_webui/src/components/graph/PropertiesView.tsx CHANGED
@@ -218,20 +218,20 @@ const NodePropertiesView = ({ node }: { node: NodeType }) => {
218
  <Button
219
  size="icon"
220
  variant="ghost"
221
- className="h-7 w-7 border border-gray-400 hover:bg-gray-200"
222
  onClick={handleExpandNode}
223
  tooltip={t('graphPanel.propertiesView.node.expandNode')}
224
  >
225
- <GitBranchPlus className="h-4 w-4 text-gray-700" />
226
  </Button>
227
  <Button
228
  size="icon"
229
  variant="ghost"
230
- className="h-7 w-7 border border-gray-400 hover:bg-gray-200"
231
  onClick={handlePruneNode}
232
  tooltip={t('graphPanel.propertiesView.node.pruneNode')}
233
  >
234
- <Scissors className="h-4 w-4 text-gray-900" />
235
  </Button>
236
  </div>
237
  </div>
 
218
  <Button
219
  size="icon"
220
  variant="ghost"
221
+ className="h-7 w-7 border border-gray-400 hover:bg-gray-200 dark:border-gray-600 dark:hover:bg-gray-700"
222
  onClick={handleExpandNode}
223
  tooltip={t('graphPanel.propertiesView.node.expandNode')}
224
  >
225
+ <GitBranchPlus className="h-4 w-4 text-gray-700 dark:text-gray-300" />
226
  </Button>
227
  <Button
228
  size="icon"
229
  variant="ghost"
230
+ className="h-7 w-7 border border-gray-400 hover:bg-gray-200 dark:border-gray-600 dark:hover:bg-gray-700"
231
  onClick={handlePruneNode}
232
  tooltip={t('graphPanel.propertiesView.node.pruneNode')}
233
  >
234
+ <Scissors className="h-4 w-4 text-gray-900 dark:text-gray-300" />
235
  </Button>
236
  </div>
237
  </div>