Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
This is due to my previous change which included the use of a poorly…
… researched 'user-select: all' to unset a 'user-select'. The problem is that all does something else altogether: 'The content of the element shall be selected atomically: If a selection would contain part of the element, then the selection must contain the entire element including all its descendants. If a double-click or context-click occurred in sub-elements, the highest ancestor with this value will be selected.' Source: https://developer.mozilla.org/en-US/docs/Web/CSS/user-select
  • Loading branch information
kommunarr committed Aug 27, 2023
commit 09858afd8f679586f3df9af6b9beee09472dbfc8
4 changes: 2 additions & 2 deletions src/renderer/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@

.flexBox {
display: block;
user-select: all;
-webkit-user-select: all;
user-select: unset;
--webkit-user-select: unset;
}

#changeLogText {
Expand Down