Changed the cursor color to match the default text color.
Red, the previous cursor color, should not be used during nominal operation because most people subconsciously associate it with "bad" or "problem". Additionally, this change makes it more consistent with other widely-used terminal applications.
This commit is contained in:
parent
a0fac8a8db
commit
13c1556a34
4 changed files with 50 additions and 18 deletions
|
@ -62,7 +62,7 @@
|
|||
}
|
||||
|
||||
#vt100 #cursor.bright {
|
||||
background-color: #e60000;
|
||||
background-color: black;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -71,7 +71,7 @@
|
|||
}
|
||||
|
||||
#vt100 #cursor.inactive {
|
||||
border: 1px solid #e60000;
|
||||
border: 1px solid;
|
||||
margin: -1px;
|
||||
}
|
||||
|
||||
|
|
28
demo/usercss-0.css
Normal file → Executable file
28
demo/usercss-0.css
Normal file → Executable file
|
@ -1,6 +1,22 @@
|
|||
#vt100 #scrollable { color: #ffffff;
|
||||
background-color: #000000; }
|
||||
#vt100 #scrollable.inverted { color: #000000;
|
||||
background-color: #ffffff; }
|
||||
#vt100 .ansi15 { color: #000000; }
|
||||
#vt100 .bgAnsi0 { background-color: #ffffff; }
|
||||
#vt100 #cursor.bright {
|
||||
background-color: white;
|
||||
color: black;
|
||||
}
|
||||
|
||||
#vt100 #scrollable {
|
||||
color: #ffffff;
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
#vt100 #scrollable.inverted {
|
||||
color: #000000;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
#vt100 .ansi15 {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
#vt100 .bgAnsi0 {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
|
4
shellinabox/styles.css
Normal file → Executable file
4
shellinabox/styles.css
Normal file → Executable file
|
@ -62,7 +62,7 @@
|
|||
}
|
||||
|
||||
#vt100 #cursor.bright {
|
||||
background-color: #e60000;
|
||||
background-color: black;
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
@ -71,7 +71,7 @@
|
|||
}
|
||||
|
||||
#vt100 #cursor.inactive {
|
||||
border: 1px solid #e60000;
|
||||
border: 1px solid;
|
||||
margin: -1px;
|
||||
}
|
||||
|
||||
|
|
28
shellinabox/white-on-black.css
Normal file → Executable file
28
shellinabox/white-on-black.css
Normal file → Executable file
|
@ -1,6 +1,22 @@
|
|||
#vt100 #scrollable { color: #ffffff;
|
||||
background-color: #000000; }
|
||||
#vt100 #scrollable.inverted { color: #000000;
|
||||
background-color: #ffffff; }
|
||||
#vt100 .ansi15 { color: #000000; }
|
||||
#vt100 .bgAnsi0 { background-color: #ffffff; }
|
||||
#vt100 #cursor.bright {
|
||||
background-color: white;
|
||||
color: black;
|
||||
}
|
||||
|
||||
#vt100 #scrollable {
|
||||
color: #ffffff;
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
#vt100 #scrollable.inverted {
|
||||
color: #000000;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
#vt100 .ansi15 {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
#vt100 .bgAnsi0 {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue