Skip to content

Commit

Permalink
Merge pull request #340 from VincentSan/main
Browse files Browse the repository at this point in the history
Disable interaction and selection for background images
  • Loading branch information
MWedl authored Oct 18, 2024
2 parents dd6b4fe + c1a502a commit 04632db
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions frontend/src/components/ListView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -143,5 +143,7 @@ defineExpose({
margin-top: 1rem;
margin-left: auto;
margin-right: auto;
pointer-events: none;
user-select: none;
}
</style>
2 changes: 2 additions & 0 deletions frontend/src/error.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,7 @@ h1 {
.img-raptor {
display: block;
width: 25rem;
pointer-events: none;
user-select: none;
}
</style>
2 changes: 2 additions & 0 deletions frontend/src/pages/designs/[projectTypeId]/notes.vue
Original file line number Diff line number Diff line change
Expand Up @@ -188,5 +188,7 @@ async function selectNote(note: NoteBase|null) {
width: 30em;
max-width: 50%;
max-height: 50vh;
pointer-events: none;
user-select: none;
}
</style>
2 changes: 2 additions & 0 deletions frontend/src/pages/notes/personal/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,7 @@
width: 30em;
max-width: 50%;
max-height: 50vh;
pointer-events: none;
user-select: none;
}
</style>
2 changes: 2 additions & 0 deletions frontend/src/pages/projects/[projectId]/notes/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,7 @@
width: 30em;
max-width: 50%;
max-height: 50vh;
pointer-events: none;
user-select: none;
}
</style>
2 changes: 2 additions & 0 deletions frontend/src/pages/projects/[projectId]/reporting/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,7 @@
width: 30em;
max-width: 50%;
max-height: 50vh;
pointer-events: none;
user-select: none;
}
</style>

0 comments on commit 04632db

Please sign in to comment.