ui: project name full white; Org tab → Parties; Summary toggle inline with tabs
This commit is contained in:
parent
a9d40a31b5
commit
449a902b4d
|
|
@ -3,7 +3,7 @@
|
|||
<a href="/app/projects" class="text-2xl font-bold text-white tracking-tight"><span class="text-[#c9a84c]">Deal</span>space</a>
|
||||
<span class="text-white/20 text-lg">/</span>
|
||||
<div id="projectSwitcher" class="relative">
|
||||
<button id="projectSwitcherBtn" onclick="toggleProjectMenu()" class="flex items-center gap-1.5 text-xl font-semibold text-white hover:text-white/80 transition focus:outline-none">
|
||||
<button id="projectSwitcherBtn" onclick="toggleProjectMenu()" class="flex items-center gap-1.5 text-xl font-semibold text-white transition focus:outline-none">
|
||||
<span id="projectName">Loading...</span>
|
||||
<span style="font-size:10px;opacity:.5;margin-top:2px">▾</span>
|
||||
</button>
|
||||
|
|
@ -32,9 +32,12 @@
|
|||
</div>
|
||||
|
||||
<!-- Tabs -->
|
||||
<div class="flex gap-6 border-b border-white/[0.08] mb-6">
|
||||
<div class="flex items-end gap-6 border-b border-white/[0.08] mb-6">
|
||||
<button class="tab active pb-3 text-base font-medium transition" onclick="switchTab('requests', this)">Requests</button>
|
||||
<button class="tab pb-3 text-base font-medium text-[#94a3b8] transition" onclick="switchTab('orgs', this)">Organizations</button>
|
||||
<button class="tab pb-3 text-base font-medium text-[#94a3b8] transition" onclick="switchTab('orgs', this)">Parties</button>
|
||||
<div class="ml-auto pb-2">
|
||||
<button id="detailToggle" onclick="toggleDetailMode()" class="px-3 py-1 bg-white/[0.05] hover:bg-white/[0.08] text-[#94a3b8] hover:text-white rounded text-xs font-medium transition">Summary</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Requests Tab -->
|
||||
|
|
@ -45,9 +48,6 @@
|
|||
<button onclick="openImportModal()" class="px-4 py-2 bg-[#c9a84c] hover:bg-[#b8973f] text-[#0a1628] font-semibold rounded-lg text-sm transition">Import Checklist</button>
|
||||
</div>
|
||||
<div id="treeWrap" class="overflow-x-auto">
|
||||
<div class="flex items-center gap-2 mb-3">
|
||||
<button id="detailToggle" onclick="toggleDetailMode()" class="px-3 py-1.5 bg-white/[0.05] hover:bg-white/[0.08] text-[#94a3b8] hover:text-white rounded-lg text-xs font-medium transition">Summary</button>
|
||||
</div>
|
||||
<table id="reqTree">
|
||||
<thead>
|
||||
<tr>
|
||||
|
|
|
|||
Loading…
Reference in New Issue