Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#2316 の変更提案プルリクエスト #2

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion src/components/Sing/SideBar/TrackItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@
:disable="uiLocked"
@blur="updateTrackName"
/>
<div v-else>{{ track.name }}</div>
<div v-else class="walkaround-unselected-track-name">
{{ track.name }}
</div>
</QItemLabel>
<QItemLabel v-if="trackCharacter" caption class="singer-name">
<!-- ミュート中はアイコンを表示 -->
Expand Down Expand Up @@ -410,4 +412,11 @@ const singerName = computed(() => {
overflow: hidden;
text-overflow: ellipsis;
}

// 選択されていないトラックのトラック名の表示をQInputの見た目に合わせる
.walkaround-unselected-track-name {
margin-bottom: 2px;
margin-top: 3px;
letter-spacing: 0.00937em;
}
</style>
Loading