# HG changeset patch # User Guido Berhoerster # Date 1554213082 -7200 # Node ID e25dce8b49c3d9d1f98d2edfc2100a2aede956c8 # Parent 6bd8a649186d123f70baeb82061d4eefd8c51596 Revert some unwanted changes from the extension.css style sheet Allow text selection and select the cursor based on context. diff -r 6bd8a649186d -r e25dce8b49c3 web_resources/style/feed-preview.css --- 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);