diff --git a/lightrag/api/static/index.html b/lightrag/api/static/index.html
index 7865d6e7..66dc37bb 100644
--- a/lightrag/api/static/index.html
+++ b/lightrag/api/static/index.html
@@ -385,13 +385,12 @@
});
function addCopyButtons() {
- // Adds a copy button to all code tags
document.querySelectorAll('pre').forEach(pre => {
if (!pre.querySelector('.copy-button')) {
const button = document.createElement('button');
- button.className = 'copy-button absolute top-2 right-2 p-2 bg-slate-700 text-white rounded-md opacity-0 group-hover:opacity-100 transition-opacity';
+ button.className = 'copy-button absolute top-1 right-1 p-1 bg-slate-700/80 hover:bg-slate-700 text-white rounded text-xs opacity-0 group-hover:opacity-100 transition-opacity';
button.innerHTML = `
-