Merge pull request #312 from glowing-bear/inputbar
Fix input bar bleeding into nicklist & mobile input bar jumps
This commit is contained in:
commit
6e95189fc3
1 changed files with 13 additions and 2 deletions
|
@ -110,7 +110,7 @@ input[type=text], input[type=password], #sendMessage, .badge {
|
|||
width: 100%;
|
||||
height: 35px;
|
||||
max-height: 35px;
|
||||
z-index: 2;
|
||||
z-index: 3;
|
||||
line-height: 35px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
@ -282,6 +282,9 @@ input[type=text], input[type=password], #sendMessage, .badge {
|
|||
margin-left: 0;
|
||||
padding-left: 145px;
|
||||
}
|
||||
.footer.withnicklist {
|
||||
padding-right: 100px;
|
||||
}
|
||||
|
||||
.color-light-green {
|
||||
color: chartreuse;
|
||||
|
@ -375,7 +378,7 @@ h2 span, h2 small {
|
|||
|
||||
#sidebar {
|
||||
font-size: normal;
|
||||
z-index: 1;
|
||||
z-index: 2;
|
||||
bottom: 0px;
|
||||
width: auto;
|
||||
max-width: 60%;
|
||||
|
@ -458,6 +461,14 @@ h2 span, h2 small {
|
|||
content: ">";
|
||||
}
|
||||
|
||||
.footer {
|
||||
padding-left: 0px !important;
|
||||
padding-right: 0px !important;
|
||||
width: 100% !important;
|
||||
background: rgb(24,24,24);
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 5px;
|
||||
height: 5px;
|
||||
|
|
Loading…
Reference in a new issue