Skip to content

Commit

Permalink
Merge pull request cyruzzo#2288 from Azmoria/Fix---issue-where-some-u…
Browse files Browse the repository at this point in the history
…i-elements-were-able-to-be-unintentionally-'selected'-(text-highlight)

Fix - issue where some ui elements were able to be unintentionally 'selected' (text highlight)
  • Loading branch information
Azmoria committed Jun 29, 2024
2 parents 66f769f + 8680857 commit 2f44c5e
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions abovevtt.css
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,19 @@ button.daylight span.material-symbols-outlined {
.joindm {
position: relative;
}
#VTT{
-webkit-user-select: none;
user-select: none;
}

body > div {
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
#monster-stat-block,
.note,
.note-flyout{
-webkit-user-select: text;
-ms-user-select: text;
user-select: text;
}
.above_delete {
width: 400px;
}
Expand Down

0 comments on commit 2f44c5e

Please sign in to comment.