Skip to content

Commit

Permalink
選択されていないトラックのトラック名の表示をQInputの見た目に合わせる
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba committed Oct 25, 2024
1 parent 76fe84d commit 5671f0a
Showing 1 changed file with 10 additions and 1 deletion.
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>

0 comments on commit 5671f0a

Please sign in to comment.