Skip to content

Commit

Permalink
enhance(frontend): 노트에 여러 장의 이미지가 있을 때 미디어 탭에서 이미지 수를 숫자로 표시함
Browse files Browse the repository at this point in the history
  • Loading branch information
noridev committed Jan 6, 2025
1 parent 106e21f commit 9492b1e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG_CHERRYPICK.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ Misskey의 전체 변경 사항을 확인하려면, [CHANGELOG.md#2024xx](CHANGE

### Client
- Enhance: 사용자 페이지에서 `이름`, `자기소개`, `팔로우 메시지`, `추가 정보`에 포함된 외부 이모지를 가져올 수 있음
- Enhance: 노트에 여러 장의 이미지가 있을 때 미디어 탭에서 이미지 수를 숫자로 표시함
- Fix: 노트 헤더의 사용자 이름을 클릭하면 페이지가 중복으로 이동됨
- Fix: CherryPick 클라이언트 업데이트 알림이 잘못 반환될 수 있음
- 출시 전 빌드 태그가 고려되지 않음(`alpha`, `beta`, `rc`)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ SPDX-License-Identifier: AGPL-3.0-only
/>
</MkA>
<div v-if="files.files.length > 1" :class="$style.multiple">
<span style="font-size: initial; text-align: center; margin-right: 0.25em;">{{ files.files.length }}</span>
<i class="ti ti-box-multiple"></i>
</div>
</div>
Expand Down Expand Up @@ -147,13 +148,16 @@ html[data-color-scheme=light] .visible {
}

.multiple {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
top: 10px;
right: 10px;
font-size: 1.45em;
color: #fff;
opacity: .9;
filter: drop-shadow(0 0 1.5px #606060);
filter: drop-shadow(0 0 1.5px #6060608a);
}

@container (max-width: 785px) {
Expand Down

0 comments on commit 9492b1e

Please sign in to comment.