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:
KLuka 2015-05-22 21:26:01 +02:00
parent 9bb3b787ae
commit 8923598a6d
2 changed files with 11 additions and 1 deletions

View file

@ -67,7 +67,10 @@
} }
#vt100 #cursor.dim { #vt100 #cursor.dim {
visibility: hidden; background-color: white;
opacity: 0.2;
-moz-opacity: 0.2;
filter: alpha(opacity=20);
} }
#vt100 #cursor.inactive { #vt100 #cursor.inactive {

View file

@ -3,6 +3,13 @@
color: black; color: black;
} }
#vt100 #cursor.dim {
background-color: black;
opacity: 0.2;
-moz-opacity: 0.2;
filter: alpha(opacity=20);
}
#vt100 #scrollable { #vt100 #scrollable {
color: #ffffff; color: #ffffff;
background-color: #000000; background-color: #000000;