Skip to content

Commit

Permalink
Fix: シーケンサのスクロールバーのカーソルをデフォルトになるようにする (VOICEVOX#2397)
Browse files Browse the repository at this point in the history
  • Loading branch information
romot-co authored Dec 6, 2024
1 parent 47fc821 commit c707aae
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/components/Sing/ScoreSequencer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1925,6 +1925,14 @@ const contextMenuData = computed<ContextMenuItemData[]>(() => {
backface-visibility: hidden;
overflow: auto;
position: relative;
// スクロールバー上のカーソルが要素のものになってしまうためデフォルトカーソルにする
&::-webkit-scrollbar-thumb:hover,
&::-webkit-scrollbar-thumb:active,
&::-webkit-scrollbar-track:hover,
&::-webkit-scrollbar-track:active {
cursor: default;
}
}
.sequencer-grid {
Expand Down

0 comments on commit c707aae

Please sign in to comment.