Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorMax <max@nextcloud.com>2022-09-02 09:52:34 +0300
committerMax <max@nextcloud.com>2022-09-02 09:52:34 +0300
commit209cbc04f768b6e9a3b4e29daa014fb8e3778be7 (patch)
tree3bfdcd4fddacc7928cc0acfeac3def8db9b52c63 /css
parent4a44f5eb04289ad1a73cea929eeda997bc33ec10 (diff)
fix: readonly shares should not seem editable
fixes #2769 Signed-off-by: Max <max@nextcloud.com>
Diffstat (limited to 'css')
-rw-r--r--css/prosemirror.scss3
1 files changed, 3 insertions, 0 deletions
diff --git a/css/prosemirror.scss b/css/prosemirror.scss
index c25bd93ac..68413b7ff 100644
--- a/css/prosemirror.scss
+++ b/css/prosemirror.scss
@@ -29,7 +29,10 @@ div.ProseMirror {
&:focus, &:focus-visible {
box-shadow: none !important;
}
+ }
+ &[contenteditable=true],
+ [contenteditable=true] {
* {
-webkit-user-modify: read-write-plaintext-only;
}