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);
|
||||
}
|
||||
|
||||
.loading-logo-bright {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.loading-logo-dark {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
i.hostmask {
|
||||
font-size: 90%;
|
||||
opacity: 0.7;
|
||||
|
@ -47,11 +55,13 @@ kbd {
|
|||
border: 0;
|
||||
}
|
||||
|
||||
.context-menu-item:hover,
|
||||
.textcomplete-item:hover,
|
||||
.textcomplete-menu .active,
|
||||
.textcomplete-menu .active a,
|
||||
.context-menu-item,
|
||||
.textcomplete-item {
|
||||
transition: none;
|
||||
}
|
||||
|
||||
#chat .sidebar,
|
||||
#windows .window,
|
||||
body {
|
||||
background-color: #051114;
|
||||
color: #fff;
|
||||
|
@ -112,8 +122,7 @@ body {
|
|||
#input,
|
||||
#windows #form .input,
|
||||
#form,
|
||||
#chat .count,
|
||||
#windows .window {
|
||||
#chat .count {
|
||||
background-color: inherit;
|
||||
}
|
||||
|
||||
|
@ -156,17 +165,26 @@ body {
|
|||
}
|
||||
|
||||
#sidebar {
|
||||
background-color: #002b36;
|
||||
width: 200px;
|
||||
bottom: 43px;
|
||||
}
|
||||
|
||||
#footer {
|
||||
background-color: #002b36;
|
||||
width: 200px;
|
||||
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 {
|
||||
left: 200px;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue