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:
authorJulius Härtl <jus@bitgrid.net>2020-01-24 15:49:10 +0300
committerJulius Härtl <jus@bitgrid.net>2020-01-27 14:54:46 +0300
commit4fac0dcc66dbe8761fcc0a2926d0f7fc72cf69cd (patch)
tree2128399df7d5c9a39968fb3e2d9fd997379d6f0b /css
parentc5e2a7e8e27c4af69a581cfb272f82015a64d439 (diff)
Fix node selection and clicking links
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'css')
-rw-r--r--css/style.scss6
1 files changed, 3 insertions, 3 deletions
diff --git a/css/style.scss b/css/style.scss
index b5923a2ca..ba720d3eb 100644
--- a/css/style.scss
+++ b/css/style.scss
@@ -2,9 +2,9 @@
position: absolute;
}
-.ProseMirror-hideselection *::selection { background: transparent; }
-.ProseMirror-hideselection *::-moz-selection { background: transparent; }
-.ProseMirror-hideselection { caret-color: transparent; }
+.ProseMirror-hideselection *::selection { background: transparent; color: var(--color-main-text); }
+.ProseMirror-hideselection *::-moz-selection { background: transparent; color: var(--color-main-text); }
+.ProseMirror-hideselection { caret-color: transparent; color: var(--color-main-text); }
.ProseMirror-selectednode {
outline: 2px solid #8cf;