회의록: 복사 버튼 청록 스타일 및 툴팁(title)
Made-with: Cursor
This commit is contained in:
@@ -2808,11 +2808,37 @@ body.ai-explore-dev-guest .search-input:disabled {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.mm-minutes-edit,
|
||||
.mm-minutes-copy,
|
||||
.mm-minutes-cancel {
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
}
|
||||
/* 복사: 클립보드 동작이 드러나도록 청록 강조(저장 버튼과 구분) */
|
||||
.mm-minutes-copy {
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
padding: 6px 14px;
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
color: #0f766e;
|
||||
background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%);
|
||||
border: 1px solid #5eead4;
|
||||
box-shadow: 0 1px 2px rgba(15, 118, 110, 0.12);
|
||||
}
|
||||
.mm-minutes-copy:hover {
|
||||
color: #0d9488;
|
||||
background: linear-gradient(180deg, #d1fae5 0%, #a7f3d0 100%);
|
||||
border-color: #2dd4bf;
|
||||
box-shadow: 0 2px 4px rgba(15, 118, 110, 0.15);
|
||||
}
|
||||
.mm-minutes-copy:active {
|
||||
transform: translateY(1px);
|
||||
box-shadow: 0 1px 1px rgba(15, 118, 110, 0.12);
|
||||
}
|
||||
.mm-minutes-copy:disabled {
|
||||
opacity: 0.55;
|
||||
cursor: not-allowed;
|
||||
transform: none;
|
||||
}
|
||||
.mm-minutes-apply {
|
||||
font-size: 13px;
|
||||
padding: 6px 14px;
|
||||
|
||||
@@ -189,7 +189,15 @@
|
||||
<button type="button" class="btn-ghost mm-minutes-edit" id="mmMinutesEdit">마크다운 편집</button>
|
||||
</div>
|
||||
<div class="mm-minutes-actions" id="mmMinutesActionsEdit" role="toolbar" aria-label="회의록 편집" hidden>
|
||||
<button type="button" class="btn-ghost mm-minutes-copy" id="mmMinutesCopy">복사</button>
|
||||
<button
|
||||
type="button"
|
||||
class="mm-minutes-copy"
|
||||
id="mmMinutesCopy"
|
||||
title="회의록을 복사합니다."
|
||||
aria-label="회의록을 복사합니다."
|
||||
>
|
||||
복사
|
||||
</button>
|
||||
<button type="button" class="top-action mm-minutes-apply" id="mmMinutesApply">저장</button>
|
||||
<button type="button" class="btn-ghost mm-minutes-cancel" id="mmMinutesCancel">취소</button>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user