changeset 38:e25dce8b49c3

Revert some unwanted changes from the extension.css style sheet Allow text selection and select the cursor based on context.
author Guido Berhoerster <guido+feed-preview@berhoerster.name>
date Tue, 02 Apr 2019 15:51:22 +0200
parents 6bd8a649186d
children c63dd1ab214d
files web_resources/style/feed-preview.css
diffstat 1 files changed, 12 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/web_resources/style/feed-preview.css	Mon Apr 01 21:04:05 2019 +0200
+++ b/web_resources/style/feed-preview.css	Tue Apr 02 15:51:22 2019 +0200
@@ -37,6 +37,18 @@
   --entry-outline: var(--entry-shadow), 0 0 0 5px var(--grey-30);
 }
 
+html,
+body {
+  /*
+   * revert some unwanted changes in "extension.css" disallowing text selection
+   * and forcing use of the default cursor for all contexts
+   */
+  -moz-user-select: auto;
+  -webkit-user-select: auto;
+  user-select: auto;
+  cursor: auto;
+}
+
 body {
   padding: 16px;
   background-color: var(--default-background);