|
4 | 4 | * __ / // // // // // _ // _// // / / // _ // _// // // \/ // _ \/ / |
5 | 5 | * / / // // // // // ___// / / // / / // ___// / / / / // // /\ // // / /__ |
6 | 6 | * \___//____ \\___//____//_/ _\_ / /_//____//_/ /_/ /_//_//_/ /_/ \__\_\___/ |
7 | | - * \/ /____/ version 1.10.1 |
| 7 | + * \/ /____/ version DEV |
8 | 8 | * http://terminal.jcubic.pl |
9 | 9 | * |
10 | 10 | * This file is part of jQuery Terminal. |
11 | 11 | * |
12 | 12 | * Copyright (c) 2011-2017 Jakub Jankiewicz <http://jcubic.pl> |
13 | 13 | * Released under the MIT license |
14 | 14 | * |
15 | | - * Date: Thu, 09 Nov 2017 16:40:29 +0000 |
| 15 | + * Date: Sat, 09 Dec 2017 13:17:33 +0000 |
16 | 16 | */ |
17 | 17 | .terminal .terminal-output .format, .cmd .format, |
18 | 18 | .cmd .prompt, .cmd .prompt div, .terminal .terminal-output div div{ |
@@ -259,6 +259,14 @@ terminal .terminal-output > div { |
259 | 259 | width: 100%; |
260 | 260 | z-index: 1100; |
261 | 261 | } |
| 262 | +.ui-dialog-content .terminal { |
| 263 | + width: 100%; |
| 264 | + height: 100%; |
| 265 | + box-sizing: border-box; |
| 266 | +} |
| 267 | +.ui-dialog-content .terminal, .ui-dialog-content .terminal .terminal-fill { |
| 268 | + padding: 0; |
| 269 | +} |
262 | 270 | .clear { |
263 | 271 | clear: both; |
264 | 272 | } |
@@ -433,11 +441,29 @@ terminal .terminal-output > div { |
433 | 441 | margin-left: 0; |
434 | 442 | } |
435 | 443 | } |
| 444 | +/* shorthand classes for IE */ |
| 445 | +.underline-animation .cursor.blink { |
| 446 | + border-left: none; |
| 447 | + -webkit-animation-name: terminal-underline; |
| 448 | + -moz-animation-name: terminal-underline; |
| 449 | + -ms-animation-name: terminal-underline; |
| 450 | + animation-name: terminal-underline; |
| 451 | +} |
| 452 | +.bar-animation .cursor.blink { |
| 453 | + -webkit-animation-name: terminal-bar; |
| 454 | + -moz-animation-name: terminal-bar; |
| 455 | + -ms-animation-name: terminal-bar; |
| 456 | + animation-name: terminal-bar; |
| 457 | +} |
436 | 458 | @supports (--css: variables) { |
437 | 459 | .terminal, .cmd { |
438 | 460 | color: var(--color, #aaa); |
439 | 461 | background-color: var(--background, #000); |
440 | 462 | } |
| 463 | + .terminal .font { |
| 464 | + width: calc(var(--size) * 1em); |
| 465 | + height: calc(var(--size) * 1em); |
| 466 | + } |
441 | 467 | .terminal span[style*="--length"] { |
442 | 468 | width: calc(var(--length, 1) * var(--char-width) * 1px); |
443 | 469 | display: inline-block; |
|
0 commit comments