Mercurial > addons > firefox-addons > feed-preview
comparison web_resources/style/entry-content.css @ 41:fe3ee7a4a99a
Revert unwanted changes from extension.css in the entry 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 16:02:24 +0200 |
parents | b9dc94ce2eeb |
children | a427c3156f5e |
comparison
equal
deleted
inserted
replaced
40:d1a03d8a6e70 | 41:fe3ee7a4a99a |
---|---|
5 * License, v. 2.0. If a copy of the MPL was not distributed with this | 5 * License, v. 2.0. If a copy of the MPL was not distributed with this |
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. | 6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. |
7 */ | 7 */ |
8 | 8 |
9 @import url("common.css"); | 9 @import url("common.css"); |
10 | |
11 html, | |
12 body { | |
13 /* | |
14 * revert some unwanted changes in "extension.css" disallowing text selection | |
15 * and forcing use of the default cursor for all contexts | |
16 */ | |
17 -moz-user-select: auto; | |
18 -webkit-user-select: auto; | |
19 user-select: auto; | |
20 cursor: auto; | |
21 } | |
10 | 22 |
11 body { | 23 body { |
12 padding: 4px; | 24 padding: 4px; |
13 } | 25 } |
14 | 26 |