Skip to content

Commit

Permalink
better looking links + --link-color
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Nov 7, 2017
1 parent ecb4d18 commit 3ada1ba
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 17 deletions.
8 changes: 6 additions & 2 deletions css/jquery.terminal-1.9.0.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: Mon, 06 Nov 2017 19:24:43 +0000
* Date: Tue, 07 Nov 2017 09:30:12 +0000
*/
.terminal .terminal-output .format, .cmd .format,
.cmd .prompt, .cmd .prompt div, .terminal .terminal-output div div{
Expand Down Expand Up @@ -261,9 +261,13 @@ body.terminal {
}
.terminal a {
color: #0F60FF;
color: var(--link-color, #0F60FF);
}
.terminal a:hover {
color: red;
background: #0F60FF;
background: var(--link-color, #0F60FF);
color: var(--background, #aaa);
text-decoration: none;
}
.terminal .terminal-fill {
position: absolute;
Expand Down
4 changes: 2 additions & 2 deletions css/jquery.terminal-1.9.0.min.css

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion css/jquery.terminal-src.css
Original file line number Diff line number Diff line change
Expand Up @@ -261,9 +261,13 @@ body.terminal {
}
.terminal a {
color: #0F60FF;
color: var(--link-color, #0F60FF);
}
.terminal a:hover {
color: red;
background: #0F60FF;
background: var(--link-color, #0F60FF);
color: var(--background, #aaa);
text-decoration: none;
}
.terminal .terminal-fill {
position: absolute;
Expand Down
8 changes: 6 additions & 2 deletions css/jquery.terminal.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: Mon, 06 Nov 2017 19:24:43 +0000
* Date: Tue, 07 Nov 2017 09:30:12 +0000
*/
.terminal .terminal-output .format, .cmd .format,
.cmd .prompt, .cmd .prompt div, .terminal .terminal-output div div{
Expand Down Expand Up @@ -261,9 +261,13 @@ body.terminal {
}
.terminal a {
color: #0F60FF;
color: var(--link-color, #0F60FF);
}
.terminal a:hover {
color: red;
background: #0F60FF;
background: var(--link-color, #0F60FF);
color: var(--background, #aaa);
text-decoration: none;
}
.terminal .terminal-fill {
position: absolute;
Expand Down
4 changes: 2 additions & 2 deletions css/jquery.terminal.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/jquery.terminal-1.9.0.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* Copyright (c) 2007-2013 Alexandru Marasteanu <hello at alexei dot ro>
* licensed under 3 clause BSD license
*
* Date: Mon, 06 Nov 2017 19:24:42 +0000
* Date: Tue, 07 Nov 2017 09:30:12 +0000
*/

/* TODO:
Expand Down Expand Up @@ -2723,7 +2723,7 @@
}
$.terminal = {
version: 'DEV',
date: 'Mon, 06 Nov 2017 19:24:42 +0000',
date: 'Tue, 07 Nov 2017 09:30:12 +0000',
// colors from http://www.w3.org/wiki/CSS/Properties/color/keywords
color_names: [
'transparent', 'currentcolor', 'black', 'silver', 'gray', 'white',
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.terminal-1.9.0.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/jquery.terminal.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* Copyright (c) 2007-2013 Alexandru Marasteanu <hello at alexei dot ro>
* licensed under 3 clause BSD license
*
* Date: Mon, 06 Nov 2017 19:24:42 +0000
* Date: Tue, 07 Nov 2017 09:30:12 +0000
*/

/* TODO:
Expand Down Expand Up @@ -2723,7 +2723,7 @@
}
$.terminal = {
version: 'DEV',
date: 'Mon, 06 Nov 2017 19:24:42 +0000',
date: 'Tue, 07 Nov 2017 09:30:12 +0000',
// colors from http://www.w3.org/wiki/CSS/Properties/color/keywords
color_names: [
'transparent', 'currentcolor', 'black', 'silver', 'gray', 'white',
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.terminal.min.js

Large diffs are not rendered by default.

0 comments on commit 3ada1ba

Please sign in to comment.