Skip to content

Commit

Permalink
use text for user-select properties for all prefixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Jan 17, 2017
1 parent a575799 commit 8bbb913
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 deletions.
10 changes: 5 additions & 5 deletions css/jquery.terminal-0.11.23.css
Expand Up @@ -12,7 +12,7 @@
* Copyright (c) 2011-2017 Jakub Jankiewicz <http://jcubic.pl>
* Released under the MIT license
*
* Date: Tue, 17 Jan 2017 16:30:13 +0000
* Date: Tue, 17 Jan 2017 16:43:30 +0000
*/
.terminal .terminal-output .format, .cmd .format,
.cmd .prompt, .cmd .prompt div, .terminal .terminal-output div div{
Expand Down Expand Up @@ -445,11 +445,11 @@
.terminal pre, .terminal h1, .terminal h2, .terminal h3, .terminal h4,
.terminal h5, .terminal h6 {
-webkit-touch-callout: initial;
-webkit-user-select: initial;
-khtml-user-select: initial;
-moz-user-select: initial;
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: initial;
user-select: text;
}
.terminal, .terminal-output, .terminal-output div {
-webkit-touch-callout: none;
Expand Down
4 changes: 2 additions & 2 deletions css/jquery.terminal-0.11.23.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions css/jquery.terminal-src.css
Expand Up @@ -445,11 +445,11 @@
.terminal pre, .terminal h1, .terminal h2, .terminal h3, .terminal h4,
.terminal h5, .terminal h6 {
-webkit-touch-callout: initial;
-webkit-user-select: initial;
-khtml-user-select: initial;
-moz-user-select: initial;
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: initial;
user-select: text;
}
.terminal, .terminal-output, .terminal-output div {
-webkit-touch-callout: none;
Expand Down
10 changes: 5 additions & 5 deletions css/jquery.terminal.css
Expand Up @@ -12,7 +12,7 @@
* Copyright (c) 2011-2017 Jakub Jankiewicz <http://jcubic.pl>
* Released under the MIT license
*
* Date: Tue, 17 Jan 2017 16:30:13 +0000
* Date: Tue, 17 Jan 2017 16:43:30 +0000
*/
.terminal .terminal-output .format, .cmd .format,
.cmd .prompt, .cmd .prompt div, .terminal .terminal-output div div{
Expand Down Expand Up @@ -445,11 +445,11 @@
.terminal pre, .terminal h1, .terminal h2, .terminal h3, .terminal h4,
.terminal h5, .terminal h6 {
-webkit-touch-callout: initial;
-webkit-user-select: initial;
-khtml-user-select: initial;
-moz-user-select: initial;
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: initial;
user-select: text;
}
.terminal, .terminal-output, .terminal-output div {
-webkit-touch-callout: none;
Expand Down

0 comments on commit 8bbb913

Please sign in to comment.