# HG changeset patch # User Guido Berhoerster # Date 1554213744 -7200 # Node ID fe3ee7a4a99a93fbdf7cea869842ec52e3c5feb1 # Parent d1a03d8a6e70b347df35fbf7485c15b81ee80ed8 Revert unwanted changes from extension.css in the entry style sheet Allow text selection and select the cursor based on context. diff -r d1a03d8a6e70 -r fe3ee7a4a99a web_resources/style/entry-content.css --- a/web_resources/style/entry-content.css Tue Apr 02 15:55:24 2019 +0200 +++ b/web_resources/style/entry-content.css Tue Apr 02 16:02:24 2019 +0200 @@ -8,6 +8,18 @@ @import url("common.css"); +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: 4px; }