Don't cut off bottom part of last line in firefox
It ignores the padding in the #bufferlines diff. It's still off on small windows, but a lot better than before. You can't make up the stupid things browsers do.
This commit is contained in:
parent
e7d7f39c95
commit
c32ccb8749
|
@ -266,11 +266,19 @@ input[type=text], input[type=password], .badge {
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
width: auto;
|
width: auto;
|
||||||
top: 35px; /* topbar */
|
top: 35px; /* topbar */
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px; /* ignored by firefox */
|
||||||
margin-right: -5px;
|
margin-right: -5px;
|
||||||
-webkit-transition:0.35s ease all;
|
-webkit-transition:0.35s ease all;
|
||||||
transition:0.35s ease all;
|
transition:0.35s ease all;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@-moz-document url-prefix() {
|
||||||
|
/* firefox specific rule because it ignores the padding in #bufferlines */
|
||||||
|
#bufferlines table {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.withnicklist {
|
.withnicklist {
|
||||||
margin-right: 100px !important; /* nicklist */
|
margin-right: 100px !important; /* nicklist */
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue