Fixes 2 VChat bugs

This commit is contained in:
Aronai Sieyes
2020-03-01 19:05:52 -05:00
parent 95e1c84036
commit 4ae6283cd1
3 changed files with 13 additions and 12 deletions
+11 -10
View File
@@ -1,6 +1,15 @@
/* VChat Styles */
body.inverted {
background-color: #111111;
}
#topmenu {
overflow-x: auto;
overflow-y: hidden;
}
#contentbox {
margin-top: 3rem; /* Make room for the fixed top menu */
margin-top: 3.3rem; /* Make room for the fixed top menu */
overflow-wrap: break-word;
word-wrap: break-word; /* IE, blah */
}
@@ -18,11 +27,6 @@
font-size: 10px;
}
#app > .menu {
overflow-x: auto;
overflow-y: hidden;
}
.item {
cursor: pointer;
}
@@ -31,10 +35,6 @@
color: red;
}
body.inverted {
background-color: #111111;
}
.blinkwarn {
color: #FF0000;
animation: blink-animation 1s steps(5, start) infinite;
@@ -56,6 +56,7 @@ body.inverted {
#messagebox.vc_info .vc_info { display: block; }
#messagebox.vc_deadchat .vc_deadchat { display: block; }
#messagebox.vc_globalooc .vc_globalooc { display: block; }
#messagebox.vc_looc .vc_looc { display: block; }
#messagebox.vc_adminpm .vc_adminpm { display: block; }
#messagebox.vc_adminchat .vc_adminchat { display: block; }
#messagebox.vc_modchat .vc_modchat { display: block; }