Skip to content

Commit e76d80b

Browse files
committedMay 16, 2018
fix resizer in Firefox #395
1 parent c84bcae commit e76d80b

6 files changed

+18
-16
lines changed
 

‎CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
## Next
2+
23
### Features
34
* allow to have limited import when export is save and restored from JSON [#393](https://github.com/jcubic/jquery.terminal/issues/393)
45
* add support for new u and s regex flags when parsing commands
56
* add less plugin based on the one from leash
67

7-
8+
### Bugs
9+
* fix resizer in Firefox [#395](https://github.com/jcubic/jquery.terminal/issues/395)
810

911
## 1.15.0
1012

‎css/jquery.terminal-1.15.0.css

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Copyright (c) 2011-2018 Jakub Jankiewicz <http://jcubic.pl>
1313
* Released under the MIT license
1414
*
15-
* Date: Tue, 15 May 2018 07:48:02 +0000
15+
* Date: Wed, 16 May 2018 17:35:56 +0000
1616
*/
1717
.terminal .terminal-output .format, .cmd .format,
1818
.cmd .prompt, .cmd .prompt div, .terminal .terminal-output div div{
@@ -80,15 +80,15 @@ body.terminal {
8080
.terminal > div {
8181
overflow: hidden;
8282
}
83-
.terminal > .resizer, .terminal > .font .resizer{
83+
.terminal > .resizer, .terminal > .font .resizer {
8484
position: absolute;
85-
left: 0;
8685
top: 0;
8786
right: 0;
8887
bottom: 0;
88+
left: 0;
8989
overflow: hidden;
90+
pointer-events: none;
9091
z-index: -1;
91-
visibility: hidden;
9292
height: 100%;
9393
border: none;
9494
padding: 0;

‎css/jquery.terminal-1.15.0.min.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎css/jquery.terminal-src.css

+3-3
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,15 @@ body.terminal {
8080
.terminal > div {
8181
overflow: hidden;
8282
}
83-
.terminal > .resizer, .terminal > .font .resizer{
83+
.terminal > .resizer, .terminal > .font .resizer {
8484
position: absolute;
85-
left: 0;
8685
top: 0;
8786
right: 0;
8887
bottom: 0;
88+
left: 0;
8989
overflow: hidden;
90+
pointer-events: none;
9091
z-index: -1;
91-
visibility: hidden;
9292
height: 100%;
9393
border: none;
9494
padding: 0;

‎css/jquery.terminal.css

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Copyright (c) 2011-2018 Jakub Jankiewicz <http://jcubic.pl>
1313
* Released under the MIT license
1414
*
15-
* Date: Tue, 15 May 2018 07:48:02 +0000
15+
* Date: Wed, 16 May 2018 17:35:56 +0000
1616
*/
1717
.terminal .terminal-output .format, .cmd .format,
1818
.cmd .prompt, .cmd .prompt div, .terminal .terminal-output div div{
@@ -80,15 +80,15 @@ body.terminal {
8080
.terminal > div {
8181
overflow: hidden;
8282
}
83-
.terminal > .resizer, .terminal > .font .resizer{
83+
.terminal > .resizer, .terminal > .font .resizer {
8484
position: absolute;
85-
left: 0;
8685
top: 0;
8786
right: 0;
8887
bottom: 0;
88+
left: 0;
8989
overflow: hidden;
90+
pointer-events: none;
9091
z-index: -1;
91-
visibility: hidden;
9292
height: 100%;
9393
border: none;
9494
padding: 0;

‎css/jquery.terminal.min.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.