Skip to content

Commit

Permalink
better underscore cutting issue fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Dec 7, 2018
1 parent b054ea3 commit b63d974
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions css/jquery.terminal-2.0.0.css
Expand Up @@ -12,7 +12,7 @@
* Copyright (c) 2011-2018 Jakub Jankiewicz <http://jcubic.pl>
* Released under the MIT license
*
* Date: Wed, 05 Dec 2018 10:06:12 +0000
* Date: Fri, 07 Dec 2018 12:38:49 +0000
*/
.terminal .terminal-output .format, .cmd .format,
.cmd .prompt, .cmd .prompt div, .terminal .terminal-output div div{
Expand Down Expand Up @@ -171,7 +171,7 @@ body.full-screen-terminal .terminal {
}
.terminal .terminal .terminal-output > div > div, .cmd .prompt {
display: block;
line-height: 14px;
line-height: 15px;
height: auto;
}
.terminal .terminal-output > div:not(.raw) div {
Expand All @@ -192,7 +192,7 @@ body.full-screen-terminal .terminal {
color: #aaa;
background-color: #000;
font-size: 12px;
line-height: 14px;
line-height: 15px;
}
.terminal, .cmd {
box-sizing: border-box;
Expand Down Expand Up @@ -614,7 +614,7 @@ terminal .terminal-output > div {
.cmd span,
.cmd div {
font-size: calc(var(--size, 1) * 12px);
line-height: calc(var(--size, 1) * 14px);
line-height: calc(var(--size, 1) * 12px + 3px);
}
.cmd .clipboard {
top: calc(var(--size, 1) * 14 * var(--cursor-line, 0) * 1px);
Expand Down
4 changes: 2 additions & 2 deletions css/jquery.terminal-2.0.0.min.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions css/jquery.terminal-src.css
Expand Up @@ -171,7 +171,7 @@ body.full-screen-terminal .terminal {
}
.terminal .terminal .terminal-output > div > div, .cmd .prompt {
display: block;
line-height: 14px;
line-height: 15px;
height: auto;
}
.terminal .terminal-output > div:not(.raw) div {
Expand All @@ -192,7 +192,7 @@ body.full-screen-terminal .terminal {
color: #aaa;
background-color: #000;
font-size: 12px;
line-height: 14px;
line-height: 15px;
}
.terminal, .cmd {
box-sizing: border-box;
Expand Down Expand Up @@ -614,7 +614,7 @@ terminal .terminal-output > div {
.cmd span,
.cmd div {
font-size: calc(var(--size, 1) * 12px);
line-height: calc(var(--size, 1) * 14px);
line-height: calc(var(--size, 1) * 12px + 3px);
}
.cmd .clipboard {
top: calc(var(--size, 1) * 14 * var(--cursor-line, 0) * 1px);
Expand Down
8 changes: 4 additions & 4 deletions css/jquery.terminal.css
Expand Up @@ -12,7 +12,7 @@
* Copyright (c) 2011-2018 Jakub Jankiewicz <http://jcubic.pl>
* Released under the MIT license
*
* Date: Wed, 05 Dec 2018 10:06:12 +0000
* Date: Fri, 07 Dec 2018 12:38:49 +0000
*/
.terminal .terminal-output .format, .cmd .format,
.cmd .prompt, .cmd .prompt div, .terminal .terminal-output div div{
Expand Down Expand Up @@ -171,7 +171,7 @@ body.full-screen-terminal .terminal {
}
.terminal .terminal .terminal-output > div > div, .cmd .prompt {
display: block;
line-height: 14px;
line-height: 15px;
height: auto;
}
.terminal .terminal-output > div:not(.raw) div {
Expand All @@ -192,7 +192,7 @@ body.full-screen-terminal .terminal {
color: #aaa;
background-color: #000;
font-size: 12px;
line-height: 14px;
line-height: 15px;
}
.terminal, .cmd {
box-sizing: border-box;
Expand Down Expand Up @@ -614,7 +614,7 @@ terminal .terminal-output > div {
.cmd span,
.cmd div {
font-size: calc(var(--size, 1) * 12px);
line-height: calc(var(--size, 1) * 14px);
line-height: calc(var(--size, 1) * 12px + 3px);
}
.cmd .clipboard {
top: calc(var(--size, 1) * 14 * var(--cursor-line, 0) * 1px);
Expand Down
4 changes: 2 additions & 2 deletions css/jquery.terminal.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/jquery.terminal.min.css.map

Large diffs are not rendered by default.

0 comments on commit b63d974

Please sign in to comment.