comparison web_resources/style/feed-preview.css @ 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 b9dc94ce2eeb
children
comparison
equal deleted inserted replaced
37:6bd8a649186d 38:e25dce8b49c3
35 --font-body-10: 400 13px var(--font-family-default); 35 --font-body-10: 400 13px var(--font-family-default);
36 --entry-shadow: 0 1px 4px var(--grey-90-a10); 36 --entry-shadow: 0 1px 4px var(--grey-90-a10);
37 --entry-outline: var(--entry-shadow), 0 0 0 5px var(--grey-30); 37 --entry-outline: var(--entry-shadow), 0 0 0 5px var(--grey-30);
38 } 38 }
39 39
40 html,
41 body {
42 /*
43 * revert some unwanted changes in "extension.css" disallowing text selection
44 * and forcing use of the default cursor for all contexts
45 */
46 -moz-user-select: auto;
47 -webkit-user-select: auto;
48 user-select: auto;
49 cursor: auto;
50 }
51
40 body { 52 body {
41 padding: 16px; 53 padding: 16px;
42 background-color: var(--default-background); 54 background-color: var(--default-background);
43 background-image: none; 55 background-image: none;
44 background-repeat: no-repeat; 56 background-repeat: no-repeat;