ToolCallHistory.css•792 B
.tool-call-history {
background: white;
border-radius: 8px;
padding: 16px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
height: 600px;
overflow-y: auto;
min-width: 300px;
}
.tool-call-history h3 {
margin-top: 0;
margin-bottom: 16px;
color: #333;
font-size: 16px;
font-weight: 600;
}
.empty-history {
color: #999;
text-align: center;
padding: 20px 10px;
font-size: 14px;
}
.tools-list {
display: flex;
flex-direction: column;
gap: 8px;
}
.tool-call-history::-webkit-scrollbar {
width: 8px;
}
.tool-call-history::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 4px;
}
.tool-call-history::-webkit-scrollbar-thumb {
background: #888;
border-radius: 4px;
}
.tool-call-history::-webkit-scrollbar-thumb:hover {
background: #555;
}