Improved terminal cursor style
* Changed "dim" cursor visibility from invisible to almost transparent and in the same color as default background. This improves visibility of cursor, if we are usign application (like vim for example) with dark background and the "Black on White" user CSS is set.
This commit is contained in:
parent
9bb3b787ae
commit
8923598a6d
2 changed files with 11 additions and 1 deletions
|
@ -67,7 +67,10 @@
|
|||
}
|
||||
|
||||
#vt100 #cursor.dim {
|
||||
visibility: hidden;
|
||||
background-color: white;
|
||||
opacity: 0.2;
|
||||
-moz-opacity: 0.2;
|
||||
filter: alpha(opacity=20);
|
||||
}
|
||||
|
||||
#vt100 #cursor.inactive {
|
||||
|
|
|
@ -3,6 +3,13 @@
|
|||
color: black;
|
||||
}
|
||||
|
||||
#vt100 #cursor.dim {
|
||||
background-color: black;
|
||||
opacity: 0.2;
|
||||
-moz-opacity: 0.2;
|
||||
filter: alpha(opacity=20);
|
||||
}
|
||||
|
||||
#vt100 #scrollable {
|
||||
color: #ffffff;
|
||||
background-color: #000000;
|
||||
|
|
Loading…
Reference in a new issue