릴리스: v1.2.17 에디터 우측 패널 래퍼 제거

This commit is contained in:
2026-03-30 17:15:50 +09:00
parent 14a6823c3e
commit ed4023d1bd
7 changed files with 17 additions and 33 deletions

View File

@@ -785,7 +785,7 @@ onUnmounted(() => {
</section>
<Teleport :to="localRightRailTarget">
<aside v-show="globalRightRailOpen" class="editorSidebar">
<template v-if="globalRightRailOpen">
<div class="editorSidebar__section">
<div class="editorSidebar__label">Title</div>
<input v-model="title" class="editorSidebar__input" placeholder="Title Text" :readonly="!canEdit" />
@@ -868,7 +868,7 @@ onUnmounted(() => {
{{ isRequestingTemplate ? '요청중...' : '템플릿 업데이트 요청' }}
</button>
</div>
</aside>
</template>
</Teleport>
</template>
</template>
@@ -1354,34 +1354,6 @@ onUnmounted(() => {
position: sticky;
top: 14px;
}
.editorSidebar {
display: grid;
align-content: start;
gap: 14px;
min-width: 0;
padding: 14px 12px;
border-radius: 22px;
border: 1px solid rgba(255, 255, 255, 0.08);
background: linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(12, 12, 12, 0.96));
position: sticky;
top: 14px;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
transition:
opacity 220ms ease,
transform 220ms ease,
padding 220ms ease,
border-color 220ms ease,
background 220ms ease;
}
.layout--railClosed .editorSidebar {
opacity: 0;
transform: translateX(18px);
pointer-events: none;
overflow: hidden;
padding-left: 0;
padding-right: 0;
border-color: transparent;
}
.editorSidebar__section {
display: grid;
gap: 10px;
@@ -1597,8 +1569,7 @@ onUnmounted(() => {
.row {
grid-template-columns: 150px 1fr;
}
.sidebar,
.editorSidebar {
.sidebar {
position: static;
}
.editorSidebar__actionGrid {