revert(fe): restore original search input bar in header
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 81 KiB |
@@ -93,42 +93,24 @@ const toggleTheme = () => {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Quick Links Toolbar (주요 화면 바로가기 퀵 툴바) -->
|
<!-- Search bar -->
|
||||||
<nav class="ks-header__quick-toolbar" aria-label="주요 화면 빠른 이동">
|
<div class="ks-header__search">
|
||||||
<span class="ks-header__quick-label">⚡ 빠른메뉴:</span>
|
<input
|
||||||
|
v-model="searchQuery"
|
||||||
|
type="text"
|
||||||
|
class="ks-header__search-input"
|
||||||
|
placeholder="검색..."
|
||||||
|
@keyup.enter="handleSearch"
|
||||||
|
/>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="ks-header__quick-btn"
|
class="ks-header__search-btn"
|
||||||
title="트레이딩 모델 마스터"
|
aria-label="검색"
|
||||||
@click="router.push('/model-ops/models-master')"
|
@click="handleSearch"
|
||||||
>
|
>
|
||||||
📂 모델 마스터
|
🔍
|
||||||
</button>
|
</button>
|
||||||
<button
|
</div>
|
||||||
type="button"
|
|
||||||
class="ks-header__quick-btn"
|
|
||||||
title="데이터 품질 검증"
|
|
||||||
@click="router.push('/ops/data-quality')"
|
|
||||||
>
|
|
||||||
📊 데이터 품질
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
class="ks-header__quick-btn"
|
|
||||||
title="Shadow Run 실행/추적"
|
|
||||||
@click="router.push('/model-ops/shadow-runs')"
|
|
||||||
>
|
|
||||||
⚡ Shadow Run
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
class="ks-header__quick-btn"
|
|
||||||
title="결재/승인 워크벤치"
|
|
||||||
@click="router.push('/approvals/workbench')"
|
|
||||||
>
|
|
||||||
📝 결재 워크벤치
|
|
||||||
</button>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<!-- Right side actions -->
|
<!-- Right side actions -->
|
||||||
<div class="ks-header__end">
|
<div class="ks-header__end">
|
||||||
@@ -321,44 +303,48 @@ const toggleTheme = () => {
|
|||||||
color: var(--color-primary-500);
|
color: var(--color-primary-500);
|
||||||
}
|
}
|
||||||
|
|
||||||
.ks-header__quick-toolbar {
|
.ks-header__search {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 6px;
|
|
||||||
flex: 1;
|
flex: 1;
|
||||||
max-width: 600px;
|
max-width: 300px;
|
||||||
|
background-color: var(--color-background-primary);
|
||||||
|
border: 1px solid var(--color-border-primary);
|
||||||
|
border-radius: var(--border-radius-base);
|
||||||
|
padding: 0 var(--spacing-3);
|
||||||
|
gap: var(--spacing-2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.ks-header__quick-label {
|
.ks-header__search-input {
|
||||||
font-size: 11px;
|
flex: 1;
|
||||||
font-weight: 700;
|
border: none;
|
||||||
color: var(--ks-color-action);
|
background: transparent;
|
||||||
white-space: nowrap;
|
outline: none;
|
||||||
margin-right: 2px;
|
color: var(--color-text-primary);
|
||||||
|
font-size: var(--font-size-sm);
|
||||||
|
padding: var(--spacing-2) 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ks-header__quick-btn {
|
.ks-header__search-input::placeholder {
|
||||||
display: inline-flex;
|
color: var(--color-text-tertiary);
|
||||||
align-items: center;
|
}
|
||||||
gap: 4px;
|
|
||||||
height: 24px;
|
.ks-header__search-btn {
|
||||||
padding: 0 8px;
|
background: transparent;
|
||||||
background: var(--ks-color-surface);
|
border: none;
|
||||||
border: 1px solid var(--ks-color-neutral-300);
|
|
||||||
border-radius: var(--ks-radius-sm);
|
|
||||||
color: var(--ks-color-neutral-700);
|
|
||||||
font-size: 11px;
|
|
||||||
font-weight: 600;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
white-space: nowrap;
|
font-size: 16px;
|
||||||
transition: all 0.15s ease;
|
color: var(--color-primary-500);
|
||||||
|
padding: var(--spacing-1);
|
||||||
|
transition: all var(--transition-base);
|
||||||
}
|
}
|
||||||
|
|
||||||
.ks-header__quick-btn:hover {
|
.ks-header__search-btn:hover {
|
||||||
background: #e0f2fe;
|
color: var(--color-primary-600);
|
||||||
color: var(--ks-color-action);
|
}
|
||||||
border-color: var(--ks-color-action);
|
|
||||||
box-shadow: 0 1px 2px rgba(37, 99, 235, 0.12);
|
.ks-header__search-btn:active {
|
||||||
|
color: var(--color-primary-700);
|
||||||
}
|
}
|
||||||
|
|
||||||
.ks-header__end {
|
.ks-header__end {
|
||||||
|
|||||||
Reference in New Issue
Block a user