Work around a IE10 bug.

IE 10 doesn't appear to properly handle calc(100% - 26px), breaking scrolling
of contacts.
This commit is contained in:
JC Brand 2015-10-16 14:42:45 +00:00
parent f2edf0de38
commit d8a9dd5acf
2 changed files with 4 additions and 6 deletions

View File

@ -717,11 +717,10 @@
cursor: pointer; }
#conversejs #converse-roster .roster-contacts {
margin: 0;
max-height: 195px;
max-height: calc(100% - 26px);
max-height: 100%;
overflow-x: hidden;
overflow-y: auto;
padding-bottom: 15px; }
padding-bottom: 41px; }
#conversejs #converse-roster .group-toggle {
color: #6C4C44;
display: block;

View File

@ -769,11 +769,10 @@
}
.roster-contacts {
margin: 0;
max-height: 195px;
max-height: calc(100% - 26px);
max-height: 100%;
overflow-x: hidden;
overflow-y: auto;
padding-bottom: 15px;
padding-bottom: 41px;
}
.group-toggle {
color: $text-color;