Skip to content

Commit

Permalink
add paste using context menu + fix cursor in underline animation when…
Browse files Browse the repository at this point in the history
… changing size
  • Loading branch information
jcubic committed May 5, 2017
1 parent cb6411d commit 323ade2
Show file tree
Hide file tree
Showing 11 changed files with 110 additions and 194 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
1.3.2 fix recursive exception when finalize echo function throw exception
1.4.0 fix recursive exception when finalize echo function throw exception
fix underline animation
add paste using context menu
1.3.1 fix cols/rows that was causing signature to not show
1.3.0 remove onPop event from main interpreter (with null as next)
add args_quotes to parse_/split_ command api utilities
Expand Down
36 changes: 2 additions & 34 deletions css/jquery.terminal-1.3.1.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* Copyright (c) 2011-2017 Jakub Jankiewicz <http://jcubic.pl>
* Released under the MIT license
*
* Date: Fri, 05 May 2017 17:21:43 +0000
* Date: Fri, 05 May 2017 22:11:07 +0000
*/
.terminal .terminal-output .format, .cmd .format,
.cmd .prompt, .cmd .prompt div, .terminal .terminal-output div div{
Expand Down Expand Up @@ -90,6 +90,7 @@
animation: terminal-blink 1s infinite steps(1, start);
border-left: 1px solid transparent;
margin-left: -1px;
margin-top: 3px;
}
.bar.terminal .inverted, .bar.cmd .inverted {
border-left-color: #aaa;
Expand Down Expand Up @@ -172,72 +173,56 @@
0%, 100% {
border-bottom-color: #aaa;
position: relative;
top: 2px;
line-height: 12px;
border-left: none;
margin: 0;
}
50% {
border-bottom-color: #000;
position: relative;
top: 2px;
line-height: 12px;
border-left: none;
margin: 0;
}
}
@-ms-keyframes terminal-underline {
0%, 100% {
border-bottom-color: #aaa;
position: relative;
top: 2px;
line-height: 12px;
border-left: none;
margin: 0;
}
50% {
border-bottom-color: #000;
position: relative;
top: 2px;
line-height: 12px;
border-left: none;
margin: 0;
}
}
@-moz-keyframes terminal-underline {
0%, 100% {
border-bottom-color: #aaa;
position: relative;
top: 2px;
line-height: 12px;
border-left: none;
margin: 0;
}
50% {
border-bottom-color: #000;
position: relative;
top: 2px;
line-height: 11px;
border-left: none;
margin: 0;
}
}
@keyframes terminal-underline {
0%, 100% {
border-bottom-color: #aaa;
position: relative;
top: 2px;
line-height: 11px;
border-left: none;
margin: 0;
}
50% {
border-bottom-color: #000;
position: relative;
top: 2px;
line-height: 11px;
border-left: none;
margin: 0;
}
}
.terminal .terminal-output div div, .cmd .prompt {
Expand Down Expand Up @@ -423,7 +408,6 @@
animation: var(--animation, terminal-blink) 1s infinite steps(1, start);
color: var(--color, #aaa);
background-color: var(--background, #000);
margin-bottom: -3px;
}
.terminal h1::-moz-selection,
.terminal h2::-moz-selection,
Expand Down Expand Up @@ -542,72 +526,56 @@
0%, 100% {
border-bottom-color: var(--color, #aaa);
position: relative;
top: 2px;
line-height: calc(var(--size, 1) * 12px);
border-left: none;
margin: 0;
}
50% {
border-bottom-color: var(--background, #000);
position: relative;
top: 2px;
line-height: calc(var(--size, 1) * 12px);
border-left: none;
margin: 0;
}
}
@-ms-keyframes terminal-underline {
0%, 100% {
border-bottom-color: var(--background, #000);
position: relative;
top: 2px;
line-height: calc(var(--size, 1) * 12px);
border-left: none;
margin: 0;
}
50% {
border-bottom-color: var(--color, #aaa);
position: relative;
top: 2px;
line-height: calc(var(--size, 1) * 12px);
border-left: none;
margin: 0;
}
}
@-moz-keyframes terminal-underline {
0%, 100% {
border-bottom-color: var(--background, #000);
position: relative;
top: 2px;
line-height: calc(var(--size, 1) * 12px);
border-left: none;
margin: 0;
}
50% {
border-bottom-color: var(--color, #aaa);
position: relative;
top: 2px;
line-height: calc(var(--size, 1) * 12px);
border-left: none;
margin: 0;
}
}
@keyframes terminal-underline {
0%, 100% {
border-bottom-color: var(--background, #000);
position: relative;
top: 2px;
line-height: calc(var(--size, 1) * 12px);
border-left: none;
margin: 0;
}
50% {
border-bottom-color: var(--color, #aaa);
position: relative;
top: 2px;
line-height: calc(var(--size, 1) * 12px);
border-left: none;
margin: 0;
}
}
}
4 changes: 2 additions & 2 deletions css/jquery.terminal-1.3.1.min.css

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

0 comments on commit 323ade2

Please sign in to comment.