Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d461f8ca42 |
+1
-1
@@ -1 +1 @@
|
||||
1.1.1
|
||||
1.1.2
|
||||
|
||||
@@ -1296,14 +1296,18 @@ select {
|
||||
Fileshare (Baum-Navigation + Vorschau)
|
||||
========================================================================== */
|
||||
|
||||
.fileshare-layout { display: flex; align-items: flex-start; gap: 16px; }
|
||||
.fileshare-main { flex: 1; min-width: 0; }
|
||||
/* align-items:stretch (statt flex-start) + die main-Seite selbst als
|
||||
Flex-Spalte mit table-wrap{flex:1}, damit beide Kacheln (Baum links,
|
||||
Tabelle rechts) immer gleich hoch sind, unabhängig davon welche Seite
|
||||
gerade mehr Inhalt hat. */
|
||||
.fileshare-layout { display: flex; align-items: stretch; gap: 16px; }
|
||||
.fileshare-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
|
||||
.fileshare-main .table-wrap { flex: 1; }
|
||||
|
||||
.fileshare-tree {
|
||||
flex: 0 0 260px;
|
||||
max-width: 260px;
|
||||
padding: 14px;
|
||||
max-height: 70vh;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.fileshare-tree-title {
|
||||
|
||||
@@ -46,15 +46,7 @@
|
||||
</div>
|
||||
|
||||
<div class="fileshare-main">
|
||||
<div class="flex gap-2" style="align-items:center; margin-bottom:14px; flex-wrap:wrap;">
|
||||
<a href="{{ url_for('fileshare', share=selected_share) }}" class="mono" style="font-size:13px; font-weight:600;">{{ selected_share }}</a>
|
||||
{% for b in breadcrumbs %}
|
||||
<span class="text-faint">/</span>
|
||||
<a href="{{ url_for('fileshare', share=selected_share, path=b.path) }}" class="mono" style="font-size:13px;">{{ b.name }}</a>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
<div class="table-wrap" style="margin-bottom:16px;">
|
||||
<div class="table-wrap">
|
||||
<div class="table-toolbar">
|
||||
<div class="search-input">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"/><path d="M21 21l-4.35-4.35"/></svg>
|
||||
|
||||
Reference in New Issue
Block a user