Fix bucket object browser nested object action button; Improve UX

This commit is contained in:
2025-12-22 13:17:27 +08:00
parent 992d9eccd9
commit 86c04f85f6
3 changed files with 92 additions and 6 deletions

View File

@@ -517,6 +517,22 @@ code {
overflow-y: auto;
}
.objects-table-container thead {
position: sticky;
top: 0;
z-index: 10;
}
.objects-table-container thead th {
background-color: #f8f9fa;
border-bottom: 1px solid var(--myfsio-card-border);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
[data-theme='dark'] .objects-table-container thead th {
background-color: #1e293b;
}
.btn-group form { display: inline; }
.font-monospace { font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace; }