Fixes for master updates
- Fix sidebar being visible while loading - Use dark variant of lounge logo - Remove transition on context menu hovers - Change context menu hover color - Fix hover color in user list
This commit is contained in:
parent
ade55c8129
commit
0ca063c167
34
theme.css
34
theme.css
|
@ -22,6 +22,14 @@
|
||||||
color: rgba(131, 148, 150, 0.9);
|
color: rgba(131, 148, 150, 0.9);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.loading-logo-bright {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loading-logo-dark {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
i.hostmask {
|
i.hostmask {
|
||||||
font-size: 90%;
|
font-size: 90%;
|
||||||
opacity: 0.7;
|
opacity: 0.7;
|
||||||
|
@ -47,11 +55,13 @@ kbd {
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.context-menu-item:hover,
|
.context-menu-item,
|
||||||
.textcomplete-item:hover,
|
.textcomplete-item {
|
||||||
.textcomplete-menu .active,
|
transition: none;
|
||||||
.textcomplete-menu .active a,
|
}
|
||||||
|
|
||||||
#chat .sidebar,
|
#chat .sidebar,
|
||||||
|
#windows .window,
|
||||||
body {
|
body {
|
||||||
background-color: #051114;
|
background-color: #051114;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
@ -112,8 +122,7 @@ body {
|
||||||
#input,
|
#input,
|
||||||
#windows #form .input,
|
#windows #form .input,
|
||||||
#form,
|
#form,
|
||||||
#chat .count,
|
#chat .count {
|
||||||
#windows .window {
|
|
||||||
background-color: inherit;
|
background-color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -156,17 +165,26 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
#sidebar {
|
#sidebar {
|
||||||
background-color: #002b36;
|
|
||||||
width: 200px;
|
width: 200px;
|
||||||
bottom: 43px;
|
bottom: 43px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#footer {
|
#footer {
|
||||||
background-color: #002b36;
|
|
||||||
width: 200px;
|
width: 200px;
|
||||||
height: 43px;
|
height: 43px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.context-menu-item:hover,
|
||||||
|
.textcomplete-item:hover,
|
||||||
|
.textcomplete-menu .active,
|
||||||
|
.textcomplete-menu .active a,
|
||||||
|
#chat .users .user.active,
|
||||||
|
#sidebar,
|
||||||
|
#footer {
|
||||||
|
color: #fff;
|
||||||
|
background-color: #002b36;
|
||||||
|
}
|
||||||
|
|
||||||
#main {
|
#main {
|
||||||
left: 200px;
|
left: 200px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue