Skip to content

Commit

Permalink
Bump version to 2.9.0
Browse files Browse the repository at this point in the history
Signed-off-by: Paris Kasidiaris <[email protected]>
  • Loading branch information
parisk committed Aug 3, 2017
1 parent 0079677 commit f5ba386
Show file tree
Hide file tree
Showing 6 changed files with 674 additions and 511 deletions.
12 changes: 12 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Alessandro Nadalin <[email protected]>
Alexander Olsson <[email protected]>
Alexey Kontsevoy <[email protected]>
Anish Athalye <[email protected]>
Anthony Lapenna <[email protected]>
Antonis Kalipetis <[email protected]>
Anton Skshidlevsky <[email protected]>
Anton Yurovskykh <[email protected]>
Expand All @@ -21,6 +22,7 @@ Brian Mock <[email protected]>
Carson Anderson <[email protected]>
CHaBou <[email protected]>
Christian Budde Christensen <[email protected]>
Christof Marti <[email protected]>
Christopher Jeffrey <[email protected]>
coderaiser <[email protected]>
Daniel Imms <[email protected]>
Expand All @@ -37,14 +39,20 @@ InDieTasten <[email protected]>
irokas <[email protected]>
Jean Bruenn <[email protected]>
Jeremy Danyow <[email protected]>
Joao Moreno <[email protected]>
Joao Moreno <[email protected]>
Jon Masters <[email protected]>
Jörg Breitbart <[email protected]>
Justin Mecham <[email protected]>
Kirill Merkushev <[email protected]>
Lucian Buzzo <[email protected]>
Maël Nison <[email protected]>
Martin Chloride <[email protected]>
Martin Wang <[email protected]>
Matt Bierner <[email protected]>
Michael Irwin <[email protected]>
Mikko Karvonen <[email protected]>
mofux <[email protected]>
Nicolas Ramz <[email protected]>
Oleksandr Andriienko <[email protected]>
Paris Kasidiaris <[email protected]>
Expand All @@ -54,7 +62,11 @@ Saswat Das <[email protected]>
Saul Costa <[email protected]>
Shuanglei Tao <[email protected]>
Steven Silvester <[email protected]>
stuicey <[email protected]>
t-amqi <[email protected]>
Thanasis Daglis <[email protected]>
thomas <[email protected]>
Thomas Zilz <[email protected]>
Tine Jozelj <[email protected]>
Tyler Jewell <[email protected]>
Vincent Woo <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "xterm.js",
"version": "2.8.1",
"version": "2.9.0",
"ignore": ["demo", "test", ".gitignore"],
"main": [
"dist/xterm.js",
Expand Down
43 changes: 17 additions & 26 deletions dist/xterm.css
Original file line number Diff line number Diff line change
Expand Up @@ -89,53 +89,40 @@
text-decoration: none;
}

.terminal.focus:not(.xterm-cursor-style-underline):not(.xterm-cursor-style-bar) .terminal-cursor {
background-color: #fff;
color: #000;
.terminal .terminal-cursor {
position: relative;
}

.terminal:not(.focus) .terminal-cursor {
outline: 1px solid #fff;
outline-offset: -1px;
background-color: transparent;
}

.terminal:not(.xterm-cursor-style-underline):not(.xterm-cursor-style-bar).focus.xterm-cursor-blink-on .terminal-cursor {
background-color: transparent;
color: inherit;
.terminal.xterm-cursor-style-block.focus:not(.xterm-cursor-blink-on) .terminal-cursor {
background-color: #fff;
color: #000;
}

.terminal.xterm-cursor-style-bar .terminal-cursor,
.terminal.xterm-cursor-style-underline .terminal-cursor {
position: relative;
}
.terminal.xterm-cursor-style-bar .terminal-cursor::before,
.terminal.xterm-cursor-style-underline .terminal-cursor::before {
content: "";
display: block;
.terminal.focus.xterm-cursor-style-bar:not(.xterm-cursor-blink-on) .terminal-cursor::before,
.terminal.focus.xterm-cursor-style-underline:not(.xterm-cursor-blink-on) .terminal-cursor::before {
content: '';
position: absolute;
background-color: #fff;
}
.terminal.xterm-cursor-style-bar .terminal-cursor::before {

.terminal.focus.xterm-cursor-style-bar:not(.xterm-cursor-blink-on) .terminal-cursor::before {
top: 0;
bottom: 0;
left: 0;
bottom: 0;
width: 1px;
}
.terminal.xterm-cursor-style-underline .terminal-cursor::before {

.terminal.focus.xterm-cursor-style-underline:not(.xterm-cursor-blink-on) .terminal-cursor::before {
bottom: 0;
left: 0;
right: 0;
height: 1px;
}
.terminal.xterm-cursor-style-bar.focus.xterm-cursor-blink.xterm-cursor-blink-on .terminal-cursor::before,
.terminal.xterm-cursor-style-underline.focus.xterm-cursor-blink.xterm-cursor-blink-on .terminal-cursor::before {
background-color: transparent;
}
.terminal.xterm-cursor-style-bar.focus.xterm-cursor-blink .terminal-cursor::before,
.terminal.xterm-cursor-style-underline.focus.xterm-cursor-blink .terminal-cursor::before {
background-color: #fff;
}

.terminal .composition-view {
background: #000;
Expand Down Expand Up @@ -217,6 +204,10 @@
text-decoration: blink;
}

.terminal .xterm-blink.xterm-underline {
text-decoration: blink underline;
}

.terminal .xterm-hidden {
visibility: hidden;
}
Expand Down
Loading

0 comments on commit f5ba386

Please sign in to comment.