We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f39cea7 commit 46e11b5Copy full SHA for 46e11b5
github-code-colors.user.js
@@ -1,6 +1,6 @@
1
// ==UserScript==
2
// @name GitHub Code Colors
3
-// @version 2.0.1
+// @version 2.0.2
4
// @description A userscript that adds a color swatch next to the code color definition
5
// @license MIT
6
// @author Rob Garrison
@@ -27,7 +27,8 @@
27
background-image:none; cursor:pointer; }
28
.ghcc-popup { position:absolute; background:#333; color:#fff;
29
min-width:350px; top:100%; left:0px; padding:10px; z-index:100;
30
- white-space:pre; cursor:text; text-align:left; }
+ white-space:pre; cursor:text; text-align:left; -webkit-user-select:text;
31
+ -moz-user-select:text; -ms-user-select:text; user-select:text; }
32
.markdown-body .highlight pre, .markdown-body pre {
33
overflow:visible !important; }`);
34
0 commit comments