Update admin UI with real API integration and secret management

This commit is contained in:
Timur Gordon
2025-10-31 02:29:29 +01:00
parent e493085892
commit 49d36485d0
12 changed files with 827 additions and 115 deletions

View File

@@ -1225,6 +1225,17 @@ button:disabled {
padding: 0.5rem;
margin-bottom: 0.5rem;
overflow-x: auto;
transition: all 0.2s ease;
}
.key-secret.clickable {
cursor: pointer;
}
.key-secret.clickable:hover {
background: rgba(16, 185, 129, 0.1);
border-color: var(--accent);
transform: translateY(-1px);
}
.key-secret code {
@@ -1238,3 +1249,24 @@ button:disabled {
font-size: 0.75rem;
color: var(--text-muted);
}
.key-delete-btn {
background: transparent;
border: none;
color: var(--text-muted);
font-size: 1.5rem;
line-height: 1;
cursor: pointer;
padding: 0;
margin-left: auto;
transition: color 0.2s ease;
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
}
.key-delete-btn:hover {
color: #ef4444;
}