mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-09-13 08:04:40 +08:00
Fix slate issue caused by Chrome 106
Was able to determine that this was the problem by bisecting our Electron upgrade and identifying which chrome version bump broke it, and then googling for slate + chrome version. It looks like this entire concept of webkit-user-modify is deprecated, so I have no idea why this matters, but it looks like they changed the default to read-write-plaintext and it broke Slate for everyone. https://github.com/ianstormtaylor/slate/issues/5110
This commit is contained in:
parent
fbb683404d
commit
f34918daba
1 changed files with 4 additions and 0 deletions
|
@ -36,6 +36,10 @@
|
|||
padding-top: 12px;
|
||||
position: relative; // needed for floating emoji picker
|
||||
color: @text-color;
|
||||
|
||||
div[contenteditable] {
|
||||
-webkit-user-modify: read-write;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue