Skip to content

Commit

Permalink
コンフリクト解消
Browse files Browse the repository at this point in the history
  • Loading branch information
Romot authored and Romot committed Jul 20, 2024
1 parent c5ef5cb commit 2e4c422
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 4 deletions.
45 changes: 42 additions & 3 deletions src/components/Sing/ScoreSequencer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1469,11 +1469,50 @@ const contextMenuData = computed<ContextMenuItemData[]>(() => {
}
}
.sequencer-grid {
display: block;
pointer-events: none;
}
.sequencer-grid-cell {
display: block;
stroke: var(--md-sys-color-surface-variant);
stroke-width: 1;
}
.sequencer-grid-octave-cell {
stroke: var(--md-sys-color-outline);
}
.sequencer-grid-octave-line {
backface-visibility: hidden;
stroke: var(--md-sys-color-outline);
}
.sequencer-grid-cell-white {
fill: var(--md-sys-color-background);
}
.sequencer-grid-cell-black {
fill: var(--md-sys-color-surface-variant);
}
.sequencer-grid-measure-line {
backface-visibility: hidden;
stroke: var(--md-sys-color-outline);
}
.sequencer-grid-beat-line {
backface-visibility: hidden;
stroke: var(--md-sys-color-outline);
opacity: 0.6;
}
.sequencer-guideline {
position: absolute;
top: 0;
left: -0.5px;
width: 1px;
left: -1px;
width: 2px;
background: var(--md-sys-color-secondary-container);
pointer-events: none;
}
Expand Down Expand Up @@ -1513,7 +1552,7 @@ const contextMenuData = computed<ContextMenuItemData[]>(() => {
pointer-events: none;
position: absolute;
border: 1px dashed var(--md-sys-color-secondary);
background: rgba(var(--md-sys-color-secondary-container), 0.5);
background: var(--md-sys-color-secondary-container);
}
.cursor-draw {
Expand Down
1 change: 0 additions & 1 deletion src/helpers/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ import {
ColorSchemeCorePalettes,
ColorSchemeAdjustment,
CustomPaletteColor,
CustomDefinedColor,
} from "@/type/preload";

const SCHEME_CONSTRUCTORS = {
Expand Down

0 comments on commit 2e4c422

Please sign in to comment.